From fb21d4f9d78fc93a37f66c218893ed8eb732e7c6 Mon Sep 17 00:00:00 2001 From: Yabo Hu Date: Thu, 17 Oct 2024 11:13:38 +0800 Subject: [PATCH 01/16] [MSGraph] Upgrade autorest.powershell for MSGraph to v4 (#26302) (#26348) * [MSGraph] Upgrade autorest.powershell for MSGraph to v4 (#26302) * fix name for autorest.powershell v4 * use autorest.powershell v4 * remove fixed autorest core version * accidentally removed lines add back * Update README.md * sync future --- src/Resources/MSGraph.Autorest/README.md | 33 +- .../docs/Add-AzADAppPermission.md | 2 - .../docs/Add-AzADGroupMember.md | 336 ----- .../MSGraph.Autorest/docs/Az.MSGraph.md | 8 +- .../docs/Get-AzADAppCredential.md | 252 ---- .../docs/Get-AzADAppFederatedCredential.md | 252 ---- .../docs/Get-AzADAppPermission.md | 2 - .../docs/Get-AzADApplication.md | 2 - .../MSGraph.Autorest/docs/Get-AzADGroup.md | 2 - .../docs/Get-AzADGroupMember.md | 336 ----- .../docs/Get-AzADGroupOwner.md | 5 +- .../docs/Get-AzADOrganization.md | 7 +- .../docs/Get-AzADServicePrincipal.md | 252 ---- ...t-AzADServicePrincipalAppRoleAssignment.md | 5 +- .../docs/Get-AzADSpCredential.md | 276 ---- .../MSGraph.Autorest/docs/Get-AzADUser.md | 2 - .../docs/New-AzADAppCredential.md | 273 ---- .../docs/New-AzADAppFederatedCredential.md | 2 - .../docs/New-AzADApplication.md | 731 ---------- .../MSGraph.Autorest/docs/New-AzADGroup.md | 43 - .../docs/New-AzADGroupOwner.md | 6 +- .../docs/New-AzADServicePrincipal.md | 1183 ---------------- ...w-AzADServicePrincipalAppRoleAssignment.md | 2 - .../docs/New-AzADSpCredential.md | 295 ---- .../MSGraph.Autorest/docs/New-AzADUser.md | 16 +- .../docs/Remove-AzADAppCredential.md | 252 ---- .../docs/Remove-AzADAppFederatedCredential.md | 5 +- .../docs/Remove-AzADAppPermission.md | 2 - .../docs/Remove-AzADApplication.md | 252 ---- .../MSGraph.Autorest/docs/Remove-AzADGroup.md | 336 ----- .../docs/Remove-AzADGroupMember.md | 336 ----- .../docs/Remove-AzADGroupOwner.md | 5 +- .../docs/Remove-AzADServicePrincipal.md | 523 ------- ...e-AzADServicePrincipalAppRoleAssignment.md | 5 +- .../docs/Remove-AzADSpCredential.md | 276 ---- .../MSGraph.Autorest/docs/Remove-AzADUser.md | 423 ------ .../docs/Update-AzADAppFederatedCredential.md | 62 +- .../docs/Update-AzADApplication.md | 957 ------------- .../MSGraph.Autorest/docs/Update-AzADGroup.md | 128 +- .../docs/Update-AzADServicePrincipal.md | 1207 ----------------- ...e-AzADServicePrincipalAppRoleAssignment.md | 66 +- .../MSGraph.Autorest/docs/Update-AzADUser.md | 434 +----- .../MSGraph.Autorest/test/loadEnv.ps1 | 2 +- .../utils/Get-SubscriptionIdTestSafe.ps1 | 7 + .../Az.Resources/BreakingChangeIssues.csv | 1 + 45 files changed, 222 insertions(+), 9380 deletions(-) create mode 100644 src/Resources/MSGraph.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 diff --git a/src/Resources/MSGraph.Autorest/README.md b/src/Resources/MSGraph.Autorest/README.md index 43d84bc54e60..f0f719d5e678 100644 --- a/src/Resources/MSGraph.Autorest/README.md +++ b/src/Resources/MSGraph.Autorest/README.md @@ -3,9 +3,6 @@ This directory contains the PowerShell module for the MSGraph service. --- -## Status -[![Az.MSGraph](https://img.shields.io/powershellgallery/v/Az.MSGraph.svg?style=flat-square&label=Az.MSGraph "Az.MSGraph")](https://www.powershellgallery.com/packages/Az.MSGraph/) - ## Info - Modifiable: yes - Generated: all @@ -47,10 +44,6 @@ In this directory, run AutoRest: > see https://aka.ms/autorest ``` yaml -version: "3.9.5" -use-extension: - "@autorest/powershell": "4.0.0-dev.14" - require: - $(this-folder)/../../readme.azure.noprofile.md @@ -71,6 +64,7 @@ endpoint-resource-id-key-name: MicrosoftGraphEndpointResourceId export-properties-for-dict: false nested-object-to-string: true add-api-version-in-model-namespace: true +fixed-array: true # Disable default settings and Set in to empty for msgraph default-exclude-tableview-properties: false @@ -126,6 +120,23 @@ directive: where: $ transform: if ($documentPath.endsWith("MSGraph.cs")) {$ = $.replace(/Count.ToString\(\)/g, "Count.ToString().ToLower()")} + - where: + subject: ApplicationsApplication + set: + subject: Application + - where: + subject: GroupsGroup + set: + subject: Group + - where: + subject: ServicePrincipalsServicePrincipal + set: + subject: ServicePrincipal + - where: + subject: (UsersUser)(.*) + set: + subject: User$2 + # hide user owned application cmdlets - where: subject: UserOwnedApplication|UserOwnedObject @@ -232,9 +243,15 @@ directive: - where: subject: ^group$ verb: ^Update$ - parameter-name: Id + parameter-name: GroupId set: parameter-name: ObjectId + - where: + subject: ^group$ + verb: ^Update$ + parameter-name: ObjectId + set: + alias: GroupId - where: subject: ^group$ diff --git a/src/Resources/MSGraph.Autorest/docs/Add-AzADAppPermission.md b/src/Resources/MSGraph.Autorest/docs/Add-AzADAppPermission.md index 94c7e1fce1d2..2185a77f7731 100644 --- a/src/Resources/MSGraph.Autorest/docs/Add-AzADAppPermission.md +++ b/src/Resources/MSGraph.Autorest/docs/Add-AzADAppPermission.md @@ -188,7 +188,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Add-AzADGroupMember.md b/src/Resources/MSGraph.Autorest/docs/Add-AzADGroupMember.md index 345bf4b95f4f..b65a4cbfb52d 100644 --- a/src/Resources/MSGraph.Autorest/docs/Add-AzADGroupMember.md +++ b/src/Resources/MSGraph.Autorest/docs/Add-AzADGroupMember.md @@ -143,7 +143,6 @@ Accept wildcard characters: False ### -TargetGroupObject The target group object, could be used as pipeline input. -To construct, see NOTES section for TARGETGROUPOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphGroup @@ -216,340 +215,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -TARGETGROUPOBJECT : The target group object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AppRoleAssignment ]`: Represents the app roles a group has been granted for an application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[CreatedDateTime ]`: The time when the app role assignment was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[PrincipalDisplayName ]`: The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith). - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[PrincipalType ]`: The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[Classification ]`: Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[CreatedOnBehalfOf ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[AccountEnabled ]`: true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, NOT, in). - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[AlternativeName ]`: Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, NOT, ge, le, startsWith). - - `[AppDescription ]`: The description exposed by the associated application. - - `[AppDisplayName ]`: The display name exposed by the associated application. - - `[AppId ]`: The unique identifier for the associated application (its appId property). - - `[AppOwnerOrganizationId ]`: Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le). - - `[AppRole ]`: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AppRoleAssignedTo ]`: App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[AppRoleAssignmentRequired ]`: Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). - - `[ClaimsMappingPolicy ]`: The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[DelegatedPermissionClassification ]`: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - - `[Description ]`: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[Endpoint ]`: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[FederatedIdentityCredentials ]`: - - `[HomeRealmDiscoveryPolicy ]`: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[Homepage ]`: Home page or landing page of the application. - - `[Info ]`: informationalUrl - - `[KeyCredentials ]`: The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[LoginUrl ]`: Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols. - - `[Note ]`: Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters. - - `[NotificationEmailAddress ]`: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. - - `[Oauth2PermissionScope ]`: The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[PasswordCredentials ]`: The collection of password credentials associated with the service principal. Not nullable. - - `[PreferredSingleSignOnMode ]`: Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc. - - `[PreferredTokenSigningKeyThumbprint ]`: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. - - `[ReplyUrl ]`: The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. - - `[SamlSingleSignOnSetting ]`: samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - - `[ServicePrincipalName ]`: Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[ServicePrincipalType ]`: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. - - `[Tag ]`: Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[TransitiveMemberOf ]`: - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: Represents the app roles a group has been granted for an application. Supports $expand. - - `[Classification ]`: Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[CreatedOnBehalfOf ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[Description ]`: An optional description for the group. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[GroupType ]`: Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it's either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, NOT). - - `[HasMembersWithLicenseError ]`: Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq). - - `[IsArchived ]`: - - `[IsAssignableToRole ]`: Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must also be assigned the Directory.AccessAsUser.All permission to set this property. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT). - - `[MailEnabled ]`: Specifies whether the group is mail-enabled. Returned by default. Supports $filter (eq, ne, NOT). - - `[MailNickname ]`: The mail alias for the group, unique in the organization. This property must be specified when a group is created. These characters cannot be used in the mailNickName: @()/[]';:.<>,SPACE. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[MembershipRule ]`: The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[MembershipRuleProcessingState ]`: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[PermissionGrant ]`: The permissions that have been granted for a group to a specific application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[ClientAppId ]`: ID of the service principal of the Azure AD app that has been granted access. Read-only. - - `[ClientId ]`: ID of the Azure AD app that has been granted access. Read-only. - - `[Permission ]`: The name of the resource-specific permission. Read-only. - - `[PermissionType ]`: The type of permission. Possible values are: Application, Delegated. Read-only. - - `[ResourceAppId ]`: ID of the Azure AD app that is hosting the resource. Read-only. - - `[PreferredDataLocation ]`: The preferred data location for the group. For more information, see OneDrive Online Multi-Geo. Returned by default. - - `[PreferredLanguage ]`: The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[SecurityEnabled ]`: Specifies whether the group is a security group. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[SecurityIdentifier ]`: Security identifier of the group, used in Windows scenarios. Returned by default. - - `[Theme ]`: Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. - - `[Visibility ]`: Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or Hiddenmembership. Hiddenmembership can be set only for Microsoft 365 groups, when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. See group visibility options to learn more. Returned by default. - - `[Description ]`: An optional description for the group. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[GroupType ]`: Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it's either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, NOT). - - `[HasMembersWithLicenseError ]`: Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq). - - `[IsArchived ]`: - - `[IsAssignableToRole ]`: Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must also be assigned the Directory.AccessAsUser.All permission to set this property. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT). - - `[MailEnabled ]`: Specifies whether the group is mail-enabled. Returned by default. Supports $filter (eq, ne, NOT). - - `[MailNickname ]`: The mail alias for the group, unique in the organization. This property must be specified when a group is created. These characters cannot be used in the mailNickName: @()/[]';:.<>,SPACE. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[MembershipRule ]`: The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[MembershipRuleProcessingState ]`: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[PermissionGrant ]`: The permissions that have been granted for a group to a specific application. Supports $expand. - - `[PreferredDataLocation ]`: The preferred data location for the group. For more information, see OneDrive Online Multi-Geo. Returned by default. - - `[PreferredLanguage ]`: The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[SecurityEnabled ]`: Specifies whether the group is a security group. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[SecurityIdentifier ]`: Security identifier of the group, used in Windows scenarios. Returned by default. - - `[Theme ]`: Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. - - `[Visibility ]`: Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or Hiddenmembership. Hiddenmembership can be set only for Microsoft 365 groups, when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. See group visibility options to learn more. Returned by default. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Az.MSGraph.md b/src/Resources/MSGraph.Autorest/docs/Az.MSGraph.md index 3e22ebb7c197..74ae1de74e80 100644 --- a/src/Resources/MSGraph.Autorest/docs/Az.MSGraph.md +++ b/src/Resources/MSGraph.Autorest/docs/Az.MSGraph.md @@ -1,6 +1,6 @@ --- Module Name: Az.MSGraph -Module Guid: 9c1e9bcf-5175-4d03-99c7-a7f2f7040f46 +Module Guid: dd44abe1-c90f-434a-8c2d-e7927f212461 Download Help Link: https://learn.microsoft.com/powershell/module/az.msgraph Help Version: 1.0.0.0 Locale: en-US @@ -124,19 +124,19 @@ Removes key credentials or password credentials for an service principal. Deletes entity from users. ### [Update-AzADAppFederatedCredential](Update-AzADAppFederatedCredential.md) -Update the navigation property federatedIdentityCredentials in applications +update the navigation property federatedIdentityCredentials in applications ### [Update-AzADApplication](Update-AzADApplication.md) Updates entity in applications ### [Update-AzADGroup](Update-AzADGroup.md) -Update entity in groups +update entity in groups ### [Update-AzADServicePrincipal](Update-AzADServicePrincipal.md) Updates entity in service principal ### [Update-AzADServicePrincipalAppRoleAssignment](Update-AzADServicePrincipalAppRoleAssignment.md) -Update the navigation property appRoleAssignments in servicePrincipals +update the navigation property appRoleAssignments in servicePrincipals ### [Update-AzADUser](Update-AzADUser.md) Updates entity in users diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADAppCredential.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADAppCredential.md index e5b44704068f..7bd5441b8d9c 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADAppCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADAppCredential.md @@ -67,7 +67,6 @@ Accept wildcard characters: False ### -ApplicationObject The application object, could be used as pipeline input. -To construct, see NOTES section for APPLICATIONOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication @@ -172,256 +171,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -APPLICATIONOBJECT : The application object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[ParentalControlSetting ]`: parentalControlSettings - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[PublicClient ]`: publicClientApplication - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedCredential.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedCredential.md index 48bab7fdd9b0..19f7c31a9a12 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADAppFederatedCredential.md @@ -61,7 +61,6 @@ Get federated identity credential by id ### -ApplicationObject application object -To construct, see NOTES section for APPLICATIONOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphApplication @@ -251,256 +250,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -APPLICATIONOBJECT : application object - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[ParentalControlSetting ]`: parentalControlSettings - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[PublicClient ]`: publicClientApplication - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADAppPermission.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADAppPermission.md index 39c641792f28..fcfa13327e88 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADAppPermission.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADAppPermission.md @@ -99,7 +99,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADApplication.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADApplication.md index c31f61bde47d..91adc5746cf6 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADApplication.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADApplication.md @@ -380,7 +380,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADGroup.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADGroup.md index 687113e67af7..f18dfea373df 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADGroup.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADGroup.md @@ -319,7 +319,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADGroupMember.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADGroupMember.md index 43e0b6cf1233..eb25e220242a 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADGroupMember.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADGroupMember.md @@ -131,7 +131,6 @@ Accept wildcard characters: False ### -GroupObject The target group object, could be used as pipeline input. -To construct, see NOTES section for GROUPOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphGroup @@ -233,340 +232,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -GROUPOBJECT : The target group object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleAssignment ]`: Represents the app roles a group has been granted for an application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[CreatedDateTime ]`: The time when the app role assignment was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[PrincipalDisplayName ]`: The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith). - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[PrincipalType ]`: The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[Classification ]`: Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[CreatedOnBehalfOf ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[AccountEnabled ]`: true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, NOT, in). - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[AlternativeName ]`: Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, NOT, ge, le, startsWith). - - `[AppDescription ]`: The description exposed by the associated application. - - `[AppDisplayName ]`: The display name exposed by the associated application. - - `[AppId ]`: The unique identifier for the associated application (its appId property). - - `[AppOwnerOrganizationId ]`: Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le). - - `[AppRole ]`: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AppRoleAssignedTo ]`: App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[AppRoleAssignmentRequired ]`: Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). - - `[ClaimsMappingPolicy ]`: The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[DelegatedPermissionClassification ]`: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - - `[Description ]`: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[Endpoint ]`: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[FederatedIdentityCredentials ]`: - - `[HomeRealmDiscoveryPolicy ]`: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[Homepage ]`: Home page or landing page of the application. - - `[Info ]`: informationalUrl - - `[KeyCredentials ]`: The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[LoginUrl ]`: Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols. - - `[Note ]`: Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters. - - `[NotificationEmailAddress ]`: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. - - `[Oauth2PermissionScope ]`: The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[PasswordCredentials ]`: The collection of password credentials associated with the service principal. Not nullable. - - `[PreferredSingleSignOnMode ]`: Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc. - - `[PreferredTokenSigningKeyThumbprint ]`: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. - - `[ReplyUrl ]`: The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. - - `[SamlSingleSignOnSetting ]`: samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - - `[ServicePrincipalName ]`: Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[ServicePrincipalType ]`: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. - - `[Tag ]`: Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[TransitiveMemberOf ]`: - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: Represents the app roles a group has been granted for an application. Supports $expand. - - `[Classification ]`: Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[CreatedOnBehalfOf ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[Description ]`: An optional description for the group. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[GroupType ]`: Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it's either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, NOT). - - `[HasMembersWithLicenseError ]`: Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq). - - `[IsArchived ]`: - - `[IsAssignableToRole ]`: Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must also be assigned the Directory.AccessAsUser.All permission to set this property. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT). - - `[MailEnabled ]`: Specifies whether the group is mail-enabled. Returned by default. Supports $filter (eq, ne, NOT). - - `[MailNickname ]`: The mail alias for the group, unique in the organization. This property must be specified when a group is created. These characters cannot be used in the mailNickName: @()/[]';:.<>,SPACE. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[MembershipRule ]`: The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[MembershipRuleProcessingState ]`: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[PermissionGrant ]`: The permissions that have been granted for a group to a specific application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[ClientAppId ]`: ID of the service principal of the Azure AD app that has been granted access. Read-only. - - `[ClientId ]`: ID of the Azure AD app that has been granted access. Read-only. - - `[Permission ]`: The name of the resource-specific permission. Read-only. - - `[PermissionType ]`: The type of permission. Possible values are: Application, Delegated. Read-only. - - `[ResourceAppId ]`: ID of the Azure AD app that is hosting the resource. Read-only. - - `[PreferredDataLocation ]`: The preferred data location for the group. For more information, see OneDrive Online Multi-Geo. Returned by default. - - `[PreferredLanguage ]`: The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[SecurityEnabled ]`: Specifies whether the group is a security group. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[SecurityIdentifier ]`: Security identifier of the group, used in Windows scenarios. Returned by default. - - `[Theme ]`: Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. - - `[Visibility ]`: Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or Hiddenmembership. Hiddenmembership can be set only for Microsoft 365 groups, when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. See group visibility options to learn more. Returned by default. - - `[Description ]`: An optional description for the group. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[GroupType ]`: Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it's either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, NOT). - - `[HasMembersWithLicenseError ]`: Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq). - - `[IsArchived ]`: - - `[IsAssignableToRole ]`: Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must also be assigned the Directory.AccessAsUser.All permission to set this property. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT). - - `[MailEnabled ]`: Specifies whether the group is mail-enabled. Returned by default. Supports $filter (eq, ne, NOT). - - `[MailNickname ]`: The mail alias for the group, unique in the organization. This property must be specified when a group is created. These characters cannot be used in the mailNickName: @()/[]';:.<>,SPACE. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[MembershipRule ]`: The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[MembershipRuleProcessingState ]`: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[PermissionGrant ]`: The permissions that have been granted for a group to a specific application. Supports $expand. - - `[PreferredDataLocation ]`: The preferred data location for the group. For more information, see OneDrive Online Multi-Geo. Returned by default. - - `[PreferredLanguage ]`: The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[SecurityEnabled ]`: Specifies whether the group is a security group. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[SecurityIdentifier ]`: Security identifier of the group, used in Windows scenarios. Returned by default. - - `[Theme ]`: Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. - - `[Visibility ]`: Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or Hiddenmembership. Hiddenmembership can be set only for Microsoft 365 groups, when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. See group visibility options to learn more. Returned by default. - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADGroupOwner.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADGroupOwner.md index 0137a48dc607..67557102da36 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADGroupOwner.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADGroupOwner.md @@ -77,7 +77,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 @@ -222,7 +223,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADOrganization.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADOrganization.md index 05b8f34916b0..21b759ca011f 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADOrganization.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADOrganization.md @@ -47,7 +47,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 @@ -177,9 +178,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS -[Find more info here](https://learn.microsoft.com/graph/api/organization-list?view=graph-rest-1.0) +[[Find more info here](https://learn.microsoft.com/graph/api/organization-list?view=graph-rest-1.0)]([Find more info here](https://learn.microsoft.com/graph/api/organization-list?view=graph-rest-1.0)) diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADServicePrincipal.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADServicePrincipal.md index a76a386e3507..cb5550de3043 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADServicePrincipal.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADServicePrincipal.md @@ -144,7 +144,6 @@ Accept wildcard characters: False ### -ApplicationObject The service principal object, could be used as pipeline input. -To construct, see NOTES section for APPLICATIONOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication @@ -383,256 +382,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -APPLICATIONOBJECT : The service principal object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[ParentalControlSetting ]`: parentalControlSettings - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[PublicClient ]`: publicClientApplication - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADServicePrincipalAppRoleAssignment.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADServicePrincipalAppRoleAssignment.md index d0ed05b49f89..738959e00070 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADServicePrincipalAppRoleAssignment.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADServicePrincipalAppRoleAssignment.md @@ -90,7 +90,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 @@ -235,7 +236,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADSpCredential.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADSpCredential.md index e69f8415b0d7..232dc223a27d 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADSpCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADSpCredential.md @@ -111,7 +111,6 @@ Accept wildcard characters: False ### -ServicePrincipalObject The service principal object, could be used as pipeline input. -To construct, see NOTES section for SERVICEPRINCIPALOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphServicePrincipal @@ -175,280 +174,5 @@ ALIASES Get-AzADServicePrincipalCredential -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. - - -SERVICEPRINCIPALOBJECT : The service principal object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AccountEnabled ]`: true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, NOT, in). - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[AlternativeName ]`: Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, NOT, ge, le, startsWith). - - `[AppDescription ]`: The description exposed by the associated application. - - `[AppDisplayName ]`: The display name exposed by the associated application. - - `[AppId ]`: The unique identifier for the associated application (its appId property). - - `[AppOwnerOrganizationId ]`: Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le). - - `[AppRole ]`: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[AppRoleAssignedTo ]`: App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[AppRoleAssignmentRequired ]`: Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). - - `[ClaimsMappingPolicy ]`: The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[DelegatedPermissionClassification ]`: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - - `[Description ]`: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[Endpoint ]`: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[FederatedIdentityCredentials ]`: - - `[HomeRealmDiscoveryPolicy ]`: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[Homepage ]`: Home page or landing page of the application. - - `[Info ]`: informationalUrl - - `[KeyCredentials ]`: The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[LoginUrl ]`: Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols. - - `[Note ]`: Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters. - - `[NotificationEmailAddress ]`: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. - - `[Oauth2PermissionScope ]`: The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[PasswordCredentials ]`: The collection of password credentials associated with the service principal. Not nullable. - - `[PreferredSingleSignOnMode ]`: Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc. - - `[PreferredTokenSigningKeyThumbprint ]`: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. - - `[ReplyUrl ]`: The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. - - `[SamlSingleSignOnSetting ]`: samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - - `[ServicePrincipalName ]`: Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[ServicePrincipalType ]`: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. - - `[Tag ]`: Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[TransitiveMemberOf ]`: - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Get-AzADUser.md b/src/Resources/MSGraph.Autorest/docs/Get-AzADUser.md index 6328ce76c89a..f73f77c35d84 100644 --- a/src/Resources/MSGraph.Autorest/docs/Get-AzADUser.md +++ b/src/Resources/MSGraph.Autorest/docs/Get-AzADUser.md @@ -381,7 +381,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/New-AzADAppCredential.md b/src/Resources/MSGraph.Autorest/docs/New-AzADAppCredential.md index c03bd43c137c..3b0c6630b7a1 100644 --- a/src/Resources/MSGraph.Autorest/docs/New-AzADAppCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/New-AzADAppCredential.md @@ -162,7 +162,6 @@ Accept wildcard characters: False ### -ApplicationObject The application object, could be used as pipeline input. -To construct, see NOTES section for APPLICATIONOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication @@ -257,7 +256,6 @@ Accept wildcard characters: False ### -KeyCredentials key credentials associated with the application. -To construct, see NOTES section for KEYCREDENTIALS properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphKeyCredential[] @@ -288,7 +286,6 @@ Accept wildcard characters: False ### -PasswordCredentials Password credentials associated with the application. -To construct, see NOTES section for PASSWORDCREDENTIALS properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphPasswordCredential[] @@ -365,275 +362,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -APPLICATIONOBJECT : The application object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 * 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 * 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 * 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 * 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[ServiceManagementReference ]`: References application or service contact information from a Service or Asset Management database. Nullable. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[ParentalControlSetting ]`: parentalControlSettings - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[PublicClient ]`: publicClientApplication - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ServiceManagementReference ]`: References application or service contact information from a Service or Asset Management database. Nullable. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - -KEYCREDENTIALS : key credentials associated with the application. - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - -PASSWORDCREDENTIALS : Password credentials associated with the application. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/New-AzADAppFederatedCredential.md b/src/Resources/MSGraph.Autorest/docs/New-AzADAppFederatedCredential.md index 7daaf54097ce..534043ddd321 100644 --- a/src/Resources/MSGraph.Autorest/docs/New-AzADAppFederatedCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/New-AzADAppFederatedCredential.md @@ -210,7 +210,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/New-AzADApplication.md b/src/Resources/MSGraph.Autorest/docs/New-AzADApplication.md index 4dc1b62989d8..ff8ebf288d5a 100644 --- a/src/Resources/MSGraph.Autorest/docs/New-AzADApplication.md +++ b/src/Resources/MSGraph.Autorest/docs/New-AzADApplication.md @@ -452,7 +452,6 @@ Accept wildcard characters: False ### -KeyCredentials key credentials associated with the application. -To construct, see NOTES section for KEYCREDENTIALS properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphKeyCredential[] @@ -546,7 +545,6 @@ Accept wildcard characters: False ### -PasswordCredentials Password credentials associated with the application. -To construct, see NOTES section for PASSWORDCREDENTIALS properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphPasswordCredential[] @@ -800,734 +798,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -ADDIN : Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - -API : apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - -APPROLE : The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - -HOMEREALMDISCOVERYPOLICY : . - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[ServiceManagementReference ]`: References application or service contact information from a Service or Asset Management database. Nullable. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -INFO : informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - -KEYCREDENTIALS : key credentials associated with the application. - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - -OPTIONALCLAIM : optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - -PARENTALCONTROLSETTING : parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - -PASSWORDCREDENTIALS : Password credentials associated with the application. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - -REQUIREDRESOURCEACCESS : Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - -TOKENISSUANCEPOLICY : . - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[ServiceManagementReference ]`: References application or service contact information from a Service or Asset Management database. Nullable. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -TOKENLIFETIMEPOLICY : The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[ServiceManagementReference ]`: References application or service contact information from a Service or Asset Management database. Nullable. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -WEB : webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/New-AzADGroup.md b/src/Resources/MSGraph.Autorest/docs/New-AzADGroup.md index 1278659cbac9..b7bb0820a53f 100644 --- a/src/Resources/MSGraph.Autorest/docs/New-AzADGroup.md +++ b/src/Resources/MSGraph.Autorest/docs/New-AzADGroup.md @@ -530,48 +530,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -ACCEPTEDSENDER : The list of users or groups that are allowed to create post's or calendar events in this group. If this list is non-empty then only users or groups listed here are allowed to post. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -APPROLEASSIGNMENT : Represents the app roles a group has been granted for an application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[CreatedDateTime ]`: The time when the app role assignment was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[PrincipalDisplayName ]`: The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith). - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[PrincipalType ]`: The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - -CREATEDONBEHALFOF : Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -PERMISSIONGRANT : The permissions that have been granted for a group to a specific application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[ClientAppId ]`: ID of the service principal of the Azure AD app that has been granted access. Read-only. - - `[ClientId ]`: ID of the Azure AD app that has been granted access. Read-only. - - `[Permission ]`: The name of the resource-specific permission. Read-only. - - `[PermissionType ]`: The type of permission. Possible values are: Application, Delegated. Read-only. - - `[ResourceAppId ]`: ID of the Azure AD app that is hosting the resource. Read-only. - -TRANSITIVEMEMBER : . - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -TRANSITIVEMEMBEROF : . - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/New-AzADGroupOwner.md b/src/Resources/MSGraph.Autorest/docs/New-AzADGroupOwner.md index d089f8888dbb..8e295108dc5c 100644 --- a/src/Resources/MSGraph.Autorest/docs/New-AzADGroupOwner.md +++ b/src/Resources/MSGraph.Autorest/docs/New-AzADGroupOwner.md @@ -22,14 +22,14 @@ Create new navigation property ref to owners for groups ## EXAMPLES -### Example 1: Assign a user as onwer of a group +### Example 1: Assign a user as owner of a group ```powershell $userId = (Get-AzADUser -DisplayName "John Doe").Id $groupId = (Get-AzADGroup -DisplayName "someGroup").Id New-AzADGroupOwner -GroupId $groupId -OwnerId $userId ``` -Assign a user as onwer of a group +Assign a user as owner of a group ## PARAMETERS @@ -135,7 +135,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/New-AzADServicePrincipal.md b/src/Resources/MSGraph.Autorest/docs/New-AzADServicePrincipal.md index 0cec0302bb07..e1b4cd616425 100644 --- a/src/Resources/MSGraph.Autorest/docs/New-AzADServicePrincipal.md +++ b/src/Resources/MSGraph.Autorest/docs/New-AzADServicePrincipal.md @@ -258,7 +258,6 @@ Accept wildcard characters: False ### -ApplicationObject The application object, could be used as pipeline input. -To construct, see NOTES section for APPLICATIONOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication @@ -572,7 +571,6 @@ Accept wildcard characters: False ### -KeyCredential key credentials associated with the service principal. -To construct, see NOTES section for KEYCREDENTIAL properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphKeyCredential[] @@ -671,7 +669,6 @@ Accept wildcard characters: False ### -PasswordCredential Password credentials associated with the service principal. -To construct, see NOTES section for PASSWORDCREDENTIAL properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphPasswordCredential[] @@ -964,1185 +961,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -ADDIN : Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - -APPLICATIONOBJECT : The application object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[ParentalControlSetting ]`: parentalControlSettings - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[PublicClient ]`: publicClientApplication - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - -APPROLE : The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - -APPROLEASSIGNEDTO : App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - -APPROLEASSIGNMENT : App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - -CLAIMSMAPPINGPOLICY : The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -DELEGATEDPERMISSIONCLASSIFICATION : The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - -ENDPOINT : Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -HOMEREALMDISCOVERYPOLICY : The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -INFO : informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - -KEYCREDENTIAL : key credentials associated with the service principal. - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - -OAUTH2PERMISSIONSCOPE : The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - -PASSWORDCREDENTIAL : Password credentials associated with the service principal. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - -SAMLSINGLESIGNONSETTING : samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - -TOKENISSUANCEPOLICY : The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -TOKENLIFETIMEPOLICY : The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -TRANSITIVEMEMBEROF : . - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/New-AzADServicePrincipalAppRoleAssignment.md b/src/Resources/MSGraph.Autorest/docs/New-AzADServicePrincipalAppRoleAssignment.md index 7e4dcf80407d..5aeeaf557161 100644 --- a/src/Resources/MSGraph.Autorest/docs/New-AzADServicePrincipalAppRoleAssignment.md +++ b/src/Resources/MSGraph.Autorest/docs/New-AzADServicePrincipalAppRoleAssignment.md @@ -229,7 +229,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/New-AzADSpCredential.md b/src/Resources/MSGraph.Autorest/docs/New-AzADSpCredential.md index 5a502fffdb3f..2dc1361ce035 100644 --- a/src/Resources/MSGraph.Autorest/docs/New-AzADSpCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/New-AzADSpCredential.md @@ -163,7 +163,6 @@ Accept wildcard characters: False ### -KeyCredentials key credentials associated with the service principal. -To construct, see NOTES section for KEYCREDENTIALS properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphKeyCredential[] @@ -194,7 +193,6 @@ Accept wildcard characters: False ### -PasswordCredentials Password credentials associated with the service principal. -To construct, see NOTES section for PASSWORDCREDENTIALS properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphPasswordCredential[] @@ -225,7 +223,6 @@ Accept wildcard characters: False ### -ServicePrincipalObject The service principal object, could be used as pipeline input. -To construct, see NOTES section for SERVICEPRINCIPALOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphServicePrincipal @@ -306,297 +303,5 @@ ALIASES New-AzADServicePrincipalCredential -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. - - -KEYCREDENTIALS : key credentials associated with the service principal. - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - -PASSWORDCREDENTIALS : Password credentials associated with the service principal. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - -SERVICEPRINCIPALOBJECT : The service principal object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AccountEnabled ]`: true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, NOT, in). - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[AlternativeName ]`: Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, NOT, ge, le, startsWith). - - `[AppDescription ]`: The description exposed by the associated application. - - `[AppDisplayName ]`: The display name exposed by the associated application. - - `[AppId ]`: The unique identifier for the associated application (its appId property). - - `[AppOwnerOrganizationId ]`: Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le). - - `[AppRole ]`: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[AppRoleAssignedTo ]`: App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[AppRoleAssignmentRequired ]`: Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). - - `[ClaimsMappingPolicy ]`: The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[DelegatedPermissionClassification ]`: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - - `[Description ]`: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[Endpoint ]`: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[FederatedIdentityCredentials ]`: - - `[HomeRealmDiscoveryPolicy ]`: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[Homepage ]`: Home page or landing page of the application. - - `[Info ]`: informationalUrl - - `[KeyCredentials ]`: The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[LoginUrl ]`: Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols. - - `[Note ]`: Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters. - - `[NotificationEmailAddress ]`: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. - - `[Oauth2PermissionScope ]`: The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[PasswordCredentials ]`: The collection of password credentials associated with the service principal. Not nullable. - - `[PreferredSingleSignOnMode ]`: Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc. - - `[PreferredTokenSigningKeyThumbprint ]`: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. - - `[ReplyUrl ]`: The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. - - `[SamlSingleSignOnSetting ]`: samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - - `[ServicePrincipalName ]`: Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[ServicePrincipalType ]`: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. - - `[Tag ]`: Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[TransitiveMemberOf ]`: - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/New-AzADUser.md b/src/Resources/MSGraph.Autorest/docs/New-AzADUser.md index eee08542bd4c..fcf77f343820 100644 --- a/src/Resources/MSGraph.Autorest/docs/New-AzADUser.md +++ b/src/Resources/MSGraph.Autorest/docs/New-AzADUser.md @@ -60,7 +60,6 @@ Create user with password profile ### Example 2: Create user with password ```powershell -$password = "xxxxxxxxxx" $password = ConvertTo-SecureString -String "****" -AsPlainText -Force New-AzADUser -DisplayName $uname -Password $password -AccountEnabled $true -MailNickname $nickname -UserPrincipalName $upn ``` @@ -472,7 +471,7 @@ Accept wildcard characters: False ``` ### -IsResourceAccount -Do not use – reserved for future use. +Do not use - reserved for future use. ```yaml Type: System.Management.Automation.SwitchParameter @@ -922,18 +921,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -PASSWORDPROFILE : passwordProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ForceChangePasswordNextSignIn ]`: true if the user must change her password on the next login; otherwise false. If not set, default is false. NOTE: For Azure B2C tenants, set to false and instead use custom policies and user flows to force password reset at first sign in. See Force password reset at first logon. - - `[ForceChangePasswordNextSignInWithMfa ]`: If true, at next sign-in, the user must perform a multi-factor authentication (MFA) before being forced to change their password. The behavior is identical to forceChangePasswordNextSignIn except that the user is required to first perform a multi-factor authentication before password change. After a password change, this property will be automatically reset to false. If not set, default is false. - - `[Password ]`: The password for the user. This property is required when a user is created. It can be updated, but the user will be required to change the password on the next login. The password must satisfy minimum requirements as specified by the user’s passwordPolicies property. By default, a strong password is required. - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppCredential.md b/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppCredential.md index 79a6ff81cb39..816f81d9c5bf 100644 --- a/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppCredential.md @@ -74,7 +74,6 @@ Accept wildcard characters: False ### -ApplicationObject The application object, could be used as pipeline input. -To construct, see NOTES section for APPLICATIONOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication @@ -207,256 +206,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -APPLICATIONOBJECT : The application object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[ParentalControlSetting ]`: parentalControlSettings - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[PublicClient ]`: publicClientApplication - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppFederatedCredential.md b/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppFederatedCredential.md index bb37b0c5e50f..85a01d01aba7 100644 --- a/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppFederatedCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppFederatedCredential.md @@ -47,7 +47,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 @@ -148,7 +149,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppPermission.md b/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppPermission.md index f9bf003e3fff..785796e0deb7 100644 --- a/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppPermission.md +++ b/src/Resources/MSGraph.Autorest/docs/Remove-AzADAppPermission.md @@ -140,7 +140,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Remove-AzADApplication.md b/src/Resources/MSGraph.Autorest/docs/Remove-AzADApplication.md index 45e3a1661d7c..e26aa5da5e2c 100644 --- a/src/Resources/MSGraph.Autorest/docs/Remove-AzADApplication.md +++ b/src/Resources/MSGraph.Autorest/docs/Remove-AzADApplication.md @@ -104,7 +104,6 @@ Accept wildcard characters: False ### -InputObject The application object, could be used as pipeline input. -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication @@ -192,256 +191,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -INPUTOBJECT : The application object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[ParentalControlSetting ]`: parentalControlSettings - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[PublicClient ]`: publicClientApplication - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroup.md b/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroup.md index ca72bd1e5a43..5a6cf221cafa 100644 --- a/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroup.md +++ b/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroup.md @@ -98,7 +98,6 @@ Accept wildcard characters: False ### -InputObject user input object -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphGroup @@ -186,340 +185,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -INPUTOBJECT : user input object - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleAssignment ]`: Represents the app roles a group has been granted for an application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[CreatedDateTime ]`: The time when the app role assignment was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[PrincipalDisplayName ]`: The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith). - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[PrincipalType ]`: The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[Classification ]`: Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[CreatedOnBehalfOf ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[AccountEnabled ]`: true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, NOT, in). - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[AlternativeName ]`: Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, NOT, ge, le, startsWith). - - `[AppDescription ]`: The description exposed by the associated application. - - `[AppDisplayName ]`: The display name exposed by the associated application. - - `[AppId ]`: The unique identifier for the associated application (its appId property). - - `[AppOwnerOrganizationId ]`: Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le). - - `[AppRole ]`: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AppRoleAssignedTo ]`: App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[AppRoleAssignmentRequired ]`: Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). - - `[ClaimsMappingPolicy ]`: The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[DelegatedPermissionClassification ]`: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - - `[Description ]`: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[Endpoint ]`: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[FederatedIdentityCredentials ]`: - - `[HomeRealmDiscoveryPolicy ]`: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[Homepage ]`: Home page or landing page of the application. - - `[Info ]`: informationalUrl - - `[KeyCredentials ]`: The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[LoginUrl ]`: Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols. - - `[Note ]`: Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters. - - `[NotificationEmailAddress ]`: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. - - `[Oauth2PermissionScope ]`: The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[PasswordCredentials ]`: The collection of password credentials associated with the service principal. Not nullable. - - `[PreferredSingleSignOnMode ]`: Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc. - - `[PreferredTokenSigningKeyThumbprint ]`: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. - - `[ReplyUrl ]`: The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. - - `[SamlSingleSignOnSetting ]`: samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - - `[ServicePrincipalName ]`: Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[ServicePrincipalType ]`: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. - - `[Tag ]`: Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[TransitiveMemberOf ]`: - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: Represents the app roles a group has been granted for an application. Supports $expand. - - `[Classification ]`: Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[CreatedOnBehalfOf ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[Description ]`: An optional description for the group. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[GroupType ]`: Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it's either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, NOT). - - `[HasMembersWithLicenseError ]`: Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq). - - `[IsArchived ]`: - - `[IsAssignableToRole ]`: Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must also be assigned the Directory.AccessAsUser.All permission to set this property. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT). - - `[MailEnabled ]`: Specifies whether the group is mail-enabled. Returned by default. Supports $filter (eq, ne, NOT). - - `[MailNickname ]`: The mail alias for the group, unique in the organization. This property must be specified when a group is created. These characters cannot be used in the mailNickName: @()/[]';:.<>,SPACE. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[MembershipRule ]`: The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[MembershipRuleProcessingState ]`: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[PermissionGrant ]`: The permissions that have been granted for a group to a specific application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[ClientAppId ]`: ID of the service principal of the Azure AD app that has been granted access. Read-only. - - `[ClientId ]`: ID of the Azure AD app that has been granted access. Read-only. - - `[Permission ]`: The name of the resource-specific permission. Read-only. - - `[PermissionType ]`: The type of permission. Possible values are: Application, Delegated. Read-only. - - `[ResourceAppId ]`: ID of the Azure AD app that is hosting the resource. Read-only. - - `[PreferredDataLocation ]`: The preferred data location for the group. For more information, see OneDrive Online Multi-Geo. Returned by default. - - `[PreferredLanguage ]`: The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[SecurityEnabled ]`: Specifies whether the group is a security group. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[SecurityIdentifier ]`: Security identifier of the group, used in Windows scenarios. Returned by default. - - `[Theme ]`: Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. - - `[Visibility ]`: Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or Hiddenmembership. Hiddenmembership can be set only for Microsoft 365 groups, when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. See group visibility options to learn more. Returned by default. - - `[Description ]`: An optional description for the group. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[GroupType ]`: Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it's either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, NOT). - - `[HasMembersWithLicenseError ]`: Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq). - - `[IsArchived ]`: - - `[IsAssignableToRole ]`: Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must also be assigned the Directory.AccessAsUser.All permission to set this property. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT). - - `[MailEnabled ]`: Specifies whether the group is mail-enabled. Returned by default. Supports $filter (eq, ne, NOT). - - `[MailNickname ]`: The mail alias for the group, unique in the organization. This property must be specified when a group is created. These characters cannot be used in the mailNickName: @()/[]';:.<>,SPACE. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[MembershipRule ]`: The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[MembershipRuleProcessingState ]`: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[PermissionGrant ]`: The permissions that have been granted for a group to a specific application. Supports $expand. - - `[PreferredDataLocation ]`: The preferred data location for the group. For more information, see OneDrive Online Multi-Geo. Returned by default. - - `[PreferredLanguage ]`: The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[SecurityEnabled ]`: Specifies whether the group is a security group. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[SecurityIdentifier ]`: Security identifier of the group, used in Windows scenarios. Returned by default. - - `[Theme ]`: Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. - - `[Visibility ]`: Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or Hiddenmembership. Hiddenmembership can be set only for Microsoft 365 groups, when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. See group visibility options to learn more. Returned by default. - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroupMember.md b/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroupMember.md index 8bed1b03bb66..873223d42436 100644 --- a/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroupMember.md +++ b/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroupMember.md @@ -110,7 +110,6 @@ Accept wildcard characters: False ### -GroupObject The target group object, could be used as pipeline input. -To construct, see NOTES section for GROUPOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.MicrosoftGraphGroup @@ -228,340 +227,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -GROUPOBJECT : The target group object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AppRoleAssignment ]`: Represents the app roles a group has been granted for an application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[CreatedDateTime ]`: The time when the app role assignment was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[PrincipalDisplayName ]`: The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith). - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[PrincipalType ]`: The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[Classification ]`: Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[CreatedOnBehalfOf ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[AccountEnabled ]`: true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, NOT, in). - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[AlternativeName ]`: Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, NOT, ge, le, startsWith). - - `[AppDescription ]`: The description exposed by the associated application. - - `[AppDisplayName ]`: The display name exposed by the associated application. - - `[AppId ]`: The unique identifier for the associated application (its appId property). - - `[AppOwnerOrganizationId ]`: Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le). - - `[AppRole ]`: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AppRoleAssignedTo ]`: App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[AppRoleAssignmentRequired ]`: Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). - - `[ClaimsMappingPolicy ]`: The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[DelegatedPermissionClassification ]`: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - - `[Description ]`: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[Endpoint ]`: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[FederatedIdentityCredentials ]`: - - `[HomeRealmDiscoveryPolicy ]`: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[Homepage ]`: Home page or landing page of the application. - - `[Info ]`: informationalUrl - - `[KeyCredentials ]`: The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[LoginUrl ]`: Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols. - - `[Note ]`: Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters. - - `[NotificationEmailAddress ]`: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. - - `[Oauth2PermissionScope ]`: The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[PasswordCredentials ]`: The collection of password credentials associated with the service principal. Not nullable. - - `[PreferredSingleSignOnMode ]`: Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc. - - `[PreferredTokenSigningKeyThumbprint ]`: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. - - `[ReplyUrl ]`: The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. - - `[SamlSingleSignOnSetting ]`: samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - - `[ServicePrincipalName ]`: Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[ServicePrincipalType ]`: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. - - `[Tag ]`: Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[TransitiveMemberOf ]`: - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: Represents the app roles a group has been granted for an application. Supports $expand. - - `[Classification ]`: Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[CreatedOnBehalfOf ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[Description ]`: An optional description for the group. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[GroupType ]`: Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it's either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, NOT). - - `[HasMembersWithLicenseError ]`: Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq). - - `[IsArchived ]`: - - `[IsAssignableToRole ]`: Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must also be assigned the Directory.AccessAsUser.All permission to set this property. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT). - - `[MailEnabled ]`: Specifies whether the group is mail-enabled. Returned by default. Supports $filter (eq, ne, NOT). - - `[MailNickname ]`: The mail alias for the group, unique in the organization. This property must be specified when a group is created. These characters cannot be used in the mailNickName: @()/[]';:.<>,SPACE. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[MembershipRule ]`: The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[MembershipRuleProcessingState ]`: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[PermissionGrant ]`: The permissions that have been granted for a group to a specific application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[ClientAppId ]`: ID of the service principal of the Azure AD app that has been granted access. Read-only. - - `[ClientId ]`: ID of the Azure AD app that has been granted access. Read-only. - - `[Permission ]`: The name of the resource-specific permission. Read-only. - - `[PermissionType ]`: The type of permission. Possible values are: Application, Delegated. Read-only. - - `[ResourceAppId ]`: ID of the Azure AD app that is hosting the resource. Read-only. - - `[PreferredDataLocation ]`: The preferred data location for the group. For more information, see OneDrive Online Multi-Geo. Returned by default. - - `[PreferredLanguage ]`: The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[SecurityEnabled ]`: Specifies whether the group is a security group. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[SecurityIdentifier ]`: Security identifier of the group, used in Windows scenarios. Returned by default. - - `[Theme ]`: Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. - - `[Visibility ]`: Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or Hiddenmembership. Hiddenmembership can be set only for Microsoft 365 groups, when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. See group visibility options to learn more. Returned by default. - - `[Description ]`: An optional description for the group. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[GroupType ]`: Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it's either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, NOT). - - `[HasMembersWithLicenseError ]`: Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq). - - `[IsArchived ]`: - - `[IsAssignableToRole ]`: Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must also be assigned the Directory.AccessAsUser.All permission to set this property. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT). - - `[MailEnabled ]`: Specifies whether the group is mail-enabled. Returned by default. Supports $filter (eq, ne, NOT). - - `[MailNickname ]`: The mail alias for the group, unique in the organization. This property must be specified when a group is created. These characters cannot be used in the mailNickName: @()/[]';:.<>,SPACE. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[MembershipRule ]`: The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[MembershipRuleProcessingState ]`: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[PermissionGrant ]`: The permissions that have been granted for a group to a specific application. Supports $expand. - - `[PreferredDataLocation ]`: The preferred data location for the group. For more information, see OneDrive Online Multi-Geo. Returned by default. - - `[PreferredLanguage ]`: The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[SecurityEnabled ]`: Specifies whether the group is a security group. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[SecurityIdentifier ]`: Security identifier of the group, used in Windows scenarios. Returned by default. - - `[Theme ]`: Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. - - `[Visibility ]`: Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or Hiddenmembership. Hiddenmembership can be set only for Microsoft 365 groups, when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. See group visibility options to learn more. Returned by default. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroupOwner.md b/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroupOwner.md index 7e1dbe948827..9cb7c325331d 100644 --- a/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroupOwner.md +++ b/src/Resources/MSGraph.Autorest/docs/Remove-AzADGroupOwner.md @@ -36,7 +36,8 @@ Notice: 1.this cmdlet does not delete the owner directory object. ## PARAMETERS ### -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 @@ -137,7 +138,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Remove-AzADServicePrincipal.md b/src/Resources/MSGraph.Autorest/docs/Remove-AzADServicePrincipal.md index 121f8e8efa99..6e2b0cc03200 100644 --- a/src/Resources/MSGraph.Autorest/docs/Remove-AzADServicePrincipal.md +++ b/src/Resources/MSGraph.Autorest/docs/Remove-AzADServicePrincipal.md @@ -86,7 +86,6 @@ Accept wildcard characters: False ### -ApplicationObject key: application object -To construct, see NOTES section for APPLICATIONOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication @@ -147,7 +146,6 @@ Accept wildcard characters: False ### -InputObject key: service principal object -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphServicePrincipal @@ -252,526 +250,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -APPLICATIONOBJECT : key: application object - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[ParentalControlSetting ]`: parentalControlSettings - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[PublicClient ]`: publicClientApplication - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - -INPUTOBJECT : key: service principal object - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AccountEnabled ]`: true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, NOT, in). - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[AlternativeName ]`: Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, NOT, ge, le, startsWith). - - `[AppDescription ]`: The description exposed by the associated application. - - `[AppDisplayName ]`: The display name exposed by the associated application. - - `[AppId ]`: The unique identifier for the associated application (its appId property). - - `[AppOwnerOrganizationId ]`: Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le). - - `[AppRole ]`: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[AppRoleAssignedTo ]`: App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[AppRoleAssignmentRequired ]`: Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). - - `[ClaimsMappingPolicy ]`: The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[DelegatedPermissionClassification ]`: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - - `[Description ]`: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[Endpoint ]`: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[FederatedIdentityCredentials ]`: - - `[HomeRealmDiscoveryPolicy ]`: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[Homepage ]`: Home page or landing page of the application. - - `[Info ]`: informationalUrl - - `[KeyCredentials ]`: The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[LoginUrl ]`: Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols. - - `[Note ]`: Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters. - - `[NotificationEmailAddress ]`: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. - - `[Oauth2PermissionScope ]`: The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[PasswordCredentials ]`: The collection of password credentials associated with the service principal. Not nullable. - - `[PreferredSingleSignOnMode ]`: Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc. - - `[PreferredTokenSigningKeyThumbprint ]`: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. - - `[ReplyUrl ]`: The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. - - `[SamlSingleSignOnSetting ]`: samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - - `[ServicePrincipalName ]`: Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[ServicePrincipalType ]`: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. - - `[Tag ]`: Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[TransitiveMemberOf ]`: - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Remove-AzADServicePrincipalAppRoleAssignment.md b/src/Resources/MSGraph.Autorest/docs/Remove-AzADServicePrincipalAppRoleAssignment.md index c7a4db5db2f0..cd2462e226bb 100644 --- a/src/Resources/MSGraph.Autorest/docs/Remove-AzADServicePrincipalAppRoleAssignment.md +++ b/src/Resources/MSGraph.Autorest/docs/Remove-AzADServicePrincipalAppRoleAssignment.md @@ -47,7 +47,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 @@ -148,7 +149,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Remove-AzADSpCredential.md b/src/Resources/MSGraph.Autorest/docs/Remove-AzADSpCredential.md index 5c93d36af995..278d393d1ef8 100644 --- a/src/Resources/MSGraph.Autorest/docs/Remove-AzADSpCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/Remove-AzADSpCredential.md @@ -149,7 +149,6 @@ Accept wildcard characters: False ### -ServicePrincipalObject The service principal object, could be used as pipeline input. -To construct, see NOTES section for SERVICEPRINCIPALOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphServicePrincipal @@ -211,280 +210,5 @@ ALIASES Remove-AzADServicePrincipalCredential -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. - - -SERVICEPRINCIPALOBJECT : The service principal object, could be used as pipeline input. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AccountEnabled ]`: true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, NOT, in). - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[AlternativeName ]`: Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, NOT, ge, le, startsWith). - - `[AppDescription ]`: The description exposed by the associated application. - - `[AppDisplayName ]`: The display name exposed by the associated application. - - `[AppId ]`: The unique identifier for the associated application (its appId property). - - `[AppOwnerOrganizationId ]`: Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le). - - `[AppRole ]`: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[AppRoleAssignedTo ]`: App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[AppRoleAssignmentRequired ]`: Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). - - `[ClaimsMappingPolicy ]`: The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[DelegatedPermissionClassification ]`: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - - `[Description ]`: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[Endpoint ]`: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[FederatedIdentityCredentials ]`: - - `[HomeRealmDiscoveryPolicy ]`: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[Homepage ]`: Home page or landing page of the application. - - `[Info ]`: informationalUrl - - `[KeyCredentials ]`: The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[LoginUrl ]`: Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols. - - `[Note ]`: Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters. - - `[NotificationEmailAddress ]`: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. - - `[Oauth2PermissionScope ]`: The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[PasswordCredentials ]`: The collection of password credentials associated with the service principal. Not nullable. - - `[PreferredSingleSignOnMode ]`: Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc. - - `[PreferredTokenSigningKeyThumbprint ]`: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. - - `[ReplyUrl ]`: The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. - - `[SamlSingleSignOnSetting ]`: samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - - `[ServicePrincipalName ]`: Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[ServicePrincipalType ]`: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. - - `[Tag ]`: Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[TransitiveMemberOf ]`: - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Remove-AzADUser.md b/src/Resources/MSGraph.Autorest/docs/Remove-AzADUser.md index 5f92d3a8a1d4..c08683b100ec 100644 --- a/src/Resources/MSGraph.Autorest/docs/Remove-AzADUser.md +++ b/src/Resources/MSGraph.Autorest/docs/Remove-AzADUser.md @@ -95,7 +95,6 @@ Accept wildcard characters: False ### -InputObject user input object -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphUser @@ -213,427 +212,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -INPUTOBJECT : user input object - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AccountEnabled ]`: true if the account is enabled; otherwise, false. This property is required when a user is created. Supports $filter (eq, ne, NOT, and in). - - `[AgeGroup ]`: Sets the age group of the user. Allowed values: null, minor, notAdult and adult. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, NOT, and in). - - `[ApproximateLastSignInDateTime ]`: The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Supports $filter (eq, ne, not, ge, le, and eq on null values) and $orderBy. - - `[City ]`: The city in which the user is located. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[CompanyName ]`: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[ComplianceExpirationDateTime ]`: The timestamp when the device is no longer deemed compliant. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[ConsentProvidedForMinor ]`: Sets whether consent has been obtained for minors. Allowed values: null, granted, denied and notRequired. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, NOT, and in). - - `[Country ]`: The country/region in which the user is located; for example, US or UK. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Department ]`: The name for the department in which the user works. Maximum length is 64 characters.Supports $filter (eq, ne, NOT , ge, le, and in operators). - - `[DeviceVersion ]`: For internal use only. - - `[EmployeeHireDate ]`: The date and time when the user was hired or will start work in case of a future hire. Supports $filter (eq, ne, NOT , ge, le, in). - - `[EmployeeId ]`: The employee identifier assigned to the user by the organization. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[EmployeeOrgData ]`: employeeOrgData - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CostCenter ]`: The cost center associated with the user. Returned only on $select. Supports $filter. - - `[Division ]`: The name of the division in which the user works. Returned only on $select. Supports $filter. - - `[EmployeeType ]`: Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[ExternalUserState ]`: For an external user invited to the tenant using the invitation API, this property represents the invited user's invitation status. For invited users, the state can be PendingAcceptance or Accepted, or null for all other users. Supports $filter (eq, ne, NOT , in). - - `[ExternalUserStateChangeDateTime ]`: Shows the timestamp for the latest change to the externalUserState property. Supports $filter (eq, ne, NOT , in). - - `[FaxNumber ]`: The fax number of the user. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[GivenName ]`: The given name (first name) of the user. Maximum length is 64 characters. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[Identity ]`: Represents the identities that can be used to sign in to this user account. An identity can be provided by Microsoft (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and tied to a user account. May contain multiple items with the same signInType value. Supports $filter (eq) only where the signInType is not userPrincipalName. - - `[Issuer ]`: Specifies the issuer of the identity, for example facebook.com.For local accounts (where signInType is not federated), this property is the local B2C tenant default domain name, for example contoso.onmicrosoft.com.For external users from other Azure AD organization, this will be the domain of the federated organization, for example contoso.com.Supports $filter. 512 character limit. - - `[IssuerAssignedId ]`: Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit. - - `[SignInType ]`: Specifies the user sign-in types in your directory, such as emailAddress, userName or federated. Here, federated represents a unique identifier for a user from an issuer, that can be in any format chosen by the issuer. Additional validation is enforced on issuerAssignedId when the sign-in type is set to emailAddress or userName. This property can also be set to any custom string. - - `[IsResourceAccount ]`: Do not use – reserved for future use. - - `[JobTitle ]`: The user's job title. Maximum length is 128 characters. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[Mail ]`: The SMTP address for the user, for example, admin@contoso.com. Changes to this property will also update the user's proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter (eq, ne, NOT, ge, le, in, startsWith, endsWith). - - `[MailNickname ]`: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Manager ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[AccountEnabled ]`: true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, NOT, in). - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[AlternativeName ]`: Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, NOT, ge, le, startsWith). - - `[AppDescription ]`: The description exposed by the associated application. - - `[AppDisplayName ]`: The display name exposed by the associated application. - - `[AppId ]`: The unique identifier for the associated application (its appId property). - - `[AppOwnerOrganizationId ]`: Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le). - - `[AppRole ]`: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AppRoleAssignedTo ]`: App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[AppRoleAssignmentRequired ]`: Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). - - `[ClaimsMappingPolicy ]`: The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[DelegatedPermissionClassification ]`: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - - `[Description ]`: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[Endpoint ]`: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[FederatedIdentityCredentials ]`: - - `[HomeRealmDiscoveryPolicy ]`: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[Homepage ]`: Home page or landing page of the application. - - `[Info ]`: informationalUrl - - `[KeyCredentials ]`: The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[LoginUrl ]`: Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols. - - `[Note ]`: Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters. - - `[NotificationEmailAddress ]`: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. - - `[Oauth2PermissionScope ]`: The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[PasswordCredentials ]`: The collection of password credentials associated with the service principal. Not nullable. - - `[PreferredSingleSignOnMode ]`: Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc. - - `[PreferredTokenSigningKeyThumbprint ]`: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. - - `[ReplyUrl ]`: The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. - - `[SamlSingleSignOnSetting ]`: samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - - `[ServicePrincipalName ]`: Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[ServicePrincipalType ]`: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. - - `[Tag ]`: Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[TransitiveMemberOf ]`: - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[CreatedDateTime ]`: The time when the app role assignment was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[PrincipalDisplayName ]`: The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith). - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[PrincipalType ]`: The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: Represents the app roles a group has been granted for an application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[CreatedDateTime ]`: The time when the app role assignment was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[PrincipalDisplayName ]`: The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith). - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[PrincipalType ]`: The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[Classification ]`: Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[CreatedOnBehalfOf ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[Description ]`: An optional description for the group. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[GroupType ]`: Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it's either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, NOT). - - `[HasMembersWithLicenseError ]`: Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq). - - `[IsArchived ]`: - - `[IsAssignableToRole ]`: Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must also be assigned the Directory.AccessAsUser.All permission to set this property. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT). - - `[MailEnabled ]`: Specifies whether the group is mail-enabled. Returned by default. Supports $filter (eq, ne, NOT). - - `[MailNickname ]`: The mail alias for the group, unique in the organization. This property must be specified when a group is created. These characters cannot be used in the mailNickName: @()/[]';:.<>,SPACE. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[MembershipRule ]`: The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[MembershipRuleProcessingState ]`: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[PermissionGrant ]`: The permissions that have been granted for a group to a specific application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[ClientAppId ]`: ID of the service principal of the Azure AD app that has been granted access. Read-only. - - `[ClientId ]`: ID of the Azure AD app that has been granted access. Read-only. - - `[Permission ]`: The name of the resource-specific permission. Read-only. - - `[PermissionType ]`: The type of permission. Possible values are: Application, Delegated. Read-only. - - `[ResourceAppId ]`: ID of the Azure AD app that is hosting the resource. Read-only. - - `[PreferredDataLocation ]`: The preferred data location for the group. For more information, see OneDrive Online Multi-Geo. Returned by default. - - `[PreferredLanguage ]`: The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[SecurityEnabled ]`: Specifies whether the group is a security group. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[SecurityIdentifier ]`: Security identifier of the group, used in Windows scenarios. Returned by default. - - `[Theme ]`: Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. - - `[Visibility ]`: Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or Hiddenmembership. Hiddenmembership can be set only for Microsoft 365 groups, when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. See group visibility options to learn more. Returned by default. - - `[ClientAppId ]`: ID of the service principal of the Azure AD app that has been granted access. Read-only. - - `[ClientId ]`: ID of the Azure AD app that has been granted access. Read-only. - - `[Permission ]`: The name of the resource-specific permission. Read-only. - - `[PermissionType ]`: The type of permission. Possible values are: Application, Delegated. Read-only. - - `[ResourceAppId ]`: ID of the Azure AD app that is hosting the resource. Read-only. - - `[AccountEnabled ]`: true if the account is enabled; otherwise, false. This property is required when a user is created. Supports $filter (eq, ne, NOT, and in). - - `[AgeGroup ]`: Sets the age group of the user. Allowed values: null, minor, notAdult and adult. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, NOT, and in). - - `[ApproximateLastSignInDateTime ]`: The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Supports $filter (eq, ne, not, ge, le, and eq on null values) and $orderBy. - - `[City ]`: The city in which the user is located. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[CompanyName ]`: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[ComplianceExpirationDateTime ]`: The timestamp when the device is no longer deemed compliant. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[ConsentProvidedForMinor ]`: Sets whether consent has been obtained for minors. Allowed values: null, granted, denied and notRequired. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, NOT, and in). - - `[Country ]`: The country/region in which the user is located; for example, US or UK. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Department ]`: The name for the department in which the user works. Maximum length is 64 characters.Supports $filter (eq, ne, NOT , ge, le, and in operators). - - `[DeviceVersion ]`: For internal use only. - - `[EmployeeHireDate ]`: The date and time when the user was hired or will start work in case of a future hire. Supports $filter (eq, ne, NOT , ge, le, in). - - `[EmployeeId ]`: The employee identifier assigned to the user by the organization. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[EmployeeOrgData ]`: employeeOrgData - - `[EmployeeType ]`: Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[ExternalUserState ]`: For an external user invited to the tenant using the invitation API, this property represents the invited user's invitation status. For invited users, the state can be PendingAcceptance or Accepted, or null for all other users. Supports $filter (eq, ne, NOT , in). - - `[ExternalUserStateChangeDateTime ]`: Shows the timestamp for the latest change to the externalUserState property. Supports $filter (eq, ne, NOT , in). - - `[FaxNumber ]`: The fax number of the user. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[GivenName ]`: The given name (first name) of the user. Maximum length is 64 characters. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[Identity ]`: Represents the identities that can be used to sign in to this user account. An identity can be provided by Microsoft (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and tied to a user account. May contain multiple items with the same signInType value. Supports $filter (eq) only where the signInType is not userPrincipalName. - - `[IsResourceAccount ]`: Do not use – reserved for future use. - - `[JobTitle ]`: The user's job title. Maximum length is 128 characters. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[Mail ]`: The SMTP address for the user, for example, admin@contoso.com. Changes to this property will also update the user's proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter (eq, ne, NOT, ge, le, in, startsWith, endsWith). - - `[MailNickname ]`: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Manager ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[OfficeLocation ]`: The office location in the user's place of business. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[OnPremisesImmutableId ]`: This property is used to associate an on-premises Active Directory user account to their Azure AD user object. This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user's userPrincipalName (UPN) property. NOTE: The $ and _ characters cannot be used when specifying this property. Returned only on $select. Supports $filter (eq, ne, NOT, ge, le, in).. - - `[OnPremisesLastSyncDateTime ]`: The last time at which the object was synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z Read-only. Supports $filter (eq, ne, not, ge, le, in). - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Read-only. Supports $filter (eq, ne, not, in, and eq on null values). - - `[OperatingSystem ]`: Operating system of the device. Windows, iOS, etc. This property is read-only. - - `[OperatingSystemVersion ]`: Operating system version of the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). - - `[OtherMail ]`: A list of additional email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com'].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Supports $filter (eq, NOT, ge, le, in, startsWith). - - `[PasswordPolicy ]`: Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two may be specified together; for example: DisablePasswordExpiration, DisableStrongPassword.Supports $filter (ne, NOT). - - `[PasswordProfile ]`: passwordProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ForceChangePasswordNextSignIn ]`: true if the user must change her password on the next login; otherwise false. If not set, default is false. NOTE: For Azure B2C tenants, set to false and instead use custom policies and user flows to force password reset at first sign in. See Force password reset at first logon. - - `[ForceChangePasswordNextSignInWithMfa ]`: If true, at next sign-in, the user must perform a multi-factor authentication (MFA) before being forced to change their password. The behavior is identical to forceChangePasswordNextSignIn except that the user is required to first perform a multi-factor authentication before password change. After a password change, this property will be automatically reset to false. If not set, default is false. - - `[Password ]`: The password for the user. This property is required when a user is created. It can be updated, but the user will be required to change the password on the next login. The password must satisfy minimum requirements as specified by the user’s passwordPolicies property. By default, a strong password is required. - - `[PhysicalId ]`: For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith). - - `[PostalCode ]`: The postal code for the user's postal address. The postal code is specific to the user's country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[PreferredLanguage ]`: The preferred language for the user. Should follow ISO 639-1 Code; for example en-US. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[ShowInAddressList ]`: true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Supports $filter (eq, ne, NOT, in). - - `[State ]`: The state or province in the user's address. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[StreetAddress ]`: The street address of the user's place of business. Maximum length is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Surname ]`: The user's surname (family name or last name). Maximum length is 64 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[TrustType ]`: Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory - - `[UsageLocation ]`: A two letter country code (ISO standard 3166). Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[UserPrincipalName ]`: The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user's email name. The general format is alias@domain, where domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Supports $filter (eq, ne, NOT, ge, le, in, startsWith, endsWith) and $orderBy. - - `[UserType ]`: A string value that can be used to classify user types in your directory, such as Member and Guest. Supports $filter (eq, ne, NOT, in,). - - `[OfficeLocation ]`: The office location in the user's place of business. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[OnPremisesImmutableId ]`: This property is used to associate an on-premises Active Directory user account to their Azure AD user object. This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user's userPrincipalName (UPN) property. NOTE: The $ and _ characters cannot be used when specifying this property. Returned only on $select. Supports $filter (eq, ne, NOT, ge, le, in).. - - `[OnPremisesLastSyncDateTime ]`: The last time at which the object was synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z Read-only. Supports $filter (eq, ne, not, ge, le, in). - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Read-only. Supports $filter (eq, ne, not, in, and eq on null values). - - `[OperatingSystem ]`: Operating system of the device. Windows, iOS, etc. This property is read-only. - - `[OperatingSystemVersion ]`: Operating system version of the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). - - `[OtherMail ]`: A list of additional email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com'].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Supports $filter (eq, NOT, ge, le, in, startsWith). - - `[PasswordPolicy ]`: Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two may be specified together; for example: DisablePasswordExpiration, DisableStrongPassword.Supports $filter (ne, NOT). - - `[PasswordProfile ]`: passwordProfile - - `[PhysicalId ]`: For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith). - - `[PostalCode ]`: The postal code for the user's postal address. The postal code is specific to the user's country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[PreferredLanguage ]`: The preferred language for the user. Should follow ISO 639-1 Code; for example en-US. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[ShowInAddressList ]`: true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Supports $filter (eq, ne, NOT, in). - - `[State ]`: The state or province in the user's address. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[StreetAddress ]`: The street address of the user's place of business. Maximum length is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Surname ]`: The user's surname (family name or last name). Maximum length is 64 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[TrustType ]`: Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory - - `[UsageLocation ]`: A two letter country code (ISO standard 3166). Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[UserPrincipalName ]`: The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user's email name. The general format is alias@domain, where domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Supports $filter (eq, ne, NOT, ge, le, in, startsWith, endsWith) and $orderBy. - - `[UserType ]`: A string value that can be used to classify user types in your directory, such as Member and Guest. Supports $filter (eq, ne, NOT, in,). - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Update-AzADAppFederatedCredential.md b/src/Resources/MSGraph.Autorest/docs/Update-AzADAppFederatedCredential.md index b69fa1165135..ffb9333d6b82 100644 --- a/src/Resources/MSGraph.Autorest/docs/Update-AzADAppFederatedCredential.md +++ b/src/Resources/MSGraph.Autorest/docs/Update-AzADAppFederatedCredential.md @@ -8,18 +8,31 @@ schema: 2.0.0 # Update-AzADAppFederatedCredential ## SYNOPSIS -Update the navigation property federatedIdentityCredentials in applications +update the navigation property federatedIdentityCredentials in applications ## SYNTAX +### UpdateExpanded (Default) ``` Update-AzADAppFederatedCredential -ApplicationObjectId -FederatedCredentialId [-AdditionalProperties ] [-Audience ] [-Description ] [-Issuer ] [-Subject ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] ``` +### UpdateViaJsonFilePath +``` +Update-AzADAppFederatedCredential -ApplicationObjectId -FederatedCredentialId + -JsonFilePath [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaJsonString +``` +Update-AzADAppFederatedCredential -ApplicationObjectId -FederatedCredentialId + -JsonString [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Update the navigation property federatedIdentityCredentials in applications +update the navigation property federatedIdentityCredentials in applications ## EXAMPLES @@ -37,7 +50,7 @@ Additional Parameters ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -71,7 +84,7 @@ Required. ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -82,7 +95,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 @@ -102,7 +116,7 @@ Optional. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -134,7 +148,7 @@ Required. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -144,6 +158,36 @@ Accept pipeline input: False 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 +``` + ### -PassThru Returns true when the command succeeds @@ -169,7 +213,7 @@ Supports $filter (eq). ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -221,7 +265,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Update-AzADApplication.md b/src/Resources/MSGraph.Autorest/docs/Update-AzADApplication.md index ca0a4899030e..9e70331ce841 100644 --- a/src/Resources/MSGraph.Autorest/docs/Update-AzADApplication.md +++ b/src/Resources/MSGraph.Autorest/docs/Update-AzADApplication.md @@ -370,7 +370,6 @@ Accept wildcard characters: False ### -InputObject key: application object -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphApplication @@ -756,961 +755,5 @@ ALIASES Set-AzADApplication -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. - - -ADDIN : Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - -API : apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - -APPROLE : The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - -HOMEREALMDISCOVERYPOLICY : . - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[ServiceManagementReference ]`: References application or service contact information from a Service or Asset Management database. Nullable. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -INFO : informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - -INPUTOBJECT : key: application object - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[ServiceManagementReference ]`: References application or service contact information from a Service or Asset Management database. Nullable. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[ParentalControlSetting ]`: parentalControlSettings - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[PublicClient ]`: publicClientApplication - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ServiceManagementReference ]`: References application or service contact information from a Service or Asset Management database. Nullable. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - -OPTIONALCLAIM : optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - -PARENTALCONTROLSETTING : parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - -REQUIREDRESOURCEACCESS : Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - -TOKENISSUANCEPOLICY : . - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[ServiceManagementReference ]`: References application or service contact information from a Service or Asset Management database. Nullable. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -TOKENLIFETIMEPOLICY : The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[ServiceManagementReference ]`: References application or service contact information from a Service or Asset Management database. Nullable. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -WEB : webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Update-AzADGroup.md b/src/Resources/MSGraph.Autorest/docs/Update-AzADGroup.md index 6d75b5e66c16..cff86d69aaf5 100644 --- a/src/Resources/MSGraph.Autorest/docs/Update-AzADGroup.md +++ b/src/Resources/MSGraph.Autorest/docs/Update-AzADGroup.md @@ -8,10 +8,11 @@ schema: 2.0.0 # Update-AzADGroup ## SYNOPSIS -Update entity in groups +update entity in groups ## SYNTAX +### UpdateExpanded (Default) ``` Update-AzADGroup -ObjectId [-AdditionalProperties ] [-AppRoleAssignment ] [-Classification ] @@ -24,8 +25,20 @@ Update-AzADGroup -ObjectId [-AdditionalProperties ] [-Visibility ] [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] ``` +### UpdateViaJsonFilePath +``` +Update-AzADGroup -ObjectId -JsonFilePath [-DefaultProfile ] [-PassThru] [-Confirm] + [-WhatIf] [] +``` + +### UpdateViaJsonString +``` +Update-AzADGroup -ObjectId -JsonString [-DefaultProfile ] [-PassThru] [-Confirm] + [-WhatIf] [] +``` + ## DESCRIPTION -Update entity in groups +update entity in groups ## EXAMPLES @@ -43,7 +56,7 @@ Additional Parameters ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -56,11 +69,10 @@ Accept wildcard characters: False ### -AppRoleAssignment Represents the app roles a group has been granted for an application. Supports $expand. -To construct, see NOTES section for APPROLEASSIGNMENT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphAppRoleAssignmentAutoGenerated[] -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -77,7 +89,7 @@ Supports $filter (eq, ne, NOT, ge, le, startsWith). ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -90,11 +102,10 @@ Accept wildcard characters: False ### -CreatedOnBehalfOf Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. -To construct, see NOTES section for CREATEDONBEHALFOF properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphDirectoryObject -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -105,7 +116,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 @@ -124,7 +136,7 @@ Accept wildcard characters: False ```yaml Type: System.DateTime -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -141,7 +153,7 @@ Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -156,7 +168,7 @@ The name displayed in directory ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -175,7 +187,7 @@ Supports $filter (eq, NOT). ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -193,7 +205,7 @@ Supports $filter (eq). ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -208,7 +220,7 @@ Accept wildcard characters: False ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -228,7 +240,7 @@ Supports $filter (eq, ne, NOT). ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -238,6 +250,36 @@ Accept pipeline input: False 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 +``` + ### -MailEnabled Specifies whether the group is mail-enabled. Returned by default. @@ -245,7 +287,7 @@ Supports $filter (eq, ne, NOT). ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -264,7 +306,7 @@ Supports $filter (eq, ne, NOT, ge, le, in, startsWith). ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -282,7 +324,7 @@ Supports $filter (eq, ne, NOT, ge, le, startsWith). ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -300,7 +342,7 @@ Supports $filter (eq, ne, NOT, in). ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -343,11 +385,10 @@ Accept wildcard characters: False ### -PermissionGrant The permissions that have been granted for a group to a specific application. Supports $expand. -To construct, see NOTES section for PERMISSIONGRANT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphResourceSpecificPermissionGrant[] -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -364,7 +405,7 @@ Returned by default. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -382,7 +423,7 @@ Supports $filter (eq, ne, NOT, ge, le, in, startsWith). ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -399,7 +440,7 @@ Supports $filter (eq, ne, NOT, in). ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -415,7 +456,7 @@ Returned by default. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -432,7 +473,7 @@ Returned by default. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -454,7 +495,7 @@ Returned by default. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded Aliases: Required: False @@ -506,36 +547,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -APPROLEASSIGNMENT : Represents the app roles a group has been granted for an application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[CreatedDateTime ]`: The time when the app role assignment was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[PrincipalDisplayName ]`: The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith). - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[PrincipalType ]`: The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - -CREATEDONBEHALFOF : Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -PERMISSIONGRANT : The permissions that have been granted for a group to a specific application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[ClientAppId ]`: ID of the service principal of the Azure AD app that has been granted access. Read-only. - - `[ClientId ]`: ID of the Azure AD app that has been granted access. Read-only. - - `[Permission ]`: The name of the resource-specific permission. Read-only. - - `[PermissionType ]`: The type of permission. Possible values are: Application, Delegated. Read-only. - - `[ResourceAppId ]`: ID of the Azure AD app that is hosting the resource. Read-only. - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Update-AzADServicePrincipal.md b/src/Resources/MSGraph.Autorest/docs/Update-AzADServicePrincipal.md index a06211367181..2b45585ca1ba 100644 --- a/src/Resources/MSGraph.Autorest/docs/Update-AzADServicePrincipal.md +++ b/src/Resources/MSGraph.Autorest/docs/Update-AzADServicePrincipal.md @@ -496,7 +496,6 @@ Accept wildcard characters: False ### -InputObject service principal object -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphServicePrincipal @@ -515,7 +514,6 @@ The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). To construct, see NOTES section for KEYCREDENTIALS properties and create a hash table. -To construct, see NOTES section for KEYCREDENTIAL properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphKeyCredential[] @@ -646,7 +644,6 @@ Accept wildcard characters: False The collection of password credentials associated with the application. Not nullable. To construct, see NOTES section for PASSWORDCREDENTIALS properties and create a hash table. -To construct, see NOTES section for PASSWORDCREDENTIAL properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphPasswordCredential[] @@ -896,1209 +893,5 @@ ALIASES Set-AzADServicePrincipal -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. - - -ADDIN : Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - -APPROLE : The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - -APPROLEASSIGNEDTO : App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - -APPROLEASSIGNMENT : App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - -CLAIMSMAPPINGPOLICY : The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -DELEGATEDPERMISSIONCLASSIFICATION : The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - -ENDPOINT : Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -HOMEREALMDISCOVERYPOLICY : The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -INFO : informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - -INPUTOBJECT : service principal object - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AccountEnabled ]`: true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, NOT, in). - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[AlternativeName ]`: Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, NOT, ge, le, startsWith). - - `[AppDescription ]`: The description exposed by the associated application. - - `[AppDisplayName ]`: The display name exposed by the associated application. - - `[AppId ]`: The unique identifier for the associated application (its appId property). - - `[AppOwnerOrganizationId ]`: Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le). - - `[AppRole ]`: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[AppRoleAssignedTo ]`: App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[AppRoleAssignmentRequired ]`: Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). - - `[ClaimsMappingPolicy ]`: The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[DelegatedPermissionClassification ]`: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - - `[Description ]`: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[Endpoint ]`: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[FederatedIdentityCredentials ]`: - - `[HomeRealmDiscoveryPolicy ]`: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[Homepage ]`: Home page or landing page of the application. - - `[Info ]`: informationalUrl - - `[KeyCredentials ]`: The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[LoginUrl ]`: Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols. - - `[Note ]`: Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters. - - `[NotificationEmailAddress ]`: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. - - `[Oauth2PermissionScope ]`: The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[PasswordCredentials ]`: The collection of password credentials associated with the service principal. Not nullable. - - `[PreferredSingleSignOnMode ]`: Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc. - - `[PreferredTokenSigningKeyThumbprint ]`: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. - - `[ReplyUrl ]`: The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. - - `[SamlSingleSignOnSetting ]`: samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - - `[ServicePrincipalName ]`: Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[ServicePrincipalType ]`: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. - - `[Tag ]`: Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[TransitiveMemberOf ]`: - -KEYCREDENTIAL : The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). To construct, see NOTES section for KEYCREDENTIALS properties and create a hash table. - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - -OAUTH2PERMISSIONSCOPE : The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - -PASSWORDCREDENTIAL : The collection of password credentials associated with the application. Not nullable. To construct, see NOTES section for PASSWORDCREDENTIALS properties and create a hash table. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - -SAMLSINGLESIGNONSETTING : samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - -TOKENISSUANCEPOLICY : The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -TOKENLIFETIMEPOLICY : The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - -TRANSITIVEMEMBEROF : . - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Update-AzADServicePrincipalAppRoleAssignment.md b/src/Resources/MSGraph.Autorest/docs/Update-AzADServicePrincipalAppRoleAssignment.md index 7ad7e2e1d167..f9dceaa8a946 100644 --- a/src/Resources/MSGraph.Autorest/docs/Update-AzADServicePrincipalAppRoleAssignment.md +++ b/src/Resources/MSGraph.Autorest/docs/Update-AzADServicePrincipalAppRoleAssignment.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzADServicePrincipalAppRoleAssignment ## SYNOPSIS -Update the navigation property appRoleAssignments in servicePrincipals +update the navigation property appRoleAssignments in servicePrincipals ## SYNTAX @@ -26,8 +26,20 @@ Update-AzADServicePrincipalAppRoleAssignment -AppRoleAssignmentId -Serv [] ``` +### UpdateViaJsonFilePath +``` +Update-AzADServicePrincipalAppRoleAssignment -AppRoleAssignmentId -ServicePrincipalId + -JsonFilePath [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaJsonString +``` +Update-AzADServicePrincipalAppRoleAssignment -AppRoleAssignmentId -ServicePrincipalId + -JsonString [-DefaultProfile ] [-PassThru] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Update the navigation property appRoleAssignments in servicePrincipals +update the navigation property appRoleAssignments in servicePrincipals ## EXAMPLES @@ -91,7 +103,6 @@ Accept wildcard characters: False ### -Body Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. -To construct, see NOTES section for BODY properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphAppRoleAssignment @@ -106,7 +117,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 @@ -120,6 +132,36 @@ Accept pipeline input: False 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 +``` + ### -PassThru Returns true when the command succeeds @@ -194,21 +236,5 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES -ALIASES - -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. - - -BODY : Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/docs/Update-AzADUser.md b/src/Resources/MSGraph.Autorest/docs/Update-AzADUser.md index 094584d4d0c0..381c4c13abe3 100644 --- a/src/Resources/MSGraph.Autorest/docs/Update-AzADUser.md +++ b/src/Resources/MSGraph.Autorest/docs/Update-AzADUser.md @@ -423,7 +423,6 @@ Accept wildcard characters: False ### -InputObject user input object -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphUser @@ -438,7 +437,7 @@ Accept wildcard characters: False ``` ### -IsResourceAccount -Do not use – reserved for future use. +Do not use - reserved for future use. ```yaml Type: System.Management.Automation.SwitchParameter @@ -866,436 +865,5 @@ ALIASES Set-AzADUser -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. - - -IDENTITY : Represents the identities that can be used to sign in to this user account. An identity can be provided by Microsoft (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and tied to a user account. May contain multiple items with the same signInType value. Supports $filter (eq) only where the signInType is not userPrincipalName. - - `[Issuer ]`: Specifies the issuer of the identity, for example facebook.com.For local accounts (where signInType is not federated), this property is the local B2C tenant default domain name, for example contoso.onmicrosoft.com.For external users from other Azure AD organization, this will be the domain of the federated organization, for example contoso.com.Supports $filter. 512 character limit. - - `[IssuerAssignedId ]`: Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit. - - `[SignInType ]`: Specifies the user sign-in types in your directory, such as emailAddress, userName or federated. Here, federated represents a unique identifier for a user from an issuer, that can be in any format chosen by the issuer. Additional validation is enforced on issuerAssignedId when the sign-in type is set to emailAddress or userName. This property can also be set to any custom string. - -INPUTOBJECT : user input object - - `[(Any) ]`: This indicates any property can be added to this object. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AccountEnabled ]`: true if the account is enabled; otherwise, false. This property is required when a user is created. Supports $filter (eq, ne, NOT, and in). - - `[AgeGroup ]`: Sets the age group of the user. Allowed values: null, minor, notAdult and adult. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, NOT, and in). - - `[ApproximateLastSignInDateTime ]`: The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Supports $filter (eq, ne, not, ge, le, and eq on null values) and $orderBy. - - `[City ]`: The city in which the user is located. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[CompanyName ]`: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[ComplianceExpirationDateTime ]`: The timestamp when the device is no longer deemed compliant. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[ConsentProvidedForMinor ]`: Sets whether consent has been obtained for minors. Allowed values: null, granted, denied and notRequired. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, NOT, and in). - - `[Country ]`: The country/region in which the user is located; for example, US or UK. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Department ]`: The name for the department in which the user works. Maximum length is 64 characters.Supports $filter (eq, ne, NOT , ge, le, and in operators). - - `[DeviceVersion ]`: For internal use only. - - `[EmployeeHireDate ]`: The date and time when the user was hired or will start work in case of a future hire. Supports $filter (eq, ne, NOT , ge, le, in). - - `[EmployeeId ]`: The employee identifier assigned to the user by the organization. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[EmployeeOrgData ]`: employeeOrgData - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CostCenter ]`: The cost center associated with the user. Returned only on $select. Supports $filter. - - `[Division ]`: The name of the division in which the user works. Returned only on $select. Supports $filter. - - `[EmployeeType ]`: Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[ExternalUserState ]`: For an external user invited to the tenant using the invitation API, this property represents the invited user's invitation status. For invited users, the state can be PendingAcceptance or Accepted, or null for all other users. Supports $filter (eq, ne, NOT , in). - - `[ExternalUserStateChangeDateTime ]`: Shows the timestamp for the latest change to the externalUserState property. Supports $filter (eq, ne, NOT , in). - - `[FaxNumber ]`: The fax number of the user. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[GivenName ]`: The given name (first name) of the user. Maximum length is 64 characters. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[Identity ]`: Represents the identities that can be used to sign in to this user account. An identity can be provided by Microsoft (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and tied to a user account. May contain multiple items with the same signInType value. Supports $filter (eq) only where the signInType is not userPrincipalName. - - `[Issuer ]`: Specifies the issuer of the identity, for example facebook.com.For local accounts (where signInType is not federated), this property is the local B2C tenant default domain name, for example contoso.onmicrosoft.com.For external users from other Azure AD organization, this will be the domain of the federated organization, for example contoso.com.Supports $filter. 512 character limit. - - `[IssuerAssignedId ]`: Specifies the unique identifier assigned to the user by the issuer. The combination of issuer and issuerAssignedId must be unique within the organization. Represents the sign-in name for the user, when signInType is set to emailAddress or userName (also known as local accounts).When signInType is set to: emailAddress, (or a custom string that starts with emailAddress like emailAddress1) issuerAssignedId must be a valid email addressuserName, issuerAssignedId must be a valid local part of an email addressSupports $filter. 100 character limit. - - `[SignInType ]`: Specifies the user sign-in types in your directory, such as emailAddress, userName or federated. Here, federated represents a unique identifier for a user from an issuer, that can be in any format chosen by the issuer. Additional validation is enforced on issuerAssignedId when the sign-in type is set to emailAddress or userName. This property can also be set to any custom string. - - `[IsResourceAccount ]`: Do not use – reserved for future use. - - `[JobTitle ]`: The user's job title. Maximum length is 128 characters. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[Mail ]`: The SMTP address for the user, for example, admin@contoso.com. Changes to this property will also update the user's proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter (eq, ne, NOT, ge, le, in, startsWith, endsWith). - - `[MailNickname ]`: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Manager ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AssignedPlan ]`: The collection of service plans associated with the tenant. Not nullable. - - `[AssignedDateTime ]`: The date and time at which the plan was assigned. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. - - `[CapabilityStatus ]`: Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut. See a detailed description of each value. - - `[Service ]`: The name of the service; for example, exchange. - - `[ServicePlanId ]`: A GUID that identifies the service plan. For a complete list of GUIDs and their equivalent friendly service names, see Product names and service plan identifiers for licensing. - - `[Branding ]`: organizationalBranding - - `[(Any) ]`: This indicates any property can be added to this object. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[Localization ]`: Add different branding based on a locale. - - `[BackgroundColor ]`: Color that will appear in place of the background image in low-bandwidth connections. We recommend that you use the primary color of your banner logo or your organization color. Specify this in hexadecimal format, for example, white is #FFFFFF. - - `[BackgroundImage ]`: Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 × 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. - - `[BackgroundImageRelativeUrl ]`: A relative URL for the backgroundImage property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[BannerLogo ]`: A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG no larger than 36 × 245 pixels. We recommend using a transparent image with no padding around the logo. - - `[BannerLogoRelativeUrl ]`: A relative url for the bannerLogo property that is combined with a CDN base URL from the cdnList to provide the read-only version served by a CDN. Read-only. - - `[CdnList ]`: A list of base URLs for all available CDN providers that are serving the assets of the current resource. Several CDN providers are used at the same time for high availability of read requests. Read-only. - - `[SignInPageText ]`: Text that appears at the bottom of the sign-in box. You can use this to communicate additional information, such as the phone number to your help desk or a legal statement. This text must be Unicode and not exceed 1024 characters. - - `[SquareLogo ]`: A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG no larger than 240 x 240 pixels and no more than 10 KB in size. We recommend using a transparent image with no padding around the logo. - - `[SquareLogoRelativeUrl ]`: A relative url for the squareLogo property that is combined with a CDN base URL from the cdnList to provide the version served by a CDN. Read-only. - - `[UsernameHintText ]`: String that shows as the hint in the username textbox on the sign-in screen. This text must be a Unicode, without links or code, and can't exceed 64 characters. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[BusinessPhone ]`: Telephone number for the organization. Although this is a string collection, only one number can be set for this property. - - `[CertificateBasedAuthConfiguration ]`: Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[CertificateAuthority ]`: Collection of certificate authorities which creates a trusted certificate chain. - - `[Certificate ]`: Required. The base64 encoded string representing the public certificate. - - `[CertificateRevocationListUrl ]`: The URL of the certificate revocation list. - - `[DeltaCertificateRevocationListUrl ]`: The URL contains the list of all revoked certificates since the last time a full certificate revocaton list was created. - - `[IsRootAuthority ]`: Required. true if the trusted certificate is a root authority, false if the trusted certificate is an intermediate authority. - - `[Issuer ]`: The issuer of the certificate, calculated from the certificate value. Read-only. - - `[IssuerSki ]`: The subject key identifier of the certificate, calculated from the certificate value. Read-only. - - `[City ]`: City name of the address for the organization. - - `[Country ]`: Country/region name of the address for the organization. - - `[CountryLetterCode ]`: Country or region abbreviation for the organization in ISO 3166-2 format. - - `[CreatedDateTime ]`: Timestamp of when the organization was created. The value cannot be modified and is automatically populated when the organization is created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[Extension ]`: The collection of open extensions defined for the organization. Read-only. Nullable. - - `[Id ]`: The unique idenfier for an entity. Read-only. - - `[MarketingNotificationEmail ]`: Not nullable. - - `[MobileDeviceManagementAuthority ]`: Mobile device management authority. - - `[OnPremisesLastSyncDateTime ]`: The time and date at which the tenant was last synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced. Nullable. null if this object has never been synced from an on-premises directory (default). - - `[PostalCode ]`: Postal code of the address for the organization. - - `[PreferredLanguage ]`: The preferred language for the organization. Should follow ISO 639-1 Code; for example, en. - - `[PrivacyProfile ]`: privacyProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ContactEmail ]`: A valid smtp email address for the privacy statement contact. Not required. - - `[StatementUrl ]`: A valid URL format that begins with http:// or https://. Maximum length is 255 characters. The URL that directs to the company's privacy statement. Not required. - - `[ProvisionedPlan ]`: Not nullable. - - `[CapabilityStatus ]`: For example, 'Enabled'. - - `[ProvisioningStatus ]`: For example, 'Success'. - - `[Service ]`: The name of the service; for example, 'AccessControlS2S' - - `[SecurityComplianceNotificationMail ]`: - - `[SecurityComplianceNotificationPhone ]`: - - `[State ]`: State name of the address for the organization. - - `[Street ]`: Street name of the address for organization. - - `[TechnicalNotificationMail ]`: Not nullable. - - `[TenantType ]`: - - `[VerifiedDomain ]`: The collection of domains associated with this tenant. Not nullable. - - `[Capability ]`: For example, Email, OfficeCommunicationsOnline. - - `[IsDefault ]`: true if this is the default domain associated with the tenant; otherwise, false. - - `[IsInitial ]`: true if this is the initial domain associated with the tenant; otherwise, false. - - `[Name ]`: The domain name; for example, contoso.onmicrosoft.com. - - `[Type ]`: For example, Managed. - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Office 365 call the application in the context of a document the user is working on. - - `[Id ]`: - - `[Property ]`: - - `[Key ]`: Key. - - `[Value ]`: Value. - - `[Type ]`: - - `[Api ]`: apiApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AcceptMappedClaim ]`: When true, allows an application to use claims mapping without specifying a custom signing key. - - `[KnownClientApplication ]`: Used for bundling consent if you have a solution that contains two parts: a client app and a custom web API app. If you set the appID of the client app to this value, the user only consents once to the client app. Azure AD knows that consenting to the client means implicitly consenting to the web API and automatically provisions service principals for both APIs at the same time. Both the client and the web API app must be registered in the same tenant. - - `[Oauth2PermissionScope ]`: The definition of the delegated permissions exposed by the web API represented by this application registration. These delegated permissions may be requested by a client application, and may be granted by users or administrators during consent. Delegated permissions are sometimes referred to as OAuth 2.0 scopes. - - `[AdminConsentDescription ]`: A description of the delegated permissions, intended to be read by an administrator granting the permission on behalf of all users. This text appears in tenant-wide admin consent experiences. - - `[AdminConsentDisplayName ]`: The permission's title, intended to be read by an administrator granting the permission on behalf of all users. - - `[Id ]`: Unique delegated permission identifier inside the collection of delegated permissions defined for a resource application. - - `[IsEnabled ]`: When creating or updating a permission, this property must be set to true (which is the default). To delete a permission, this property must first be set to false. At that point, in a subsequent call, the permission may be removed. - - `[Origin ]`: - - `[Type ]`: Specifies whether this delegated permission should be considered safe for non-admin users to consent to on behalf of themselves, or whether an administrator should be required for consent to the permissions. This will be the default behavior, but each customer can choose to customize the behavior in their organization (by allowing, restricting or limiting user consent to this delegated permission.) - - `[UserConsentDescription ]`: A description of the delegated permissions, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[UserConsentDisplayName ]`: A title for the permission, intended to be read by a user granting the permission on their own behalf. This text appears in consent experiences where the user is consenting only on behalf of themselves. - - `[Value ]`: Specifies the value to include in the scp (scope) claim in access tokens. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[PreAuthorizedApplication ]`: Lists the client applications that are pre-authorized with the specified delegated permissions to access this application's APIs. Users are not required to consent to any pre-authorized application (for the permissions specified). However, any additional permissions not listed in preAuthorizedApplications (requested through incremental consent for example) will require user consent. - - `[AppId ]`: The unique identifier for the application. - - `[DelegatedPermissionId ]`: The unique identifier for the oauth2PermissionScopes the application requires. - - `[RequestedAccessTokenVersion ]`: Specifies the access token version expected by this resource. This changes the version and format of the JWT produced independent of the endpoint or client used to request the access token. The endpoint used, v1.0 or v2.0, is chosen by the client and only impacts the version of id_tokens. Resources need to explicitly configure requestedAccessTokenVersion to indicate the supported access token format. Possible values for requestedAccessTokenVersion are 1, 2, or null. If the value is null, this defaults to 1, which corresponds to the v1.0 endpoint. If signInAudience on the application is configured as AzureADandPersonalMicrosoftAccount, the value for this property must be 2 - - `[AppRole ]`: The collection of roles assigned to the application. With app role assignments, these roles can be assigned to users, groups, or service principals associated with other applications. Not nullable. - - `[AllowedMemberType ]`: Specifies whether this app role can be assigned to users and groups (by setting to ['User']), to other application's (by setting to ['Application'], or both (by setting to ['User', 'Application']). App roles supporting assignment to other applications' service principals are also known as application permissions. The 'Application' value is only supported for app roles defined on application entities. - - `[Description ]`: The description for the app role. This is displayed when the app role is being assigned and, if the app role functions as an application permission, during consent experiences. - - `[DisplayName ]`: Display name for the permission that appears in the app role assignment and consent experiences. - - `[Id ]`: Unique role identifier inside the appRoles collection. When creating a new app role, a new Guid identifier must be provided. - - `[IsEnabled ]`: When creating or updating an app role, this must be set to true (which is the default). To delete a role, this must first be set to false. At that point, in a subsequent call, this role may be removed. - - `[Value ]`: Specifies the value to include in the roles claim in ID tokens and access tokens authenticating an assigned user or service principal. Must not exceed 120 characters in length. Allowed characters are : ! # $ % & ' ( ) * + , - . / : ; = ? @ [ ] ^ + _ { } ~, as well as characters in the ranges 0-9, A-Z and a-z. Any other character, including the space character, are not allowed. May not begin with .. - - `[ApplicationTemplateId ]`: Unique identifier of the applicationTemplate. - - `[CreatedOnBehalfOfDeletedDateTime ]`: - - `[CreatedOnBehalfOfDisplayName ]`: The name displayed in directory - - `[Description ]`: An optional description of the application. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[FederatedIdentityCredentials ]`: Federated identities for applications. Supports $expand and $filter (eq when counting empty collections). - - `[Audience ]`: Lists the audiences that can appear in the external token. This field is mandatory, and defaults to 'api://AzureADTokenExchange'. It says what Microsoft identity platform should accept in the aud claim in the incoming token. This value represents Azure AD in your external identity provider and has no fixed value across identity providers - you may need to create a new application registration in your identity provider to serve as the audience of this token. Required. - - `[Description ]`: The un-validated, user-provided description of the federated identity credential. Optional. - - `[Issuer ]`: The URL of the external identity provider and must match the issuer claim of the external token being exchanged. The combination of the values of issuer and subject must be unique on the app. Required. - - `[Name ]`: is the unique identifier for the federated identity credential, which has a character limit of 120 characters and must be URL friendly. It is immutable once created. Required. Not nullable. Supports $filter (eq). - - `[Subject ]`: Required. The identifier of the external software workload within the external identity provider. Like the audience value, it has no fixed format, as each identity provider uses their own - sometimes a GUID, sometimes a colon delimited identifier, sometimes arbitrary strings. The value here must match the sub claim within the token presented to Azure AD. The combination of issuer and subject must be unique on the app. Supports $filter (eq). - - `[GroupMembershipClaim ]`: Configures the groups claim issued in a user or OAuth 2.0 access token that the application expects. To set this attribute, use one of the following string values: None, SecurityGroup (for security groups and Azure AD roles), All (this gets all security groups, distribution groups, and Azure AD directory roles that the signed-in user is a member of). - - `[HomeRealmDiscoveryPolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[IdentifierUri ]`: The URIs that identify the application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant. For more information, see Application Objects and Service Principal Objects. The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). - - `[Info ]`: informationalUrl - - `[(Any) ]`: This indicates any property can be added to this object. - - `[MarketingUrl ]`: Link to the application's marketing page. For example, https://www.contoso.com/app/marketing - - `[PrivacyStatementUrl ]`: Link to the application's privacy statement. For example, https://www.contoso.com/app/privacy - - `[SupportUrl ]`: Link to the application's support page. For example, https://www.contoso.com/app/support - - `[TermsOfServiceUrl ]`: Link to the application's terms of service statement. For example, https://www.contoso.com/app/termsofservice - - `[IsDeviceOnlyAuthSupported ]`: Specifies whether this application supports device authentication without a user. The default is false. - - `[IsFallbackPublicClient ]`: Specifies the fallback application type as public client, such as an installed application running on a mobile device. The default value is false which means the fallback application type is confidential client such as a web app. There are certain scenarios where Azure AD cannot determine the client application type. For example, the ROPC flow where the application is configured without specifying a redirect URI. In those cases Azure AD interprets the application type based on the value of this property. - - `[KeyCredentials ]`: The collection of key credentials associated with the application. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[CustomKeyIdentifier ]`: Custom key identifier - - `[DisplayName ]`: Friendly name for the key. Optional. - - `[EndDateTime ]`: The date and time at which the credential expires.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Key ]`: Value for the key credential. Should be a base 64 encoded value. - - `[KeyId ]`: The unique identifier (GUID) for the key. - - `[StartDateTime ]`: The date and time at which the credential becomes valid.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z - - `[Type ]`: The type of key credential; for example, 'Symmetric'. - - `[Usage ]`: A string that describes the purpose for which the key can be used; for example, 'Verify'. - - `[Logo ]`: The main logo for the application. Not nullable. - - `[Note ]`: Notes relevant for the management of the application. - - `[Oauth2RequirePostResponse ]`: - - `[OptionalClaim ]`: optionalClaims - - `[(Any) ]`: This indicates any property can be added to this object. - - `[AccessToken ]`: The optional claims returned in the JWT access token. - - `[AdditionalProperty ]`: Additional properties of the claim. If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - - `[Essential ]`: If the value is true, the claim specified by the client is necessary to ensure a smooth authorization experience for the specific task requested by the end user. The default value is false. - - `[Name ]`: The name of the optional claim. - - `[Source ]`: The source (directory object) of the claim. There are predefined claims and user-defined claims from extension properties. If the source value is null, the claim is a predefined optional claim. If the source value is user, the value in the name property is the extension property from the user object. - - `[IdToken ]`: The optional claims returned in the JWT ID token. - - `[Saml2Token ]`: The optional claims returned in the SAML token. - - `[ParentalControlSetting ]`: parentalControlSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[CountriesBlockedForMinor ]`: Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list. - - `[LegalAgeGroupRule ]`: Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app. - - `[PasswordCredentials ]`: The collection of password credentials associated with the application. Not nullable. - - `[CustomKeyIdentifier ]`: Do not use. - - `[DisplayName ]`: Friendly name for the password. Optional. - - `[EndDateTime ]`: The date and time at which the password expires represented using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[KeyId ]`: The unique identifier for the password. - - `[StartDateTime ]`: The date and time at which the password becomes valid. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Optional. - - `[PublicClient ]`: publicClientApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[RequiredResourceAccess ]`: Specifies the resources that the application needs to access. This property also specifies the set of OAuth permission scopes and application roles that it needs for each of those resources. This configuration of access to the required resources drives the consent experience. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[ResourceAccess ]`: The list of OAuth2.0 permission scopes and app roles that the application requires from the specified resource. - - `[Id ]`: The unique identifier for one of the oauth2PermissionScopes or appRole instances that the resource application exposes. - - `[Type ]`: Specifies whether the id property references an oauth2PermissionScopes or an appRole. Possible values are Scope or Role. - - `[ResourceAppId ]`: The unique identifier for the resource that the application requires access to. This should be equal to the appId declared on the target resource application. - - `[SignInAudience ]`: Specifies the Microsoft accounts that are supported for the current application. Supported values are: AzureADMyOrg, AzureADMultipleOrgs, AzureADandPersonalMicrosoftAccount, PersonalMicrosoftAccount. See more in the table below. Supports $filter (eq, ne, NOT). - - `[Spa ]`: spaApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[Tag ]`: Custom strings that can be used to categorize and identify the application. Not nullable.Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD encrypts all the tokens it emits by using the key this property points to. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this application. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[Web ]`: webApplication - - `[(Any) ]`: This indicates any property can be added to this object. - - `[HomePageUrl ]`: Home page or landing page of the application. - - `[ImplicitGrantSetting ]`: implicitGrantSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[EnableAccessTokenIssuance ]`: Specifies whether this web application can request an access token using the OAuth 2.0 implicit flow. - - `[EnableIdTokenIssuance ]`: Specifies whether this web application can request an ID token using the OAuth 2.0 implicit flow. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols. - - `[RedirectUri ]`: Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent. - - `[DataType ]`: Specifies the data type of the value the extension property can hold. Following values are supported. Not nullable. Binary - 256 bytes maximumBooleanDateTime - Must be specified in ISO 8601 format. Will be stored in UTC.Integer - 32-bit value.LargeInteger - 64-bit value.String - 256 characters maximum - - `[Name ]`: Name of the extension property. Not nullable. - - `[TargetObject ]`: Following values are supported. Not nullable. UserGroupOrganizationDeviceApplication - - `[Description ]`: Description for this policy. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[AccountEnabled ]`: true if the service principal account is enabled; otherwise, false. Supports $filter (eq, ne, NOT, in). - - `[AddIn ]`: Defines custom behavior that a consuming service can use to call an app in specific contexts. For example, applications that can render file streams may set the addIns property for its 'FileHandler' functionality. This will let services like Microsoft 365 call the application in the context of a document the user is working on. - - `[AlternativeName ]`: Used to retrieve service principals by subscription, identify resource group and full resource ids for managed identities. Supports $filter (eq, NOT, ge, le, startsWith). - - `[AppDescription ]`: The description exposed by the associated application. - - `[AppDisplayName ]`: The display name exposed by the associated application. - - `[AppId ]`: The unique identifier for the associated application (its appId property). - - `[AppOwnerOrganizationId ]`: Contains the tenant id where the application is registered. This is applicable only to service principals backed by applications.Supports $filter (eq, ne, NOT, ge, le). - - `[AppRole ]`: The roles exposed by the application which this service principal represents. For more information see the appRoles property definition on the application entity. Not nullable. - - `[AppRoleAssignedTo ]`: App role assignments for this app or service, granted to users, groups, and other service principals.Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: App role assignment for another app or service, granted to this service principal. Supports $expand. - - `[AppRoleAssignmentRequired ]`: Specifies whether users or other service principals need to be granted an app role assignment for this service principal before users can sign in or apps can get tokens. The default value is false. Not nullable. Supports $filter (eq, ne, NOT). - - `[ClaimsMappingPolicy ]`: The claimsMappingPolicies assigned to this service principal. Supports $expand. - - `[AppliesTo ]`: - - `[Definition ]`: A string collection containing a JSON string that defines the rules and settings for a policy. The syntax for the definition differs for each derived policy type. Required. - - `[IsOrganizationDefault ]`: If set to true, activates this policy. There can be many policies for the same policy type, but only one can be activated as the organization default. Optional, default value is false. - - `[Description ]`: Description for this policy. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[DelegatedPermissionClassification ]`: The permission classifications for delegated permissions exposed by the app that this service principal represents. Supports $expand. - - `[Classification ]`: permissionClassificationType - - `[PermissionId ]`: The unique identifier (id) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Required on create. Does not support $filter. - - `[PermissionName ]`: The claim value (value) for the delegated permission listed in the publishedPermissionScopes collection of the servicePrincipal. Does not support $filter. - - `[Description ]`: Free text field to provide an internal end-user facing description of the service principal. End-user portals such MyApps will display the application description in this field. The maximum allowed size is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[DisabledByMicrosoftStatus ]`: Specifies whether Microsoft has disabled the registered application. Possible values are: null (default value), NotDisabled, and DisabledDueToViolationOfServicesAgreement (reasons may include suspicious, abusive, or malicious activity, or a violation of the Microsoft Services Agreement). Supports $filter (eq, ne, NOT). - - `[Endpoint ]`: Endpoints available for discovery. Services like Sharepoint populate this property with a tenant specific SharePoint endpoints that other applications can discover and use in their experiences. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[FederatedIdentityCredentials ]`: - - `[HomeRealmDiscoveryPolicy ]`: The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. - - `[Homepage ]`: Home page or landing page of the application. - - `[Info ]`: informationalUrl - - `[KeyCredentials ]`: The collection of key credentials associated with the service principal. Not nullable. Supports $filter (eq, NOT, ge, le). - - `[LoginUrl ]`: Specifies the URL where the service provider redirects the user to Azure AD to authenticate. Azure AD uses the URL to launch the application from Microsoft 365 or the Azure AD My Apps. When blank, Azure AD performs IdP-initiated sign-on for applications configured with SAML-based single sign-on. The user launches the application from Microsoft 365, the Azure AD My Apps, or the Azure AD SSO URL. - - `[LogoutUrl ]`: Specifies the URL that will be used by Microsoft's authorization service to logout an user using OpenId Connect front-channel, back-channel or SAML logout protocols. - - `[Note ]`: Free text field to capture information about the service principal, typically used for operational purposes. Maximum allowed size is 1024 characters. - - `[NotificationEmailAddress ]`: Specifies the list of email addresses where Azure AD sends a notification when the active certificate is near the expiration date. This is only for the certificates used to sign the SAML token issued for Azure AD Gallery applications. - - `[Oauth2PermissionScope ]`: The delegated permissions exposed by the application. For more information see the oauth2PermissionScopes property on the application entity's api property. Not nullable. - - `[PasswordCredentials ]`: The collection of password credentials associated with the service principal. Not nullable. - - `[PreferredSingleSignOnMode ]`: Specifies the single sign-on mode configured for this application. Azure AD uses the preferred single sign-on mode to launch the application from Microsoft 365 or the Azure AD My Apps. The supported values are password, saml, notSupported, and oidc. - - `[PreferredTokenSigningKeyThumbprint ]`: Reserved for internal use only. Do not write or otherwise rely on this property. May be removed in future versions. - - `[ReplyUrl ]`: The URLs that user tokens are sent to for sign in with the associated application, or the redirect URIs that OAuth 2.0 authorization codes and access tokens are sent to for the associated application. Not nullable. - - `[SamlSingleSignOnSetting ]`: samlSingleSignOnSettings - - `[(Any) ]`: This indicates any property can be added to this object. - - `[RelayState ]`: The relative URI the service provider would redirect to after completion of the single sign-on flow. - - `[ServicePrincipalName ]`: Contains the list of identifiersUris, copied over from the associated application. Additional values can be added to hybrid applications. These values can be used to identify the permissions exposed by this app within Azure AD. For example,Client apps can specify a resource URI which is based on the values of this property to acquire an access token, which is the URI returned in the 'aud' claim.The any operator is required for filter expressions on multi-valued properties. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[ServicePrincipalType ]`: Identifies if the service principal represents an application or a managed identity. This is set by Azure AD internally. For a service principal that represents an application this is set as Application. For a service principal that represent a managed identity this is set as ManagedIdentity. - - `[Tag ]`: Custom strings that can be used to categorize and identify the service principal. Not nullable. Supports $filter (eq, NOT, ge, le, startsWith). - - `[TokenEncryptionKeyId ]`: Specifies the keyId of a public key from the keyCredentials collection. When configured, Azure AD issues tokens for this application encrypted using the key specified by this property. The application code that receives the encrypted token must use the matching private key to decrypt the token before it can be used for the signed-in user. - - `[TokenIssuancePolicy ]`: The tokenIssuancePolicies assigned to this service principal. Supports $expand. - - `[TokenLifetimePolicy ]`: The tokenLifetimePolicies assigned to this service principal. Supports $expand. - - `[TransitiveMemberOf ]`: - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[CreatedDateTime ]`: The time when the app role assignment was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[PrincipalDisplayName ]`: The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith). - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[PrincipalType ]`: The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[AppRoleAssignment ]`: Represents the app roles a group has been granted for an application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[AppRoleId ]`: The identifier (id) for the app role which is assigned to the principal. This app role must be exposed in the appRoles property on the resource application's service principal (resourceId). If the resource application has not declared any app roles, a default app role ID of 00000000-0000-0000-0000-000000000000 can be specified to signal that the principal is assigned to the resource app without any specific app roles. Required on create. - - `[CreatedDateTime ]`: The time when the app role assignment was created.The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[PrincipalDisplayName ]`: The display name of the user, group, or service principal that was granted the app role assignment. Read-only. Supports $filter (eq and startswith). - - `[PrincipalId ]`: The unique identifier (id) for the user, group or service principal being granted the app role. Required on create. - - `[PrincipalType ]`: The type of the assigned principal. This can either be User, Group or ServicePrincipal. Read-only. - - `[ResourceDisplayName ]`: The display name of the resource app's service principal to which the assignment is made. - - `[ResourceId ]`: The unique identifier (id) for the resource service principal for which the assignment is made. Required on create. Supports $filter (eq only). - - `[Classification ]`: Describes a classification for the group (such as low, medium or high business impact). Valid values for this property are defined by creating a ClassificationList setting value, based on the template definition.Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[CreatedOnBehalfOf ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[Description ]`: An optional description for the group. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith) and $search. - - `[GroupType ]`: Specifies the group type and its membership. If the collection contains Unified, the group is a Microsoft 365 group; otherwise, it's either a security group or distribution group. For details, see groups overview.If the collection includes DynamicMembership, the group has dynamic membership; otherwise, membership is static. Returned by default. Supports $filter (eq, NOT). - - `[HasMembersWithLicenseError ]`: Indicates whether there are members in this group that have license errors from its group-based license assignment. This property is never returned on a GET operation. You can use it as a $filter argument to get groups that have members with license errors (that is, filter for this property being true). Supports $filter (eq). - - `[IsArchived ]`: - - `[IsAssignableToRole ]`: Indicates whether this group can be assigned to an Azure Active Directory role.This property can only be set while creating the group and is immutable. If set to true, the securityEnabled property must also be set to true and the group cannot be a dynamic group (that is, groupTypes cannot contain DynamicMembership). Only callers in Global administrator and Privileged role administrator roles can set this property. The caller must also be assigned the Directory.AccessAsUser.All permission to set this property. For more, see Using a group to manage Azure AD role assignmentsReturned by default. Supports $filter (eq, ne, NOT). - - `[MailEnabled ]`: Specifies whether the group is mail-enabled. Returned by default. Supports $filter (eq, ne, NOT). - - `[MailNickname ]`: The mail alias for the group, unique in the organization. This property must be specified when a group is created. These characters cannot be used in the mailNickName: @()/[]';:.<>,SPACE. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[MembershipRule ]`: The rule that determines members for this group if the group is a dynamic group (groupTypes contains DynamicMembership). For more information about the syntax of the membership rule, see Membership Rules syntax. Returned by default. Supports $filter (eq, ne, NOT, ge, le, startsWith). - - `[MembershipRuleProcessingState ]`: Indicates whether the dynamic membership processing is on or paused. Possible values are On or Paused. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[PermissionGrant ]`: The permissions that have been granted for a group to a specific application. Supports $expand. - - `[DeletedDateTime ]`: - - `[DisplayName ]`: The name displayed in directory - - `[ClientAppId ]`: ID of the service principal of the Azure AD app that has been granted access. Read-only. - - `[ClientId ]`: ID of the Azure AD app that has been granted access. Read-only. - - `[Permission ]`: The name of the resource-specific permission. Read-only. - - `[PermissionType ]`: The type of permission. Possible values are: Application, Delegated. Read-only. - - `[ResourceAppId ]`: ID of the Azure AD app that is hosting the resource. Read-only. - - `[PreferredDataLocation ]`: The preferred data location for the group. For more information, see OneDrive Online Multi-Geo. Returned by default. - - `[PreferredLanguage ]`: The preferred language for a Microsoft 365 group. Should follow ISO 639-1 Code; for example 'en-US'. Returned by default. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[SecurityEnabled ]`: Specifies whether the group is a security group. Returned by default. Supports $filter (eq, ne, NOT, in). - - `[SecurityIdentifier ]`: Security identifier of the group, used in Windows scenarios. Returned by default. - - `[Theme ]`: Specifies a Microsoft 365 group's color theme. Possible values are Teal, Purple, Green, Blue, Pink, Orange or Red. Returned by default. - - `[Visibility ]`: Specifies the group join policy and group content visibility for groups. Possible values are: Private, Public, or Hiddenmembership. Hiddenmembership can be set only for Microsoft 365 groups, when the groups are created. It can't be updated later. Other values of visibility can be updated after group creation. If visibility value is not specified during group creation on Microsoft Graph, a security group is created as Private by default and Microsoft 365 group is Public. See group visibility options to learn more. Returned by default. - - `[ClientAppId ]`: ID of the service principal of the Azure AD app that has been granted access. Read-only. - - `[ClientId ]`: ID of the Azure AD app that has been granted access. Read-only. - - `[Permission ]`: The name of the resource-specific permission. Read-only. - - `[PermissionType ]`: The type of permission. Possible values are: Application, Delegated. Read-only. - - `[ResourceAppId ]`: ID of the Azure AD app that is hosting the resource. Read-only. - - `[AccountEnabled ]`: true if the account is enabled; otherwise, false. This property is required when a user is created. Supports $filter (eq, ne, NOT, and in). - - `[AgeGroup ]`: Sets the age group of the user. Allowed values: null, minor, notAdult and adult. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, NOT, and in). - - `[ApproximateLastSignInDateTime ]`: The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. Supports $filter (eq, ne, not, ge, le, and eq on null values) and $orderBy. - - `[City ]`: The city in which the user is located. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[CompanyName ]`: The company name which the user is associated. This property can be useful for describing the company that an external user comes from. The maximum length of the company name is 64 characters.Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[ComplianceExpirationDateTime ]`: The timestamp when the device is no longer deemed compliant. The timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. - - `[ConsentProvidedForMinor ]`: Sets whether consent has been obtained for minors. Allowed values: null, granted, denied and notRequired. Refer to the legal age group property definitions for further information. Supports $filter (eq, ne, NOT, and in). - - `[Country ]`: The country/region in which the user is located; for example, US or UK. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Department ]`: The name for the department in which the user works. Maximum length is 64 characters.Supports $filter (eq, ne, NOT , ge, le, and in operators). - - `[DeviceVersion ]`: For internal use only. - - `[EmployeeHireDate ]`: The date and time when the user was hired or will start work in case of a future hire. Supports $filter (eq, ne, NOT , ge, le, in). - - `[EmployeeId ]`: The employee identifier assigned to the user by the organization. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[EmployeeOrgData ]`: employeeOrgData - - `[EmployeeType ]`: Captures enterprise worker type. For example, Employee, Contractor, Consultant, or Vendor. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[ExternalUserState ]`: For an external user invited to the tenant using the invitation API, this property represents the invited user's invitation status. For invited users, the state can be PendingAcceptance or Accepted, or null for all other users. Supports $filter (eq, ne, NOT , in). - - `[ExternalUserStateChangeDateTime ]`: Shows the timestamp for the latest change to the externalUserState property. Supports $filter (eq, ne, NOT , in). - - `[FaxNumber ]`: The fax number of the user. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[GivenName ]`: The given name (first name) of the user. Maximum length is 64 characters. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[Identity ]`: Represents the identities that can be used to sign in to this user account. An identity can be provided by Microsoft (also known as a local account), by organizations, or by social identity providers such as Facebook, Google, and Microsoft, and tied to a user account. May contain multiple items with the same signInType value. Supports $filter (eq) only where the signInType is not userPrincipalName. - - `[IsResourceAccount ]`: Do not use – reserved for future use. - - `[JobTitle ]`: The user's job title. Maximum length is 128 characters. Supports $filter (eq, ne, NOT , ge, le, in, startsWith). - - `[Mail ]`: The SMTP address for the user, for example, admin@contoso.com. Changes to this property will also update the user's proxyAddresses collection to include the value as an SMTP address. While this property can contain accent characters, using them can cause access issues with other Microsoft applications for the user. Supports $filter (eq, ne, NOT, ge, le, in, startsWith, endsWith). - - `[MailNickname ]`: The mail alias for the user. This property must be specified when a user is created. Maximum length is 64 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Manager ]`: Represents an Azure Active Directory object. The directoryObject type is the base type for many other directory entity types. - - `[OfficeLocation ]`: The office location in the user's place of business. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[OnPremisesImmutableId ]`: This property is used to associate an on-premises Active Directory user account to their Azure AD user object. This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user's userPrincipalName (UPN) property. NOTE: The $ and _ characters cannot be used when specifying this property. Returned only on $select. Supports $filter (eq, ne, NOT, ge, le, in).. - - `[OnPremisesLastSyncDateTime ]`: The last time at which the object was synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z Read-only. Supports $filter (eq, ne, not, ge, le, in). - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Read-only. Supports $filter (eq, ne, not, in, and eq on null values). - - `[OperatingSystem ]`: Operating system of the device. Windows, iOS, etc. This property is read-only. - - `[OperatingSystemVersion ]`: Operating system version of the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). - - `[OtherMail ]`: A list of additional email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com'].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Supports $filter (eq, NOT, ge, le, in, startsWith). - - `[PasswordPolicy ]`: Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two may be specified together; for example: DisablePasswordExpiration, DisableStrongPassword.Supports $filter (ne, NOT). - - `[PasswordProfile ]`: passwordProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ForceChangePasswordNextSignIn ]`: true if the user must change her password on the next login; otherwise false. If not set, default is false. NOTE: For Azure B2C tenants, set to false and instead use custom policies and user flows to force password reset at first sign in. See Force password reset at first logon. - - `[ForceChangePasswordNextSignInWithMfa ]`: If true, at next sign-in, the user must perform a multi-factor authentication (MFA) before being forced to change their password. The behavior is identical to forceChangePasswordNextSignIn except that the user is required to first perform a multi-factor authentication before password change. After a password change, this property will be automatically reset to false. If not set, default is false. - - `[Password ]`: The password for the user. This property is required when a user is created. It can be updated, but the user will be required to change the password on the next login. The password must satisfy minimum requirements as specified by the user’s passwordPolicies property. By default, a strong password is required. - - `[PhysicalId ]`: For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith). - - `[PostalCode ]`: The postal code for the user's postal address. The postal code is specific to the user's country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[PreferredLanguage ]`: The preferred language for the user. Should follow ISO 639-1 Code; for example en-US. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[ShowInAddressList ]`: true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Supports $filter (eq, ne, NOT, in). - - `[State ]`: The state or province in the user's address. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[StreetAddress ]`: The street address of the user's place of business. Maximum length is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Surname ]`: The user's surname (family name or last name). Maximum length is 64 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[TrustType ]`: Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory - - `[UsageLocation ]`: A two letter country code (ISO standard 3166). Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[UserPrincipalName ]`: The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user's email name. The general format is alias@domain, where domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Supports $filter (eq, ne, NOT, ge, le, in, startsWith, endsWith) and $orderBy. - - `[UserType ]`: A string value that can be used to classify user types in your directory, such as Member and Guest. Supports $filter (eq, ne, NOT, in,). - - `[OfficeLocation ]`: The office location in the user's place of business. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[OnPremisesImmutableId ]`: This property is used to associate an on-premises Active Directory user account to their Azure AD user object. This property must be specified when creating a new user account in the Graph if you are using a federated domain for the user's userPrincipalName (UPN) property. NOTE: The $ and _ characters cannot be used when specifying this property. Returned only on $select. Supports $filter (eq, ne, NOT, ge, le, in).. - - `[OnPremisesLastSyncDateTime ]`: The last time at which the object was synced with the on-premises directory. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z Read-only. Supports $filter (eq, ne, not, ge, le, in). - - `[OnPremisesSyncEnabled ]`: true if this object is synced from an on-premises directory; false if this object was originally synced from an on-premises directory but is no longer synced; null if this object has never been synced from an on-premises directory (default). Read-only. Supports $filter (eq, ne, not, in, and eq on null values). - - `[OperatingSystem ]`: Operating system of the device. Windows, iOS, etc. This property is read-only. - - `[OperatingSystemVersion ]`: Operating system version of the device. Required. Supports $filter (eq, ne, not, ge, le, startsWith, and eq on null values). - - `[OtherMail ]`: A list of additional email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com'].NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user.Supports $filter (eq, NOT, ge, le, in, startsWith). - - `[PasswordPolicy ]`: Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two may be specified together; for example: DisablePasswordExpiration, DisableStrongPassword.Supports $filter (ne, NOT). - - `[PasswordProfile ]`: passwordProfile - - `[PhysicalId ]`: For internal use only. Not nullable. Supports $filter (eq, not, ge, le, startsWith). - - `[PostalCode ]`: The postal code for the user's postal address. The postal code is specific to the user's country/region. In the United States of America, this attribute contains the ZIP code. Maximum length is 40 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[PreferredLanguage ]`: The preferred language for the user. Should follow ISO 639-1 Code; for example en-US. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[ShowInAddressList ]`: true if the Outlook global address list should contain this user, otherwise false. If not set, this will be treated as true. For users invited through the invitation manager, this property will be set to false. Supports $filter (eq, ne, NOT, in). - - `[State ]`: The state or province in the user's address. Maximum length is 128 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[StreetAddress ]`: The street address of the user's place of business. Maximum length is 1024 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[Surname ]`: The user's surname (family name or last name). Maximum length is 64 characters. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[TrustType ]`: Type of trust for the joined device. Read-only. Possible values: Workplace (indicates bring your own personal devices), AzureAd (Cloud only joined devices), ServerAd (on-premises domain joined devices joined to Azure AD). For more details, see Introduction to device management in Azure Active Directory - - `[UsageLocation ]`: A two letter country code (ISO standard 3166). Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. Examples include: US, JP, and GB. Not nullable. Supports $filter (eq, ne, NOT, ge, le, in, startsWith). - - `[UserPrincipalName ]`: The user principal name (UPN) of the user. The UPN is an Internet-style login name for the user based on the Internet standard RFC 822. By convention, this should map to the user's email name. The general format is alias@domain, where domain must be present in the tenant's collection of verified domains. This property is required when a user is created. The verified domains for the tenant can be accessed from the verifiedDomains property of organization.NOTE: While this property can contain accent characters, they can cause access issues to first-party applications for the user. Supports $filter (eq, ne, NOT, ge, le, in, startsWith, endsWith) and $orderBy. - - `[UserType ]`: A string value that can be used to classify user types in your directory, such as Member and Guest. Supports $filter (eq, ne, NOT, in,). - -PASSWORDPROFILE : passwordProfile - - `[(Any) ]`: This indicates any property can be added to this object. - - `[ForceChangePasswordNextSignIn ]`: true if the user must change her password on the next login; otherwise false. If not set, default is false. NOTE: For Azure B2C tenants, set to false and instead use custom policies and user flows to force password reset at first sign in. See Force password reset at first logon. - - `[ForceChangePasswordNextSignInWithMfa ]`: If true, at next sign-in, the user must perform a multi-factor authentication (MFA) before being forced to change their password. The behavior is identical to forceChangePasswordNextSignIn except that the user is required to first perform a multi-factor authentication before password change. After a password change, this property will be automatically reset to false. If not set, default is false. - - `[Password ]`: The password for the user. This property is required when a user is created. It can be updated, but the user will be required to change the password on the next login. The password must satisfy minimum requirements as specified by the user’s passwordPolicies property. By default, a strong password is required. - ## RELATED LINKS diff --git a/src/Resources/MSGraph.Autorest/test/loadEnv.ps1 b/src/Resources/MSGraph.Autorest/test/loadEnv.ps1 index 5f079e89615e..6a7c385c6b7d 100644 --- a/src/Resources/MSGraph.Autorest/test/loadEnv.ps1 +++ b/src/Resources/MSGraph.Autorest/test/loadEnv.ps1 @@ -25,5 +25,5 @@ if (Test-Path -Path (Join-Path $PSScriptRoot $envFile)) { $env = @{} if (Test-Path -Path $envFilePath) { $env = Get-Content (Join-Path $PSScriptRoot $envFile) | ConvertFrom-Json - $PSDefaultParameterValues=@{"*:SubscriptionId"=$env.SubscriptionId; "*:Tenant"=$env.Tenant} + $PSDefaultParameterValues=@{"*:Tenant"=$env.Tenant} } \ No newline at end of file diff --git a/src/Resources/MSGraph.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 b/src/Resources/MSGraph.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 new file mode 100644 index 000000000000..5319862d3372 --- /dev/null +++ b/src/Resources/MSGraph.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 @@ -0,0 +1,7 @@ +param() +if ($env:AzPSAutorestTestPlaybackMode) { + $loadEnvPath = Join-Path $PSScriptRoot '..' 'test' 'loadEnv.ps1' + . ($loadEnvPath) + return $env.SubscriptionId +} +return (Get-AzContext).Subscription.Id \ No newline at end of file diff --git a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv index 6330d4b45e7d..4819432ba0fc 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv @@ -36,3 +36,4 @@ "Az.Resources","New-AzPolicySetDefinition","New-AzPolicySetDefinition","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzPolicySetDefinition' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzPolicySetDefinition'." "Az.Resources","New-AzPolicySetDefinition","New-AzPolicySetDefinition","0","1050","The parameter set 'ManagementGroupName' for cmdlet 'New-AzPolicySetDefinition' has been removed.","Add parameter set 'ManagementGroupName' back to cmdlet 'New-AzPolicySetDefinition'." "Az.Resources","New-AzPolicySetDefinition","New-AzPolicySetDefinition","0","1050","The parameter set 'SubscriptionId' for cmdlet 'New-AzPolicySetDefinition' has been removed.","Add parameter set 'SubscriptionId' back to cmdlet 'New-AzPolicySetDefinition'." +"Az.Resources","Get-AzADOrganization","Get-AzADOrganization","0","3000","The type of property 'MobileDeviceManagementAuthority' of type 'Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphOrganization' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Support.MdmAuthority]' to 'System.String'.","Change the type of property 'MobileDeviceManagementAuthority' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Support.MdmAuthority]'." \ No newline at end of file From 75f918f4274cbcd7db996cd0f994a53e9cfedde8 Mon Sep 17 00:00:00 2001 From: jkore1911 Date: Fri, 18 Oct 2024 10:53:52 +0530 Subject: [PATCH 02/16] Liftr Elastic PS cmdlets for stable version 2024-03-01 (#26374) * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Liftr Elastic PS cmdlets for stable version 2024-03-01 * Masking the CRED string * Masking the CRED string * Masking the CRED string --- .../test/Get-AzElasticDetailVMIngestion.Recording.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Elastic/Elastic.Autorest/test/Get-AzElasticDetailVMIngestion.Recording.json b/src/Elastic/Elastic.Autorest/test/Get-AzElasticDetailVMIngestion.Recording.json index 50ada6765062..8f76ef161109 100644 --- a/src/Elastic/Elastic.Autorest/test/Get-AzElasticDetailVMIngestion.Recording.json +++ b/src/Elastic/Elastic.Autorest/test/Get-AzElasticDetailVMIngestion.Recording.json @@ -132,7 +132,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"cloudId\":\"elastic-mfvsw9:d2VzdHVzMi5henVyZS5lbGFzdGljLWNsb3VkLmNvbTo0NDMkNjliOTY4MjdjNjI1NDhmNDkyZGJjOTk3YzU4MzQwNzAkYzQ2ZDdmZmJjNDY4NGE1Nzg4OTg4MDA5OTE1ODdmNTg=\",\"ingestionKey\":\"TGlmdHJfRWxhc3RpYzpLSUxZTE8zNzI4R0NIWUpLUE0=\"}", + "Content": "{\"cloudId\":\"elastic-mfvsw9:d2VzdHVzMi5henVyZS5lbGFzdGljLWNsb3VkLmNvbTo0NDMkNjliOTY4MjdjNjI1NDhmNDkyZGJjOTk3YzU4MzQwNzAkYzQ2ZDdmZmJjNDY4NGE1Nzg4OTg4MDA5OTE1ODdmNTg=\",\"ingestionKey\":\"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"}", "isContentBase64": false } } From e14d24cbfaf8ef04eb5c95b61099700fb5d37a31 Mon Sep 17 00:00:00 2001 From: NanxiangLiu <33285578+Nickcandy@users.noreply.github.com> Date: Fri, 18 Oct 2024 16:37:17 +0800 Subject: [PATCH 03/16] Update Get-AzElasticDetailVMIngestion.Recording.json (#26391) --- .../test/Get-AzElasticDetailVMIngestion.Recording.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Elastic/Elastic.Autorest/test/Get-AzElasticDetailVMIngestion.Recording.json b/src/Elastic/Elastic.Autorest/test/Get-AzElasticDetailVMIngestion.Recording.json index 8f76ef161109..e3603e3f71b0 100644 --- a/src/Elastic/Elastic.Autorest/test/Get-AzElasticDetailVMIngestion.Recording.json +++ b/src/Elastic/Elastic.Autorest/test/Get-AzElasticDetailVMIngestion.Recording.json @@ -41,7 +41,7 @@ "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"cloudId\":\"elastic-mfvsw9:d2VzdHVzMi5henVyZS5lbGFzdGljLWNsb3VkLmNvbTo0NDMkNjliOTY4MjdjNjI1NDhmNDkyZGJjOTk3YzU4MzQwNzAkYzQ2ZDdmZmJjNDY4NGE1Nzg4OTg4MDA5OTE1ODdmNTg=\",\"ingestionKey\":\"TGlmdHJfRWxhc3RpYzpLSUxZTE8zNzI4R0NIWUpLUE0=\"}", + "Content": "{\"cloudId\":\"elastic-mfvsw9:d2VzdHVzMi5henVyZS5lbGFzdGljLWNsb3VkLmNvbTo0NDMkNjliOTY4MjdjNjI1NDhmNDkyZGJjOTk3YzU4MzQwNzAkYzQ2ZDdmZmJjNDY4NGE1Nzg4OTg4MDA5OTE1ODdmNTg=\",\"ingestionKey\":\"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=\"}", "isContentBase64": false } }, @@ -136,4 +136,4 @@ "isContentBase64": false } } -} \ No newline at end of file +} From 1102f79b72afedbd43a7cfd3b4373e1744cb3e01 Mon Sep 17 00:00:00 2001 From: singhabh27 <69506434+singhabh27@users.noreply.github.com> Date: Tue, 22 Oct 2024 00:23:26 +0530 Subject: [PATCH 04/16] Support for LinuxLicenseType in Az.Migrate Module (#26016) * Support for LinuxLicenseType in Az.Migrate Module * Static Analysis fix * Removed Remove-AzMigrateReplicationFabricInfra.md --- src/Migrate/Migrate.Autorest/README.md | 74 +++++++++---------- .../custom/Get-AzMigrateJob.ps1 | 4 +- .../custom/Get-AzMigrateServerReplication.ps1 | 4 +- ...ize-AzMigrateReplicationInfrastructure.ps1 | 4 +- .../custom/New-AzMigrateDiskMapping.ps1 | 4 +- .../custom/New-AzMigrateNicMapping.ps1 | 4 +- .../custom/New-AzMigrateServerReplication.ps1 | 38 +++++++--- .../custom/New-AzMigrateTestNicMapping .ps1 | 4 +- .../Remove-AzMigrateServerReplication.ps1 | 4 +- .../Restart-AzMigrateServerReplication.ps1 | 6 +- .../Resume-AzMigrateServerReplication.ps1 | 6 +- .../custom/Set-AzMigrateDiskMapping.ps1 | 4 +- .../custom/Set-AzMigrateServerReplication.ps1 | 49 ++++++++---- .../custom/Start-AzMigrateServerMigration.ps1 | 6 +- .../custom/Start-AzMigrateTestMigration.ps1 | 8 +- .../Start-AzMigrateTestMigrationCleanup.ps1 | 4 +- .../Suspend-AzMigrateServerReplication.ps1 | 4 +- .../Migrate.Autorest/docs/Get-AzMigrateJob.md | 4 +- .../docs/Get-AzMigrateReplicationFabric.md | 2 +- .../docs/Get-AzMigrateReplicationPolicy.md | 2 +- ...AzMigrateReplicationProtectionContainer.md | 2 +- ...teReplicationProtectionContainerMapping.md | 2 +- ...rateReplicationRecoveryServicesProvider.md | 2 +- .../docs/Get-AzMigrateServerReplication.md | 4 +- .../docs/New-AzMigrateDiskMapping.md | 2 +- .../docs/New-AzMigrateNicMapping.md | 2 +- .../docs/New-AzMigrateReplicationPolicy.md | 4 +- ...teReplicationProtectionContainerMapping.md | 4 +- .../docs/New-AzMigrateServerReplication.md | 35 ++++++--- .../docs/New-AzMigrateTestNicMapping.md | 2 +- .../docs/Remove-AzMigrateServerReplication.md | 4 +- .../Restart-AzMigrateServerReplication.md | 4 +- .../docs/Resume-AzMigrateServerReplication.md | 8 +- .../docs/Set-AzMigrateDiskMapping.md | 2 +- .../docs/Set-AzMigrateServerReplication.md | 37 +++++++--- .../docs/Start-AzMigrateServerMigration.md | 4 +- .../docs/Start-AzMigrateTestMigration.md | 6 +- .../Start-AzMigrateTestMigrationCleanup.md | 4 +- .../Suspend-AzMigrateServerReplication.md | 8 +- .../test/Get-AzMigrateJob.Recording.json | 24 +++--- ...-AzMigrateReplicationFabric.Recording.json | 8 +- ...-AzMigrateReplicationPolicy.Recording.json | 8 +- ...licationProtectionContainer.Recording.json | 12 +-- ...nProtectionContainerMapping.Recording.json | 12 +-- ...ionRecoveryServicesProvider.Recording.json | 8 +- ...-AzMigrateServerReplication.Recording.json | 32 ++++---- ...-AzMigrateReplicationPolicy.Recording.json | 16 ++-- .../New-AzMigrateReplicationPolicy.Tests.ps1 | 2 +- ...nProtectionContainerMapping.Recording.json | 16 ++-- ...cationProtectionContainerMapping.Tests.ps1 | 2 +- ...-AzMigrateReplicationFabricInfra.Tests.ps1 | 25 +++++++ ...-AzMigrateServerReplication.Recording.json | 12 +-- ...-AzMigrateServerReplication.Recording.json | 36 ++++----- ...-AzMigrateServerReplication.Recording.json | 36 ++++----- ...-AzMigrateServerReplication.Recording.json | 8 +- ...rt-AzMigrateServerMigration.Recording.json | 36 ++++----- ...tart-AzMigrateTestMigration.Recording.json | 36 ++++----- ...MigrateTestMigrationCleanup.Recording.json | 36 ++++----- ...-AzMigrateServerReplication.Recording.json | 36 ++++----- 59 files changed, 435 insertions(+), 337 deletions(-) create mode 100644 src/Migrate/Migrate.Autorest/test/Remove-AzMigrateReplicationFabricInfra.Tests.ps1 diff --git a/src/Migrate/Migrate.Autorest/README.md b/src/Migrate/Migrate.Autorest/README.md index 8a9dd79f6d53..3815c568f2b3 100644 --- a/src/Migrate/Migrate.Autorest/README.md +++ b/src/Migrate/Migrate.Autorest/README.md @@ -48,13 +48,13 @@ In this directory, run AutoRest: ``` yaml skip-semantics-validation: true -commit: 0dd49a444195fef7f3555cad038cb7665cbd928c +commit: 3b19762dab3c48c857ae2355da351b32dde22eda require: - $(this-folder)/../../readme.azure.noprofile.md input-file: - $(repo)/specification/migrate/resource-manager/Microsoft.OffAzure/stable/2020-01-01/migrate.json - $(repo)/specification/migrateprojects/resource-manager/Microsoft.Migrate/preview/2018-09-01-preview/migrate.json - - $(repo)/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2023-01-01/service.json + - $(repo)/specification/recoveryservicessiterecovery/resource-manager/Microsoft.RecoveryServices/stable/2024-01-01/service.json - $(repo)/specification/recoveryservicesdatareplication/resource-manager/Microsoft.DataReplication/preview/2021-02-16-preview/recoveryservicesdatareplication.json module-version: 1.0.1 @@ -123,55 +123,55 @@ directive: - TaskModel - TaskModelCustomProperties # Remove variants not in scope - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Test$ subject: ^ReplicationMigrationItemMigrate variant: ^TestViaIdentity$|^TestViaIdentityExpanded$|^Test$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Get$ subject: ReplicationFabric$|ReplicationPolicy$|ReplicationProtectionContainer$|ReplicationMigrationItem$|ReplicationJob$|ReplicationProtectionContainerMapping$|ReplicationRecoveryServicesProvider$ variant: ^GetViaIdentity$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Remove$ subject: ^ReplicationMigrationItem variant: ^DeleteViaIdentity$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Move$ subject: ^ReplicationMigrationItem variant: ^MigrateViaIdentityExpanded$|^Migrate$|^MigrateViaIdentity$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Suspend$ subject: ^ReplicationMigrationItemReplication variant: ^PauseViaIdentityExpanded$|^Pause$|^PauseViaIdentity$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Resume$ subject: ^ReplicationMigrationItemReplication variant: ^ResumeViaIdentityExpanded$|^Resume$|^ResumeViaIdentity$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Invoke$ subject: ^ResyncReplicationMigrationItem variant: ^ResyncViaIdentityExpanded$|^ResyncViaIdentity$|^Resync$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: New$ subject: ^ReplicationMigrationItem|ReplicationProtectionContainerMapping$|ReplicationPolicy$ variant: ^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Create$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Update$ subject: ^ReplicationMigrationItem @@ -269,49 +269,49 @@ directive: verb: Update$ subject: Project$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: subject: ^ReplicationRecoveryPlan|ReplicationRecoveryServiceProvider$|ReplicationEvent$|ReplicationAlertSetting$|ReplicationLogicalNetwork$|^ReplicationProtectedItem|^ReplicationNetwork|^ReplicationStorage|RecoveryPoint$|ProtectableItem$|FabricGateway$|FabricToAad$|ReplicationvCenter$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Export$|Find$|Switch$|Clear$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: subject: ^Commit|^Renew|^Reprotect|^Unplanned|VaultHealth$|ComputeSize$|FabricConsistency$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: New$|Remove$ subject: Fabric$|ProtectionContainer$|ReplicationRecoveryServicesProvider$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Remove$ - subject: ReplicationPolicy$|ReplicationProtectionContainerMapping$ + subject: ReplicationPolicy$|ReplicationProtectionContainerMapping$|ReplicationFabricInfra$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Update$ subject: Fabric$|Policy$|ProtectionContainer$|ReplicationProtectionContainerMapping$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Stop$|Resume$|Restart$ subject: Job$ remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Get subject: ^ReplicationAppliance|^ReplicationEligibilityResult|^ReplicationProtectionIntent remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Get subject: ^ReplicationVaultSetting|^SupportedOperatingSystem|^ReplicationProtectionIntent remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: New subject: ^ReplicationVaultSetting|^SupportedOperatingSystem|^ReplicationProtectionIntent @@ -361,7 +361,7 @@ directive: verb: Update subject: ^Vault remove: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Invoke subject: ^PlannedReplication @@ -379,57 +379,57 @@ directive: verb: Set$ subject: ^Solution hide: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Get$ subject: ToAzureMigrate$ hide: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Get$ subject: ReplicationMigrationItem$|ReplicationJob$ hide: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Test$ subject: ^ReplicationMigrationItemMigrate hide: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: New$|Remove$ subject: ^ReplicationMigrationItem hide: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Move$ subject: ^ReplicationMigrationItem hide: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Restart$ subject: ^ReplicationJob hide: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Invoke$ subject: ^ResyncReplicationMigrationItem hide: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Update$ subject: ^ReplicationMigrationItem hide: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Suspend$ subject: ^ReplicationMigrationItemReplication hide: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: verb: Resume$ subject: ^ReplicationMigrationItemReplication hide: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: subject: ^Planned hide: true @@ -478,17 +478,17 @@ directive: parameter-name: Name clear-alias: true # Table output formatting - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: model-name: MigrationItem set: suppress-format: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: model-name: Job set: suppress-format: true - - from: Microsoft.RecoveryServices/stable/2023-01-01/service.json + - from: Microsoft.RecoveryServices/stable/2024-01-01/service.json where: model-name: Fabric set: diff --git a/src/Migrate/Migrate.Autorest/custom/Get-AzMigrateJob.ps1 b/src/Migrate/Migrate.Autorest/custom/Get-AzMigrateJob.ps1 index 6db2b4848a14..bee1d0e8511e 100644 --- a/src/Migrate/Migrate.Autorest/custom/Get-AzMigrateJob.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Get-AzMigrateJob.ps1 @@ -22,7 +22,7 @@ The Get-AzMigrateJob cmdlet retrives the status of an Azure Migrate job. https://learn.microsoft.com/powershell/module/az.migrate/get-azmigratejob #> function Get-AzMigrateJob { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob])] [CmdletBinding(DefaultParameterSetName = 'ListByName', PositionalBinding = $false)] param( [Parameter(ParameterSetName = 'GetById', Mandatory)] @@ -53,7 +53,7 @@ function Get-AzMigrateJob { [Parameter(ParameterSetName = 'GetByInputObject', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob] # Specifies the job object of the replicating server. ${InputObject}, diff --git a/src/Migrate/Migrate.Autorest/custom/Get-AzMigrateServerReplication.ps1 b/src/Migrate/Migrate.Autorest/custom/Get-AzMigrateServerReplication.ps1 index 17fee5f4fa40..351427903e6c 100644 --- a/src/Migrate/Migrate.Autorest/custom/Get-AzMigrateServerReplication.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Get-AzMigrateServerReplication.ps1 @@ -22,7 +22,7 @@ The Get-AzMigrateServerReplication cmdlet retrieves the object for the replicati https://learn.microsoft.com/powershell/module/az.migrate/get-azmigrateserverreplication #> function Get-AzMigrateServerReplication { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem])] [CmdletBinding(DefaultParameterSetName = 'ListByName', PositionalBinding = $false)] param( [Parameter(ParameterSetName = 'GetBySRSID', Mandatory)] @@ -53,7 +53,7 @@ function Get-AzMigrateServerReplication { [Parameter(ParameterSetName = 'GetByInputObject', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem] # Specifies the machine object of the replicating server. ${InputObject}, diff --git a/src/Migrate/Migrate.Autorest/custom/Initialize-AzMigrateReplicationInfrastructure.ps1 b/src/Migrate/Migrate.Autorest/custom/Initialize-AzMigrateReplicationInfrastructure.ps1 index 5a878bc42f3a..10d346288ae2 100644 --- a/src/Migrate/Migrate.Autorest/custom/Initialize-AzMigrateReplicationInfrastructure.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Initialize-AzMigrateReplicationInfrastructure.ps1 @@ -542,7 +542,7 @@ public static int hashForArtifact(String artifact) $policyName = $MigratePrefix + $SiteName + "policy" $existingPolicyObject = Get-AzMigrateReplicationPolicy -PolicyName $policyName -ResourceGroupName $ResourceGroupName -ResourceName $VaultName -ErrorVariable notPresent -ErrorAction SilentlyContinue if (!$existingPolicyObject) { - $providerSpecificPolicy = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtPolicyCreationInput]::new() + $providerSpecificPolicy = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtPolicyCreationInput]::new() $providerSpecificPolicy.AppConsistentFrequencyInMinute = 240 $providerSpecificPolicy.InstanceType = "VMwareCbt" $providerSpecificPolicy.RecoveryPointHistoryInMinute = 360 @@ -566,7 +566,7 @@ public static int hashForArtifact(String artifact) Write-Host $mappingName, " for ", $applianceName, $LogStringSkipping } else { - $providerSpecificInput = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtContainerMappingInput]::new() + $providerSpecificInput = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtContainerMappingInput]::new() $providerSpecificInput.InstanceType = "VMwareCbt" $providerSpecificInput.TargetLocation = $TargetRegion if ([string]::IsNullOrEmpty($CacheStorageAccountId)) { diff --git a/src/Migrate/Migrate.Autorest/custom/New-AzMigrateDiskMapping.ps1 b/src/Migrate/Migrate.Autorest/custom/New-AzMigrateDiskMapping.ps1 index 675eff7176ad..657fe1b8bfcc 100644 --- a/src/Migrate/Migrate.Autorest/custom/New-AzMigrateDiskMapping.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/New-AzMigrateDiskMapping.ps1 @@ -22,7 +22,7 @@ The New-AzMigrateDiskMapping cmdlet creates a mapping of the source disk attache https://learn.microsoft.com/powershell/module/az.migrate/new-azmigratediskmapping #> function New-AzMigrateDiskMapping { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtDiskInput])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtDiskInput])] [CmdletBinding(DefaultParameterSetName = 'VMwareCbt', PositionalBinding = $false)] param( [Parameter(Mandatory)] @@ -55,7 +55,7 @@ function New-AzMigrateDiskMapping { ) process { - $DiskObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtDiskInput]::new() + $DiskObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtDiskInput]::new() $DiskObject.DiskId = $DiskID $validDiskTypeSpellings = @{ diff --git a/src/Migrate/Migrate.Autorest/custom/New-AzMigrateNicMapping.ps1 b/src/Migrate/Migrate.Autorest/custom/New-AzMigrateNicMapping.ps1 index 797f80fe47f1..bae5f0f0dd46 100644 --- a/src/Migrate/Migrate.Autorest/custom/New-AzMigrateNicMapping.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/New-AzMigrateNicMapping.ps1 @@ -22,7 +22,7 @@ The New-AzMigrateNicMapping cmdlet creates a mapping of the source NIC attached https://learn.microsoft.com/powershell/module/az.migrate/new-azmigratenicmapping #> function New-AzMigrateNicMapping { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtNicInput])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtNicInput])] [CmdletBinding(DefaultParameterSetName = 'VMwareCbt', PositionalBinding = $false)] param( [Parameter(Mandatory)] @@ -71,7 +71,7 @@ function New-AzMigrateNicMapping { ) process { - $NicObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtNicInput]::new() + $NicObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtNicInput]::new() $NicObject.NicId = $NicID if ($PSBoundParameters.ContainsKey('TargetNicSelectionType')) { if ($TargetNicSelectionType -eq 'primary') { diff --git a/src/Migrate/Migrate.Autorest/custom/New-AzMigrateServerReplication.ps1 b/src/Migrate/Migrate.Autorest/custom/New-AzMigrateServerReplication.ps1 index c6f6a678cf43..1a5e238b661b 100644 --- a/src/Migrate/Migrate.Autorest/custom/New-AzMigrateServerReplication.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/New-AzMigrateServerReplication.ps1 @@ -22,7 +22,7 @@ The New-AzMigrateServerReplication cmdlet starts the replication for a particula https://learn.microsoft.com/powershell/module/az.migrate/new-azmigrateserverreplication #> function New-AzMigrateServerReplication { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob])] [CmdletBinding(DefaultParameterSetName = 'ByIdDefaultUser', PositionalBinding = $false)] param( [Parameter(ParameterSetName = 'ByIdDefaultUser', Mandatory)] @@ -42,7 +42,7 @@ function New-AzMigrateServerReplication { [Parameter(ParameterSetName = 'ByIdPowerUser', Mandatory)] [Parameter(ParameterSetName = 'ByInputObjectPowerUser', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtDiskInput[]] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtDiskInput[]] # Specifies the disks on the source server to be included for replication. ${DiskToInclude}, @@ -62,6 +62,14 @@ function New-AzMigrateServerReplication { # Specifies if Azure Hybrid benefit for SQL Server is applicable for the server to be migrated. ${SqlServerLicenseType}, + [Parameter()] + [ValidateSet( "NotSpecified", "NoLicenseType", "LinuxServer")] + [ArgumentCompleter( { "NotSpecified", "NoLicenseType", "LinuxServer" })] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] + [System.String] + # Specifies if Azure Hybrid benefit is applicable for the source linux server to be migrated. + ${LinuxLicenseType}, + [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] [System.String] @@ -141,19 +149,19 @@ function New-AzMigrateServerReplication { [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetVmtags] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetVmtags] # Specifies the tag to be used for VM creation. ${VMTag}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetNicTags] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetNicTags] # Specifies the tag to be used for NIC creation. ${NicTag}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetDiskTags] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetDiskTags] # Specifies the tag to be used for disk creation. ${DiskTag}, @@ -257,6 +265,7 @@ function New-AzMigrateServerReplication { $HasDiskTag = $PSBoundParameters.ContainsKey('DiskTag') $HasTag = $PSBoundParameters.ContainsKey('Tag') $HasSqlServerLicenseType = $PSBoundParameters.ContainsKey('SqlServerLicenseType') + $HasLinuxLicenseType = $PSBoundParameters.ContainsKey('LinuxLicenseType') $HasTargetBDStorage = $PSBoundParameters.ContainsKey('TargetBootDiagnosticsStorageAccount') $HasResync = $PSBoundParameters.ContainsKey('PerformAutoResync') $HasDiskEncryptionSetID = $PSBoundParameters.ContainsKey('DiskEncryptionSetID') @@ -284,6 +293,7 @@ function New-AzMigrateServerReplication { $null = $PSBoundParameters.Remove('DiskType') $null = $PSBoundParameters.Remove('OSDiskID') $null = $PSBoundParameters.Remove('SqlServerLicenseType') + $null = $PSBoundParameters.Remove('LinuxLicenseType') $null = $PSBoundParameters.Remove('LicenseType') $null = $PSBoundParameters.Remove('DiskEncryptionSetID') @@ -533,7 +543,7 @@ public static int hashForArtifact(String artifact) $null = $PSBoundParameters.Add("MigrationItemName", $MachineName) $null = $PSBoundParameters.Add("PolicyId", $PolicyId) - $ProviderSpecificDetails = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtEnableMigrationInput]::new() + $ProviderSpecificDetails = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtEnableMigrationInput]::new() $ProviderSpecificDetails.DataMoverRunAsAccountId = $VMWarerunasaccountID $ProviderSpecificDetails.SnapshotRunAsAccountId = $VMWarerunasaccountID $ProviderSpecificDetails.InstanceType = 'VMwareCbt' @@ -556,6 +566,16 @@ public static int hashForArtifact(String artifact) $ProviderSpecificDetails.SqlServerLicenseType = $SqlServerLicenseType } + if ($HasLinuxLicenseType) { + $validLinuxLicenseSpellings = @{ + NotSpecified = "NotSpecified"; + NoLicenseType = "NoLicenseType"; + LinuxServer = "LinuxServer"; + } + $LinuxLicenseType = $validLinuxLicenseSpellings[$LinuxLicenseType] + $ProviderSpecificDetails.LinuxLicenseType = $LinuxLicenseType + } + $UserProvidedTags = $null if ($HasTag -And $Tag) { $UserProvidedTags += @{"Tag" = $Tag } @@ -655,10 +675,10 @@ public static int hashForArtifact(String artifact) $uniqueDiskUuids = [System.Collections.Generic.HashSet[String]]::new([StringComparer]::InvariantCultureIgnoreCase) if ($parameterSet -match 'DefaultUser') { - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtDiskInput[]]$DiskToInclude = @() + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtDiskInput[]]$DiskToInclude = @() foreach ($onPremDisk in $InputObject.Disk) { if ($onPremDisk.Uuid -ne $OSDiskID) { - $DiskObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtDiskInput]::new() + $DiskObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtDiskInput]::new() $DiskObject.DiskId = $onPremDisk.Uuid $DiskObject.DiskType = "Standard_LRS" $DiskObject.IsOSDisk = "false" @@ -670,7 +690,7 @@ public static int hashForArtifact(String artifact) $DiskToInclude += $DiskObject } } - $DiskObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtDiskInput]::new() + $DiskObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtDiskInput]::new() $DiskObject.DiskId = $OSDiskID $DiskObject.DiskType = $DiskType $DiskObject.IsOSDisk = "true" diff --git a/src/Migrate/Migrate.Autorest/custom/New-AzMigrateTestNicMapping .ps1 b/src/Migrate/Migrate.Autorest/custom/New-AzMigrateTestNicMapping .ps1 index 13b0bdd2ee69..d1f87055c821 100644 --- a/src/Migrate/Migrate.Autorest/custom/New-AzMigrateTestNicMapping .ps1 +++ b/src/Migrate/Migrate.Autorest/custom/New-AzMigrateTestNicMapping .ps1 @@ -22,7 +22,7 @@ The New-AzMigrateTestNicMapping cmdlet creates a mapping of the source NIC attac https://learn.microsoft.com/powershell/module/az.migrate/new-azmigratetestnicmapping #> function New-AzMigrateTestNicMapping { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtNicInput])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtNicInput])] [CmdletBinding(DefaultParameterSetName = 'VMwareCbt', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(Mandatory)] @@ -39,7 +39,7 @@ function New-AzMigrateTestNicMapping { ) process { - $NicObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtNicInput]::new() + $NicObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtNicInput]::new() $NicObject.NicId = $NicID if ($PSBoundParameters.ContainsKey('TestNicSubnet')) { diff --git a/src/Migrate/Migrate.Autorest/custom/Remove-AzMigrateServerReplication.ps1 b/src/Migrate/Migrate.Autorest/custom/Remove-AzMigrateServerReplication.ps1 index 5825121ca4da..4e74f6477ea2 100644 --- a/src/Migrate/Migrate.Autorest/custom/Remove-AzMigrateServerReplication.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Remove-AzMigrateServerReplication.ps1 @@ -22,7 +22,7 @@ The Remove-AzMigrateServerReplication cmdlet stops the replication for a migrate https://learn.microsoft.com/powershell/module/az.migrate/remove-azmigrateserverreplication #> function Remove-AzMigrateServerReplication { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob])] [CmdletBinding(DefaultParameterSetName = 'ByIDVMwareCbt', PositionalBinding = $false)] param( [Parameter(ParameterSetName = 'ByIDVMwareCbt', Mandatory)] @@ -33,7 +33,7 @@ function Remove-AzMigrateServerReplication { [Parameter(ParameterSetName = 'ByInputObjectVMwareCbt', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem] # Specifies the replcating server for which the replication needs to be disabled. The server object should be retrieved using the Get-AzMigrateServerReplication cmdlet. ${InputObject}, diff --git a/src/Migrate/Migrate.Autorest/custom/Restart-AzMigrateServerReplication.ps1 b/src/Migrate/Migrate.Autorest/custom/Restart-AzMigrateServerReplication.ps1 index 3df2059dae1f..11684d2eee3d 100644 --- a/src/Migrate/Migrate.Autorest/custom/Restart-AzMigrateServerReplication.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Restart-AzMigrateServerReplication.ps1 @@ -22,7 +22,7 @@ The Restart-AzMigrateServerReplication cmdlet repairs the replication for the sp https://learn.microsoft.com/powershell/module/az.migrate/restart-azmigrateserverreplication #> function Restart-AzMigrateServerReplication { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob])] [CmdletBinding(DefaultParameterSetName = 'ByIDVMwareCbt', PositionalBinding = $false)] param( [Parameter(ParameterSetName = 'ByIDVMwareCbt', Mandatory)] @@ -33,7 +33,7 @@ function Restart-AzMigrateServerReplication { [Parameter(ParameterSetName = 'ByInputObjectVMwareCbt', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem] # Specifies the machine object of the replicating server. ${InputObject}, @@ -119,7 +119,7 @@ function Restart-AzMigrateServerReplication { $ReplicationMigrationItem = Az.Migrate.internal\Get-AzMigrateReplicationMigrationItem @PSBoundParameters if ($ReplicationMigrationItem -and ($ReplicationMigrationItem.ProviderSpecificDetail.InstanceType -eq 'VMwarecbt')) { - $ProviderSepcificDetail = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtResyncInput]::new() + $ProviderSepcificDetail = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtResyncInput]::new() $ProviderSepcificDetail.InstanceType = 'VMwareCbt' $ProviderSepcificDetail.SkipCbtReset = 'true' $null = $PSBoundParameters.Add('ProviderSpecificDetail', $ProviderSepcificDetail) diff --git a/src/Migrate/Migrate.Autorest/custom/Resume-AzMigrateServerReplication.ps1 b/src/Migrate/Migrate.Autorest/custom/Resume-AzMigrateServerReplication.ps1 index af48792f3637..23b08e89707b 100644 --- a/src/Migrate/Migrate.Autorest/custom/Resume-AzMigrateServerReplication.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Resume-AzMigrateServerReplication.ps1 @@ -22,7 +22,7 @@ The Resume-AzMigrateServerReplication starts the replication that has been suspe https://learn.microsoft.com/powershell/module/az.migrate/resume-azmigrateserverreplication #> function Resume-AzMigrateServerReplication { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob])] [CmdletBinding(DefaultParameterSetName = 'ByIDVMwareCbt', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'ByIDVMwareCbt', Mandatory)] @@ -33,7 +33,7 @@ function Resume-AzMigrateServerReplication { [Parameter(ParameterSetName = 'ByInputObjectVMwareCbt', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem] # Specifies the replicating server for which the resume replication needs to be initiated. The server object can be retrieved using the Get-AzMigrateServerReplication cmdlet ${InputObject}, @@ -203,7 +203,7 @@ function Resume-AzMigrateServerReplication { } - $ProviderSpecificDetailInput = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtResumeReplicationInput]::new() + $ProviderSpecificDetailInput = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtResumeReplicationInput]::new() $ProviderSpecificDetailInput.InstanceType = 'VMwareCbt' $ProviderSpecificDetailInput.DeleteMigrationResource = $PerformDeleteResource $null = $PSBoundParameters.Add('ProviderSpecificDetail', $ProviderSpecificDetailInput) diff --git a/src/Migrate/Migrate.Autorest/custom/Set-AzMigrateDiskMapping.ps1 b/src/Migrate/Migrate.Autorest/custom/Set-AzMigrateDiskMapping.ps1 index f415bb33969a..aa82d1a4b10a 100644 --- a/src/Migrate/Migrate.Autorest/custom/Set-AzMigrateDiskMapping.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Set-AzMigrateDiskMapping.ps1 @@ -22,7 +22,7 @@ The Set-AzMigrateDiskMapping cmdlet updates a mapping of the source disk attache https://learn.microsoft.com/powershell/module/az.migrate/set-azmigratediskmapping #> function Set-AzMigrateDiskMapping { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtUpdateDiskInput])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtUpdateDiskInput])] [CmdletBinding(DefaultParameterSetName = 'VMwareCbt', PositionalBinding = $false)] param( [Parameter(Mandatory)] @@ -47,7 +47,7 @@ function Set-AzMigrateDiskMapping { ) process { - $DiskObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtUpdateDiskInput]::new() + $DiskObject = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtUpdateDiskInput]::new() $DiskObject.DiskId = $DiskID if ($DiskName -and (($DiskName.length -gt 80) -or ($DiskName.length -eq 0))) { diff --git a/src/Migrate/Migrate.Autorest/custom/Set-AzMigrateServerReplication.ps1 b/src/Migrate/Migrate.Autorest/custom/Set-AzMigrateServerReplication.ps1 index 16ddef3ad1cc..c097581e4f5c 100644 --- a/src/Migrate/Migrate.Autorest/custom/Set-AzMigrateServerReplication.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Set-AzMigrateServerReplication.ps1 @@ -22,7 +22,7 @@ The Set-AzMigrateServerReplication cmdlet updates the target properties for the https://learn.microsoft.com/powershell/module/az.migrate/set-azmigrateserverreplication #> function Set-AzMigrateServerReplication { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob])] [CmdletBinding(DefaultParameterSetName = 'ByIDVMwareCbt', PositionalBinding = $false)] param( [Parameter(ParameterSetName = 'ByIDVMwareCbt', Mandatory)] @@ -33,7 +33,7 @@ function Set-AzMigrateServerReplication { [Parameter(ParameterSetName = 'ByInputObjectVMwareCbt', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem] # Specifies the replicating server for which the properties need to be updated. The server object can be retrieved using the Get-AzMigrateServerReplication cmdlet. ${InputObject}, @@ -75,13 +75,13 @@ function Set-AzMigrateServerReplication { [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtNicInput[]] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtNicInput[]] # Updates the NIC for the Azure VM to be created. ${NicToUpdate}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtUpdateDiskInput[]] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtUpdateDiskInput[]] # Updates the disk for the Azure VM to be created. ${DiskToUpdate}, @@ -105,6 +105,14 @@ function Set-AzMigrateServerReplication { # Specifies if Azure Hybrid benefit for SQL Server is applicable for the server to be migrated. ${SqlServerLicenseType}, + [Parameter()] + [ValidateSet( "NotSpecified", "NoLicenseType", "LinuxServer")] + [ArgumentCompleter( { "NotSpecified", "NoLicenseType", "LinuxServer" })] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] + [System.String] + # Specifies if Azure Hybrid benefit is applicable for the source linux server to be migrated. + ${LinuxLicenseType}, + [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] [System.Collections.Hashtable] @@ -121,7 +129,7 @@ function Set-AzMigrateServerReplication { [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetVmtags] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetVmtags] # Specifies the tag to be used for VM creation. ${UpdateVMTag}, @@ -135,7 +143,7 @@ function Set-AzMigrateServerReplication { [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetNicTags] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetNicTags] # Specifies the tag to be used for NIC creation. ${UpdateNicTag}, @@ -149,7 +157,7 @@ function Set-AzMigrateServerReplication { [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetDiskTags] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetDiskTags] # Specifies the tag to be used for disk creation. ${UpdateDiskTag}, @@ -235,6 +243,7 @@ function Set-AzMigrateServerReplication { $HasTargetAvailabilitySet = $PSBoundParameters.ContainsKey('TargetAvailabilitySet') $HasTargetAvailabilityZone = $PSBoundParameters.ContainsKey('TargetAvailabilityZone') $HasSqlServerLicenseType = $PSBoundParameters.ContainsKey('SqlServerLicenseType') + $HasLinuxLicenseType = $PSBoundParameters.ContainsKey('LinuxLicenseType') $HasUpdateTag = $PSBoundParameters.ContainsKey('UpdateTag') $HasUpdateTagOperation = $PSBoundParameters.ContainsKey('UpdateTagOperation') $HasUpdateVMTag = $PSBoundParameters.ContainsKey('UpdateVMTag') @@ -257,6 +266,7 @@ function Set-AzMigrateServerReplication { $null = $PSBoundParameters.Remove('TargetAvailabilitySet') $null = $PSBoundParameters.Remove('TargetAvailabilityZone') $null = $PSBoundParameters.Remove('SqlServerLicenseType') + $null = $PSBoundParameters.Remove('LinuxLicenseType') $null = $PSBoundParameters.Remove('UpdateTag') $null = $PSBoundParameters.Remove('UpdateTagOperation') $null = $PSBoundParameters.Remove('UpdateVMTag') @@ -288,7 +298,7 @@ function Set-AzMigrateServerReplication { $ReplicationMigrationItem = Az.Migrate.internal\Get-AzMigrateReplicationMigrationItem @PSBoundParameters if ($ReplicationMigrationItem -and ($ReplicationMigrationItem.ProviderSpecificDetail.InstanceType -eq 'VMwarecbt')) { - $ProviderSpecificDetails = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtUpdateMigrationItemInput]::new() + $ProviderSpecificDetails = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtUpdateMigrationItemInput]::new() # Auto fill unchanged parameters $ProviderSpecificDetails.InstanceType = 'VMwareCbt' @@ -322,6 +332,19 @@ function Set-AzMigrateServerReplication { $ProviderSpecificDetails.SqlServerLicenseType = $ReplicationMigrationItem.ProviderSpecificDetail.SqlServerLicenseType } + if ($HasLinuxLicenseType) { + $validLinuxLicenseSpellings = @{ + NotSpecified = "NotSpecified"; + NoLicenseType = "NoLicenseType"; + LinuxServer = "LinuxServer"; + } + $LinuxLicenseType = $validLinuxLicenseSpellings[$LinuxLicenseType] + $ProviderSpecificDetails.LinuxLicenseType = $LinuxLicenseType + } + else { + $ProviderSpecificDetails.LinuxLicenseType = $ReplicationMigrationItem.ProviderSpecificDetail.LinuxLicenseType + } + $UserProvidedTag = $null if ($HasUpdateTag -And $HasUpdateTagOperation -And $UpdateTag) { $operation = @("UpdateTag", $UpdateTagOperation) @@ -619,7 +642,7 @@ function Set-AzMigrateServerReplication { } } else { - $updateDisk = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtUpdateDiskInput]::new() + $updateDisk = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtUpdateDiskInput]::new() $updateDisk.DiskId = $previousOsDiskId $updateDisk.IsOSDisk = "False" $originalDisks = $ReplicationMigrationItem.ProviderSpecificDetail.ProtectedDisk @@ -672,11 +695,11 @@ function Set-AzMigrateServerReplication { throw "A disk with name $($TargetDiskName)' already exists in the target resource group." } - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtUpdateDiskInput[]]$updateDisksArray = @() + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtUpdateDiskInput[]]$updateDisksArray = @() $originalDisks = $ReplicationMigrationItem.ProviderSpecificDetail.ProtectedDisk foreach ($DiskObject in $originalDisks) { if ( $DiskObject.IsOSDisk) { - $updateDisk = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtUpdateDiskInput]::new() + $updateDisk = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtUpdateDiskInput]::new() $updateDisk.DiskId = $DiskObject.DiskId $updateDisk.TargetDiskName = $TargetDiskName $updateDisksArray += $updateDisk @@ -687,12 +710,12 @@ function Set-AzMigrateServerReplication { } $originalNics = $ReplicationMigrationItem.ProviderSpecificDetail.VMNic - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtNicInput[]]$updateNicsArray = @() + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtNicInput[]]$updateNicsArray = @() $nicNamePresentinRg = New-Object Collections.Generic.List[String] $duplicateNicName = New-Object System.Collections.Generic.HashSet[String] foreach ($storedNic in $originalNics) { - $updateNic = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtNicInput]::new() + $updateNic = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtNicInput]::new() $updateNic.IsPrimaryNic = $storedNic.IsPrimaryNic $updateNic.IsSelectedForMigration = $storedNic.IsSelectedForMigration $updateNic.NicId = $storedNic.NicId diff --git a/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateServerMigration.ps1 b/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateServerMigration.ps1 index e04b393705be..e86b51fb7297 100644 --- a/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateServerMigration.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateServerMigration.ps1 @@ -22,7 +22,7 @@ Starts the migration for the replicating server. https://learn.microsoft.com/powershell/module/az.migrate/start-azmigrateservermigration #> function Start-AzMigrateServerMigration { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob])] [CmdletBinding(DefaultParameterSetName = 'ByIDVMwareCbt', PositionalBinding = $false)] param( [Parameter(ParameterSetName = 'ByIDVMwareCbt', Mandatory)] @@ -33,7 +33,7 @@ function Start-AzMigrateServerMigration { [Parameter(ParameterSetName = 'ByInputObjectVMwareCbt', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem] # Specifies the replicating server for which migration needs to be initiated. The server object can be retrieved using the Get-AzMigrateServerReplication cmdlet. ${InputObject}, @@ -140,7 +140,7 @@ function Start-AzMigrateServerMigration { $ReplicationMigrationItem = Az.Migrate.internal\Get-AzMigrateReplicationMigrationItem @PSBoundParameters if ($ReplicationMigrationItem -and ($ReplicationMigrationItem.ProviderSpecificDetail.InstanceType -eq 'VMwarecbt') -and ($ReplicationMigrationItem.AllowedOperation -contains 'Migrate' )) { - $ProviderSpecificDetailInput = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtMigrateInput]::new() + $ProviderSpecificDetailInput = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtMigrateInput]::new() $ProviderSpecificDetailInput.InstanceType = 'VMwareCbt' $ProviderSpecificDetailInput.PerformShutdown = $PerformShutDown if ($OsUpgradeVersion) { diff --git a/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateTestMigration.ps1 b/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateTestMigration.ps1 index 3d150d2b183b..0c88795f0127 100644 --- a/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateTestMigration.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateTestMigration.ps1 @@ -22,7 +22,7 @@ The Start-AzMigrateTestMigration cmdlet initiates the test migration for the rep https://learn.microsoft.com/powershell/module/az.migrate/start-azmigratetestmigration #> function Start-AzMigrateTestMigration { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob])] [CmdletBinding(DefaultParameterSetName = 'ByIDVMwareCbt', PositionalBinding = $false)] param( [Parameter(ParameterSetName = 'ByIDVMwareCbt', Mandatory)] @@ -33,7 +33,7 @@ function Start-AzMigrateTestMigration { [Parameter(ParameterSetName = 'ByInputObjectVMwareCbt', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem] # Specifies the replicating server for which the test migration needs to be initiated. The server object can be retrieved using the Get-AzMigrateServerReplication cmdlet. ${InputObject}, @@ -51,7 +51,7 @@ function Start-AzMigrateTestMigration { [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtNicInput[]] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtNicInput[]] # Updates the NIC for the Azure VM to be created. ${NicToUpdate}, @@ -184,7 +184,7 @@ function Start-AzMigrateTestMigration { } if ($ReplicationMigrationItem -and ($ReplicationMigrationItem.ProviderSpecificDetail.InstanceType -eq 'VMwarecbt') -and ($ReplicationMigrationItem.AllowedOperation -contains 'TestMigrate' )) { - $ProviderSpecificDetailInput = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtTestMigrateInput]::new() + $ProviderSpecificDetailInput = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtTestMigrateInput]::new() $ProviderSpecificDetailInput.InstanceType = 'VMwareCbt' $ProviderSpecificDetailInput.NetworkId = $TestNetworkID if ($OsUpgradeVersion) { diff --git a/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateTestMigrationCleanup.ps1 b/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateTestMigrationCleanup.ps1 index 7a02c854ef2c..68aa861aa0a1 100644 --- a/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateTestMigrationCleanup.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Start-AzMigrateTestMigrationCleanup.ps1 @@ -22,7 +22,7 @@ The Start-AzMigrateTestMigrationCleanup cmdlet initiates the clean up of the tes https://learn.microsoft.com/powershell/module/az.migrate/start-azmigratetestmigrationcleanup #> function Start-AzMigrateTestMigrationCleanup { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob])] [CmdletBinding(DefaultParameterSetName = 'ByIDVMwareCbt', PositionalBinding = $false)] param( [Parameter(ParameterSetName = 'ByIDVMwareCbt', Mandatory)] @@ -33,7 +33,7 @@ function Start-AzMigrateTestMigrationCleanup { [Parameter(ParameterSetName = 'ByInputObjectVMwareCbt', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem] # Specifies the replicating server for which the test migration cleanup needs to be initiated. The server object can be retrieved using the Get-AzMigrateServerReplication cmdlet ${InputObject}, diff --git a/src/Migrate/Migrate.Autorest/custom/Suspend-AzMigrateServerReplication.ps1 b/src/Migrate/Migrate.Autorest/custom/Suspend-AzMigrateServerReplication.ps1 index bbd25e20c970..385369d8134d 100644 --- a/src/Migrate/Migrate.Autorest/custom/Suspend-AzMigrateServerReplication.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Suspend-AzMigrateServerReplication.ps1 @@ -22,7 +22,7 @@ The Suspend-AzMigrateServerReplication suspends the ongoing replication. https://learn.microsoft.com/powershell/module/az.migrate/suspend-azmigrateserverreplication #> function Suspend-AzMigrateServerReplication { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob])] [CmdletBinding(DefaultParameterSetName = 'ByIDVMwareCbt', PositionalBinding = $false, SupportsShouldProcess, ConfirmImpact = 'Medium')] param( [Parameter(ParameterSetName = 'ByIDVMwareCbt', Mandatory)] @@ -33,7 +33,7 @@ function Suspend-AzMigrateServerReplication { [Parameter(ParameterSetName = 'ByInputObjectVMwareCbt', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem] + [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem] # Specifies the replicating server for which the suspend replication needs to be initiated. The server object can be retrieved using the Get-AzMigrateServerReplication cmdlet ${InputObject}, diff --git a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateJob.md b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateJob.md index dae93061df99..577394fa7498 100644 --- a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateJob.md +++ b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateJob.md @@ -173,7 +173,7 @@ Specifies the job object of the replicating server. To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob Parameter Sets: GetByInputObject Aliases: @@ -296,7 +296,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationFabric.md b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationFabric.md index 675b5af1bb24..2fbd1c45a117 100644 --- a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationFabric.md +++ b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationFabric.md @@ -185,7 +185,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IFabric +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IFabric ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationPolicy.md b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationPolicy.md index e3f1c86bbcb2..530d4cf81977 100644 --- a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationPolicy.md +++ b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationPolicy.md @@ -143,7 +143,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IPolicy +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IPolicy ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationProtectionContainer.md b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationProtectionContainer.md index ed49cba9199d..38701af05381 100644 --- a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationProtectionContainer.md +++ b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationProtectionContainer.md @@ -162,7 +162,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IProtectionContainer +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IProtectionContainer ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationProtectionContainerMapping.md b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationProtectionContainerMapping.md index 90894e594f53..e782988ad205 100644 --- a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationProtectionContainerMapping.md +++ b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationProtectionContainerMapping.md @@ -165,7 +165,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IProtectionContainerMapping +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IProtectionContainerMapping ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationRecoveryServicesProvider.md b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationRecoveryServicesProvider.md index e52bd6ff478f..b03a9f553907 100644 --- a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationRecoveryServicesProvider.md +++ b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateReplicationRecoveryServicesProvider.md @@ -143,7 +143,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IRecoveryServicesProvider +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IRecoveryServicesProvider ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateServerReplication.md b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateServerReplication.md index 0d3d470d7f5b..832fe8866243 100644 --- a/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateServerReplication.md +++ b/src/Migrate/Migrate.Autorest/docs/Get-AzMigrateServerReplication.md @@ -267,7 +267,7 @@ Specifies the machine object of the replicating server. To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem Parameter Sets: GetByInputObject Aliases: @@ -405,7 +405,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateDiskMapping.md b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateDiskMapping.md index a875fb08a6fa..21c43fe50287 100644 --- a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateDiskMapping.md +++ b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateDiskMapping.md @@ -104,7 +104,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtDiskInput +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtDiskInput ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateNicMapping.md b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateNicMapping.md index 9e611274f09e..e0d9720995ea 100644 --- a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateNicMapping.md +++ b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateNicMapping.md @@ -151,7 +151,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtNicInput +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtNicInput ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateReplicationPolicy.md b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateReplicationPolicy.md index 8dbb1d7e0913..1aff2f20a639 100644 --- a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateReplicationPolicy.md +++ b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateReplicationPolicy.md @@ -110,7 +110,7 @@ The ReplicationProviderSettings. To construct, see NOTES section for PROVIDERSPECIFICINPUT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IPolicyProviderSpecificInput +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IPolicyProviderSpecificInput Parameter Sets: (All) Aliases: @@ -204,7 +204,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IPolicy +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IPolicy ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateReplicationProtectionContainerMapping.md b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateReplicationProtectionContainerMapping.md index 7c11d1971b3b..e7240e2c44db 100644 --- a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateReplicationProtectionContainerMapping.md +++ b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateReplicationProtectionContainerMapping.md @@ -161,7 +161,7 @@ Provider specific input for pairing. To construct, see NOTES section for PROVIDERSPECIFICINPUT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IReplicationProviderSpecificContainerMappingInput +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IReplicationProviderSpecificContainerMappingInput Parameter Sets: (All) Aliases: @@ -270,7 +270,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IProtectionContainerMapping +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IProtectionContainerMapping ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateServerReplication.md b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateServerReplication.md index 15a664f7ef15..3068bfe2cd64 100644 --- a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateServerReplication.md +++ b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateServerReplication.md @@ -17,8 +17,8 @@ Starts replication for the specified server. New-AzMigrateServerReplication -DiskType -LicenseType -MachineId -OSDiskID -TargetNetworkId -TargetResourceGroupId -TargetSubnetName -TargetVMName [-DiskEncryptionSetID ] [-DiskTag ] - [-NicTag ] [-PerformAutoResync ] - [-SqlServerLicenseType ] [-SubscriptionId ] [-Tag ] + [-LinuxLicenseType ] [-NicTag ] + [-PerformAutoResync ] [-SqlServerLicenseType ] [-SubscriptionId ] [-Tag ] [-TargetAvailabilitySet ] [-TargetAvailabilityZone ] [-TargetBootDiagnosticsStorageAccount ] [-TargetVMSize ] [-TestNetworkId ] [-TestSubnetName ] [-VMTag ] @@ -29,7 +29,7 @@ New-AzMigrateServerReplication -DiskType -LicenseType -Machine ``` New-AzMigrateServerReplication -DiskToInclude -LicenseType -MachineId -TargetNetworkId -TargetResourceGroupId -TargetSubnetName - -TargetVMName [-DiskTag ] + -TargetVMName [-DiskTag ] [-LinuxLicenseType ] [-NicTag ] [-PerformAutoResync ] [-SqlServerLicenseType ] [-SubscriptionId ] [-Tag ] [-TargetAvailabilitySet ] [-TargetAvailabilityZone ] @@ -43,7 +43,7 @@ New-AzMigrateServerReplication -DiskToInclude -LicenseTy New-AzMigrateServerReplication -DiskType -InputObject -LicenseType -OSDiskID -TargetNetworkId -TargetResourceGroupId -TargetSubnetName -TargetVMName [-DiskEncryptionSetID ] - [-DiskTag ] + [-DiskTag ] [-LinuxLicenseType ] [-NicTag ] [-PerformAutoResync ] [-SqlServerLicenseType ] [-SubscriptionId ] [-Tag ] [-TargetAvailabilitySet ] [-TargetAvailabilityZone ] @@ -56,7 +56,7 @@ New-AzMigrateServerReplication -DiskType -InputObject ``` New-AzMigrateServerReplication -DiskToInclude -InputObject -LicenseType -TargetNetworkId -TargetResourceGroupId -TargetSubnetName - -TargetVMName [-DiskTag ] + -TargetVMName [-DiskTag ] [-LinuxLicenseType ] [-NicTag ] [-PerformAutoResync ] [-SqlServerLicenseType ] [-SubscriptionId ] [-Tag ] [-TargetAvailabilitySet ] [-TargetAvailabilityZone ] @@ -171,7 +171,7 @@ Specifies the tag to be used for disk creation. To construct, see NOTES section for DISKTAG properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetDiskTags +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetDiskTags Parameter Sets: (All) Aliases: @@ -187,7 +187,7 @@ Specifies the disks on the source server to be included for replication. To construct, see NOTES section for DISKTOINCLUDE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtDiskInput[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtDiskInput[] Parameter Sets: ByIdPowerUser, ByInputObjectPowerUser Aliases: @@ -245,6 +245,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -LinuxLicenseType +Specifies if Azure Hybrid benefit is applicable for the source linux server to be migrated. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -MachineId Specifies the machine ID of the discovered server to be migrated. @@ -265,7 +280,7 @@ Specifies the tag to be used for NIC creation. To construct, see NOTES section for NICTAG properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetNicTags +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetNicTags Parameter Sets: (All) Aliases: @@ -506,7 +521,7 @@ Specifies the tag to be used for VM creation. To construct, see NOTES section for VMTAG properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetVmtags +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetVmtags Parameter Sets: (All) Aliases: @@ -539,7 +554,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateTestNicMapping.md b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateTestNicMapping.md index 9478918f97ac..3d566f33ed30 100644 --- a/src/Migrate/Migrate.Autorest/docs/New-AzMigrateTestNicMapping.md +++ b/src/Migrate/Migrate.Autorest/docs/New-AzMigrateTestNicMapping.md @@ -105,7 +105,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtNicInput +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtNicInput ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Remove-AzMigrateServerReplication.md b/src/Migrate/Migrate.Autorest/docs/Remove-AzMigrateServerReplication.md index 0a64ea24c59a..1e603eec70ac 100644 --- a/src/Migrate/Migrate.Autorest/docs/Remove-AzMigrateServerReplication.md +++ b/src/Migrate/Migrate.Autorest/docs/Remove-AzMigrateServerReplication.md @@ -129,7 +129,7 @@ The server object should be retrieved using the Get-AzMigrateServerReplication c To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem Parameter Sets: ByInputObjectVMwareCbt Aliases: @@ -178,7 +178,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Restart-AzMigrateServerReplication.md b/src/Migrate/Migrate.Autorest/docs/Restart-AzMigrateServerReplication.md index 44c7c4d8c789..06f0d44802f1 100644 --- a/src/Migrate/Migrate.Autorest/docs/Restart-AzMigrateServerReplication.md +++ b/src/Migrate/Migrate.Autorest/docs/Restart-AzMigrateServerReplication.md @@ -112,7 +112,7 @@ Specifies the machine object of the replicating server. To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem Parameter Sets: ByInputObjectVMwareCbt Aliases: @@ -161,7 +161,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Resume-AzMigrateServerReplication.md b/src/Migrate/Migrate.Autorest/docs/Resume-AzMigrateServerReplication.md index f5f00086a5d6..1fddc017917f 100644 --- a/src/Migrate/Migrate.Autorest/docs/Resume-AzMigrateServerReplication.md +++ b/src/Migrate/Migrate.Autorest/docs/Resume-AzMigrateServerReplication.md @@ -37,7 +37,7 @@ Resume-AzMigrateServerReplication -TargetObjectID "/Subscriptions/xxx-xxx-xxxxxx ```output ActivityId : 0b810233-b0aa-4a4c-a44e-bea4589c0513 ActivityId: ccb4889b-b9ec-4a76-af4d-4eb59c76ebac AllowedAction : {} -CustomDetailAffectedObjectDetail : Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.JobDetailsAffectedObjectDetails +CustomDetailAffectedObjectDetail : Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.JobDetailsAffectedObjectDetails CustomDetailInstanceType : AsrJobDetails EndTime : Error : {} @@ -68,7 +68,7 @@ Resume-AzMigrateServerReplication -InputObject $obj ```output ActivityId : 0b810233-b0aa-4a4c-a44e-bea4589c0513 ActivityId: ccb4889b-b9ec-4a76-af4d-4eb59c76ebac AllowedAction : {} -CustomDetailAffectedObjectDetail : Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.JobDetailsAffectedObjectDetails +CustomDetailAffectedObjectDetail : Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.JobDetailsAffectedObjectDetails CustomDetailInstanceType : AsrJobDetails EndTime : Error : {} @@ -128,7 +128,7 @@ The server object can be retrieved using the Get-AzMigrateServerReplication cmdl To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem Parameter Sets: ByInputObjectVMwareCbt Aliases: @@ -208,7 +208,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Set-AzMigrateDiskMapping.md b/src/Migrate/Migrate.Autorest/docs/Set-AzMigrateDiskMapping.md index 1f9d2d7e143e..4247ea0c100b 100644 --- a/src/Migrate/Migrate.Autorest/docs/Set-AzMigrateDiskMapping.md +++ b/src/Migrate/Migrate.Autorest/docs/Set-AzMigrateDiskMapping.md @@ -88,7 +88,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtUpdateDiskInput +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtUpdateDiskInput ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Set-AzMigrateServerReplication.md b/src/Migrate/Migrate.Autorest/docs/Set-AzMigrateServerReplication.md index 206068e0abe6..adb7fd68ab89 100644 --- a/src/Migrate/Migrate.Autorest/docs/Set-AzMigrateServerReplication.md +++ b/src/Migrate/Migrate.Autorest/docs/Set-AzMigrateServerReplication.md @@ -15,8 +15,8 @@ Updates the target properties for the replicating server. ### ByIDVMwareCbt (Default) ``` Set-AzMigrateServerReplication -TargetObjectID [-DiskToUpdate ] - [-NicToUpdate ] [-SqlServerLicenseType ] [-SubscriptionId ] - [-TargetAvailabilitySet ] [-TargetAvailabilityZone ] + [-LinuxLicenseType ] [-NicToUpdate ] [-SqlServerLicenseType ] + [-SubscriptionId ] [-TargetAvailabilitySet ] [-TargetAvailabilityZone ] [-TargetBootDiagnosticsStorageAccount ] [-TargetDiskName ] [-TargetNetworkId ] [-TargetResourceGroupID ] [-TargetVMName ] [-TargetVMSize ] [-TestNetworkId ] [-UpdateDiskTag ] [-UpdateDiskTagOperation ] @@ -29,8 +29,8 @@ Set-AzMigrateServerReplication -TargetObjectID [-DiskToUpdate [-DiskToUpdate ] - [-NicToUpdate ] [-SqlServerLicenseType ] [-SubscriptionId ] - [-TargetAvailabilitySet ] [-TargetAvailabilityZone ] + [-LinuxLicenseType ] [-NicToUpdate ] [-SqlServerLicenseType ] + [-SubscriptionId ] [-TargetAvailabilitySet ] [-TargetAvailabilityZone ] [-TargetBootDiagnosticsStorageAccount ] [-TargetDiskName ] [-TargetNetworkId ] [-TargetResourceGroupID ] [-TargetVMName ] [-TargetVMSize ] [-TestNetworkId ] [-UpdateDiskTag ] [-UpdateDiskTagOperation ] @@ -132,7 +132,7 @@ Updates the disk for the Azure VM to be created. To construct, see NOTES section for DISKTOUPDATE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtUpdateDiskInput[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtUpdateDiskInput[] Parameter Sets: (All) Aliases: @@ -149,7 +149,7 @@ The server object can be retrieved using the Get-AzMigrateServerReplication cmdl To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem Parameter Sets: ByInputObjectVMwareCbt Aliases: @@ -160,12 +160,27 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -LinuxLicenseType +Specifies if Azure Hybrid benefit is applicable for the source linux server to be migrated. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -NicToUpdate Updates the NIC for the Azure VM to be created. To construct, see NOTES section for NICTOUPDATE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtNicInput[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtNicInput[] Parameter Sets: (All) Aliases: @@ -363,7 +378,7 @@ Specifies the tag to be used for disk creation. To construct, see NOTES section for UPDATEDISKTAG properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetDiskTags +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetDiskTags Parameter Sets: (All) Aliases: @@ -394,7 +409,7 @@ Specifies the tag to be used for NIC creation. To construct, see NOTES section for UPDATENICTAG properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetNicTags +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetNicTags Parameter Sets: (All) Aliases: @@ -455,7 +470,7 @@ Specifies the tag to be used for VM creation. To construct, see NOTES section for UPDATEVMTAG properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtEnableMigrationInputTargetVmtags +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtEnableMigrationInputTargetVmtags Parameter Sets: (All) Aliases: @@ -488,7 +503,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateServerMigration.md b/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateServerMigration.md index e279b30f11dd..e4a52ee0324f 100644 --- a/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateServerMigration.md +++ b/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateServerMigration.md @@ -82,7 +82,7 @@ The server object can be retrieved using the Get-AzMigrateServerReplication cmdl To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem Parameter Sets: ByInputObjectVMwareCbt Aliases: @@ -162,7 +162,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateTestMigration.md b/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateTestMigration.md index f75af6142f57..9ed1e43089cd 100644 --- a/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateTestMigration.md +++ b/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateTestMigration.md @@ -117,7 +117,7 @@ The server object can be retrieved using the Get-AzMigrateServerReplication cmdl To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem Parameter Sets: ByInputObjectVMwareCbt Aliases: @@ -133,7 +133,7 @@ Updates the NIC for the Azure VM to be created. To construct, see NOTES section for NICTOUPDATE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IVMwareCbtNicInput[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IVMwareCbtNicInput[] Parameter Sets: (All) Aliases: @@ -213,7 +213,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateTestMigrationCleanup.md b/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateTestMigrationCleanup.md index d45d35cffdde..e10bbc22304e 100644 --- a/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateTestMigrationCleanup.md +++ b/src/Migrate/Migrate.Autorest/docs/Start-AzMigrateTestMigrationCleanup.md @@ -117,7 +117,7 @@ The server object can be retrieved using the Get-AzMigrateServerReplication cmdl To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem Parameter Sets: ByInputObjectVMwareCbt Aliases: @@ -166,7 +166,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob ## NOTES diff --git a/src/Migrate/Migrate.Autorest/docs/Suspend-AzMigrateServerReplication.md b/src/Migrate/Migrate.Autorest/docs/Suspend-AzMigrateServerReplication.md index 83941e017a03..4ebaf6166958 100644 --- a/src/Migrate/Migrate.Autorest/docs/Suspend-AzMigrateServerReplication.md +++ b/src/Migrate/Migrate.Autorest/docs/Suspend-AzMigrateServerReplication.md @@ -37,7 +37,7 @@ Suspend-AzMigrateServerReplication -TargetObjectID "/Subscriptions/xxx-xxx-xxxxx ```output ActivityId : da61a495-48b7-40df-a251-f23f491b2566 ActivityId: e16e0301-be13-4c35-8242-1451cb057994 AllowedAction : {} -CustomDetailAffectedObjectDetail : Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.JobDetailsAffectedObjectDetails +CustomDetailAffectedObjectDetail : Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.JobDetailsAffectedObjectDetails CustomDetailInstanceType : AsrJobDetails EndTime : Error : {} @@ -68,7 +68,7 @@ Suspend-AzMigrateServerReplication -InputObject $obj ```output ActivityId : da61a495-48b7-40df-a251-f23f491b2566 ActivityId: e16e0301-be13-4c35-8242-1451cb057994 AllowedAction : {} -CustomDetailAffectedObjectDetail : Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.JobDetailsAffectedObjectDetails +CustomDetailAffectedObjectDetail : Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.JobDetailsAffectedObjectDetails CustomDetailInstanceType : AsrJobDetails EndTime : Error : {} @@ -113,7 +113,7 @@ The server object can be retrieved using the Get-AzMigrateServerReplication cmdl To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IMigrationItem +Type: Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IMigrationItem Parameter Sets: ByInputObjectVMwareCbt Aliases: @@ -193,7 +193,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.IJob +### Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.IJob ## NOTES diff --git a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateJob.Recording.json b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateJob.Recording.json index 11df93d2e1a9..bc7a0deddb03 100644 --- a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateJob.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateJob.Recording.json @@ -37,10 +37,10 @@ "Content": "{\"id\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Migrate/MigrateProjects/signoffccyproj/Solutions/Servers-Migration-ServerMigration\",\"name\":\"Servers-Migration-ServerMigration\",\"type\":\"Microsoft.Migrate/MigrateProjects/Solutions\",\"etag\":\"\\\"0400a1d3-0000-3300-0000-62dd866f0000\\\"\",\"properties\":{\"tool\":\"ServerMigration\",\"purpose\":\"Migration\",\"goal\":\"Servers\",\"status\":\"Active\",\"cleanupState\":\"None\",\"summary\":{\"instanceType\":\"Servers\",\"discoveredCount\":0,\"assessedCount\":0,\"replicatingCount\":7,\"testMigratedCount\":0,\"migratedCount\":0},\"details\":{\"groupCount\":0,\"assessmentCount\":0,\"extendedDetails\":{\"serversOnWindows\":\"0\",\"serversOnLinux\":\"0\",\"serversOnOther\":\"0\",\"dependencyEnabledMachines\":\"0\",\"machinesHavingSqlServers\":\"0\",\"machinesHavingWebServers\":\"0\",\"vaultId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault\"}}}}" } }, - "Get-AzMigrateJob+[NoContext]+ListByName+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs?api-version=2023-01-01+2": { + "Get-AzMigrateJob+[NoContext]+ListByName+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "12" ], @@ -115,10 +115,10 @@ "Content": "{\"id\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Migrate/MigrateProjects/signoffccyproj/Solutions/Servers-Migration-ServerMigration\",\"name\":\"Servers-Migration-ServerMigration\",\"type\":\"Microsoft.Migrate/MigrateProjects/Solutions\",\"etag\":\"\\\"0400a1d3-0000-3300-0000-62dd866f0000\\\"\",\"properties\":{\"tool\":\"ServerMigration\",\"purpose\":\"Migration\",\"goal\":\"Servers\",\"status\":\"Active\",\"cleanupState\":\"None\",\"summary\":{\"instanceType\":\"Servers\",\"discoveredCount\":0,\"assessedCount\":0,\"replicatingCount\":7,\"testMigratedCount\":0,\"migratedCount\":0},\"details\":{\"groupCount\":0,\"assessmentCount\":0,\"extendedDetails\":{\"serversOnWindows\":\"0\",\"serversOnLinux\":\"0\",\"serversOnOther\":\"0\",\"dependencyEnabledMachines\":\"0\",\"machinesHavingSqlServers\":\"0\",\"machinesHavingWebServers\":\"0\",\"vaultId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault\"}}}}" } }, - "Get-AzMigrateJob+[NoContext]+GetByName+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2023-01-01+2": { + "Get-AzMigrateJob+[NoContext]+GetByName+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "14" ], @@ -155,10 +155,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee\",\"name\":\"6c92fea4-5041-4b2c-8378-ab110ba7bcee\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationJobs\",\"properties\":{\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\",\"scenarioName\":\"UpdateVmProperties\",\"friendlyName\":\"Update the virtual machine\",\"state\":\"CompletedWithInformation\",\"stateDescription\":\"CompletedWithInformation\",\"tasks\":[{\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\",\"name\":\"UpdateVmPropertiesTask\",\"startTime\":\"2022-09-19T05:09:07.5246349Z\",\"endTime\":\"2022-09-19T05:09:12.9890202Z\",\"allowedActions\":[],\"friendlyName\":\"Update the virtual machine properties\",\"state\":\"Succeeded\",\"stateDescription\":\"Completed\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[{\"serviceErrorDetails\":{\"code\":\"110133\",\"message\":\"The network interface name \u0027nic-win2k12-01-00\u0027 is unavailable.\",\"possibleCauses\":\"A network interface of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two network interfaces with the same name in a resource group. Choose a different name for the network interface. If you go ahead with the same name, a unique identifier will be appended to network interface’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"0cb0c34e-7b59-433b-aca0-b522908899c3\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8483147Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110135\",\"message\":\"The managed disk name \u0027win2k12-01-OSdisk-00\u0027 is unavailable.\",\"possibleCauses\":\"A managed disk of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two managed disks with the same name in a resource group. Choose a different name for the managed disk. If you go ahead with the same name, a unique identifier will be appended to disk’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"3977a6a7-cdfd-429e-aaa8-ca4b76f05b1b\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8796245Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110070\",\"message\":\"The virtual machine name \u0027win2k12-01\u0027 is unavailable.\",\"possibleCauses\":\"A virtual machine of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two virtual machines with the same name in a resource group. Choose a different name for the virtual machine. If you go ahead with the same name, a unique identifier will be appended to machine’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"e6716c7e-50b9-426a-97ec-f146d856d6fe\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.7858135Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"}]}],\"errors\":[{\"serviceErrorDetails\":{\"code\":\"110133\",\"message\":\"The network interface name \u0027nic-win2k12-01-00\u0027 is unavailable.\",\"possibleCauses\":\"A network interface of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two network interfaces with the same name in a resource group. Choose a different name for the network interface. If you go ahead with the same name, a unique identifier will be appended to network interface’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"0cb0c34e-7b59-433b-aca0-b522908899c3\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8483147Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110135\",\"message\":\"The managed disk name \u0027win2k12-01-OSdisk-00\u0027 is unavailable.\",\"possibleCauses\":\"A managed disk of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two managed disks with the same name in a resource group. Choose a different name for the managed disk. If you go ahead with the same name, a unique identifier will be appended to disk’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"3977a6a7-cdfd-429e-aaa8-ca4b76f05b1b\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8796245Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110070\",\"message\":\"The virtual machine name \u0027win2k12-01\u0027 is unavailable.\",\"possibleCauses\":\"A virtual machine of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two virtual machines with the same name in a resource group. Choose a different name for the virtual machine. If you go ahead with the same name, a unique identifier will be appended to machine’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"e6716c7e-50b9-426a-97ec-f146d856d6fe\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.7858135Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"}],\"startTime\":\"2022-09-19T05:09:06.5411058Z\",\"endTime\":\"2022-09-19T05:09:12Z\",\"allowedActions\":[],\"targetObjectId\":\"7a910bd8-5ab1-58d5-9f98-493d53dd9fae\",\"targetObjectName\":\"win2k12-01\",\"targetInstanceType\":\"ProtectionEntity\",\"customDetails\":{\"instanceType\":\"AsrJobDetails\",\"affectedObjectDetails\":{\"primaryVmId\":\"7a910bd8-5ab1-58d5-9f98-493d53dd9fae\",\"primaryVmName\":\"win2k12-01\",\"recoveryVmId\":\"\",\"recoveryVmName\":\"win2k12-01\",\"protectionProfileId\":\"4af409af-0d07-5e52-95dc-1e472a625f17\",\"primaryCloudId\":\"cloud_e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryCloudName\":\"signoffccyappae52replicationcontainer\",\"recoveryCloudId\":\"d38048d4-b460-4791-8ece-108395ee8478\",\"recoveryCloudName\":\"Microsoft Azure\",\"primaryVmmId\":\"e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryVmmName\":\"signoffccyappae52replicationfabric\",\"recoveryVmmId\":\"21a9403c-6ec1-44f2-b744-b4e50b792387\",\"recoveryVmmName\":\"Microsoft Azure\",\"primaryFabricProviderId\":\"VMwareV2\",\"recoveryFabricProviderId\":\"Azure\"}}}}" } }, - "Get-AzMigrateJob+[NoContext]+GetByID+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2023-01-01+1": { + "Get-AzMigrateJob+[NoContext]+GetByID+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "15" ], @@ -195,10 +195,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee\",\"name\":\"6c92fea4-5041-4b2c-8378-ab110ba7bcee\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationJobs\",\"properties\":{\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\",\"scenarioName\":\"UpdateVmProperties\",\"friendlyName\":\"Update the virtual machine\",\"state\":\"CompletedWithInformation\",\"stateDescription\":\"CompletedWithInformation\",\"tasks\":[{\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\",\"name\":\"UpdateVmPropertiesTask\",\"startTime\":\"2022-09-19T05:09:07.5246349Z\",\"endTime\":\"2022-09-19T05:09:12.9890202Z\",\"allowedActions\":[],\"friendlyName\":\"Update the virtual machine properties\",\"state\":\"Succeeded\",\"stateDescription\":\"Completed\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[{\"serviceErrorDetails\":{\"code\":\"110133\",\"message\":\"The network interface name \u0027nic-win2k12-01-00\u0027 is unavailable.\",\"possibleCauses\":\"A network interface of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two network interfaces with the same name in a resource group. Choose a different name for the network interface. If you go ahead with the same name, a unique identifier will be appended to network interface’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"0cb0c34e-7b59-433b-aca0-b522908899c3\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8483147Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110135\",\"message\":\"The managed disk name \u0027win2k12-01-OSdisk-00\u0027 is unavailable.\",\"possibleCauses\":\"A managed disk of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two managed disks with the same name in a resource group. Choose a different name for the managed disk. If you go ahead with the same name, a unique identifier will be appended to disk’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"3977a6a7-cdfd-429e-aaa8-ca4b76f05b1b\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8796245Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110070\",\"message\":\"The virtual machine name \u0027win2k12-01\u0027 is unavailable.\",\"possibleCauses\":\"A virtual machine of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two virtual machines with the same name in a resource group. Choose a different name for the virtual machine. If you go ahead with the same name, a unique identifier will be appended to machine’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"e6716c7e-50b9-426a-97ec-f146d856d6fe\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.7858135Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"}]}],\"errors\":[{\"serviceErrorDetails\":{\"code\":\"110133\",\"message\":\"The network interface name \u0027nic-win2k12-01-00\u0027 is unavailable.\",\"possibleCauses\":\"A network interface of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two network interfaces with the same name in a resource group. Choose a different name for the network interface. If you go ahead with the same name, a unique identifier will be appended to network interface’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"0cb0c34e-7b59-433b-aca0-b522908899c3\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8483147Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110135\",\"message\":\"The managed disk name \u0027win2k12-01-OSdisk-00\u0027 is unavailable.\",\"possibleCauses\":\"A managed disk of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two managed disks with the same name in a resource group. Choose a different name for the managed disk. If you go ahead with the same name, a unique identifier will be appended to disk’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"3977a6a7-cdfd-429e-aaa8-ca4b76f05b1b\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8796245Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110070\",\"message\":\"The virtual machine name \u0027win2k12-01\u0027 is unavailable.\",\"possibleCauses\":\"A virtual machine of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two virtual machines with the same name in a resource group. Choose a different name for the virtual machine. If you go ahead with the same name, a unique identifier will be appended to machine’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"e6716c7e-50b9-426a-97ec-f146d856d6fe\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.7858135Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"}],\"startTime\":\"2022-09-19T05:09:06.5411058Z\",\"endTime\":\"2022-09-19T05:09:12Z\",\"allowedActions\":[],\"targetObjectId\":\"7a910bd8-5ab1-58d5-9f98-493d53dd9fae\",\"targetObjectName\":\"win2k12-01\",\"targetInstanceType\":\"ProtectionEntity\",\"customDetails\":{\"instanceType\":\"AsrJobDetails\",\"affectedObjectDetails\":{\"primaryVmId\":\"7a910bd8-5ab1-58d5-9f98-493d53dd9fae\",\"primaryVmName\":\"win2k12-01\",\"recoveryVmId\":\"\",\"recoveryVmName\":\"win2k12-01\",\"protectionProfileId\":\"4af409af-0d07-5e52-95dc-1e472a625f17\",\"primaryCloudId\":\"cloud_e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryCloudName\":\"signoffccyappae52replicationcontainer\",\"recoveryCloudId\":\"d38048d4-b460-4791-8ece-108395ee8478\",\"recoveryCloudName\":\"Microsoft Azure\",\"primaryVmmId\":\"e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryVmmName\":\"signoffccyappae52replicationfabric\",\"recoveryVmmId\":\"21a9403c-6ec1-44f2-b744-b4e50b792387\",\"recoveryVmmName\":\"Microsoft Azure\",\"primaryFabricProviderId\":\"VMwareV2\",\"recoveryFabricProviderId\":\"Azure\"}}}}" } }, - "Get-AzMigrateJob+[NoContext]+GetByInputObject+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2023-01-01+1": { + "Get-AzMigrateJob+[NoContext]+GetByInputObject+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "16" ], @@ -235,10 +235,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee\",\"name\":\"6c92fea4-5041-4b2c-8378-ab110ba7bcee\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationJobs\",\"properties\":{\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\",\"scenarioName\":\"UpdateVmProperties\",\"friendlyName\":\"Update the virtual machine\",\"state\":\"CompletedWithInformation\",\"stateDescription\":\"CompletedWithInformation\",\"tasks\":[{\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\",\"name\":\"UpdateVmPropertiesTask\",\"startTime\":\"2022-09-19T05:09:07.5246349Z\",\"endTime\":\"2022-09-19T05:09:12.9890202Z\",\"allowedActions\":[],\"friendlyName\":\"Update the virtual machine properties\",\"state\":\"Succeeded\",\"stateDescription\":\"Completed\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[{\"serviceErrorDetails\":{\"code\":\"110133\",\"message\":\"The network interface name \u0027nic-win2k12-01-00\u0027 is unavailable.\",\"possibleCauses\":\"A network interface of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two network interfaces with the same name in a resource group. Choose a different name for the network interface. If you go ahead with the same name, a unique identifier will be appended to network interface’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"0cb0c34e-7b59-433b-aca0-b522908899c3\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8483147Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110135\",\"message\":\"The managed disk name \u0027win2k12-01-OSdisk-00\u0027 is unavailable.\",\"possibleCauses\":\"A managed disk of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two managed disks with the same name in a resource group. Choose a different name for the managed disk. If you go ahead with the same name, a unique identifier will be appended to disk’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"3977a6a7-cdfd-429e-aaa8-ca4b76f05b1b\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8796245Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110070\",\"message\":\"The virtual machine name \u0027win2k12-01\u0027 is unavailable.\",\"possibleCauses\":\"A virtual machine of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two virtual machines with the same name in a resource group. Choose a different name for the virtual machine. If you go ahead with the same name, a unique identifier will be appended to machine’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"e6716c7e-50b9-426a-97ec-f146d856d6fe\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.7858135Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"}]}],\"errors\":[{\"serviceErrorDetails\":{\"code\":\"110133\",\"message\":\"The network interface name \u0027nic-win2k12-01-00\u0027 is unavailable.\",\"possibleCauses\":\"A network interface of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two network interfaces with the same name in a resource group. Choose a different name for the network interface. If you go ahead with the same name, a unique identifier will be appended to network interface’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"0cb0c34e-7b59-433b-aca0-b522908899c3\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8483147Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110135\",\"message\":\"The managed disk name \u0027win2k12-01-OSdisk-00\u0027 is unavailable.\",\"possibleCauses\":\"A managed disk of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two managed disks with the same name in a resource group. Choose a different name for the managed disk. If you go ahead with the same name, a unique identifier will be appended to disk’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"3977a6a7-cdfd-429e-aaa8-ca4b76f05b1b\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.8796245Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"},{\"serviceErrorDetails\":{\"code\":\"110070\",\"message\":\"The virtual machine name \u0027win2k12-01\u0027 is unavailable.\",\"possibleCauses\":\"A virtual machine of the same name already exists in the resource group \u0027fancy(migrate)\u0027.\",\"recommendedAction\":\"Microsoft Azure doesn’t allow two virtual machines with the same name in a resource group. Choose a different name for the virtual machine. If you go ahead with the same name, a unique identifier will be appended to machine’s name when it is migrated.\",\"activityId\":\"98fd5484-c3f6-4f28-a0e6-9988a8d2f02d ActivityId: cdf2fd70-5bc6-4448-8647-eea6dbf96072\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"e6716c7e-50b9-426a-97ec-f146d856d6fe\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Info\",\"creationTime\":\"2022-09-19T05:09:12.7858135Z\",\"taskId\":\"b66eb3b0-3828-4599-8b26-102bda067a53\"}],\"startTime\":\"2022-09-19T05:09:06.5411058Z\",\"endTime\":\"2022-09-19T05:09:12Z\",\"allowedActions\":[],\"targetObjectId\":\"7a910bd8-5ab1-58d5-9f98-493d53dd9fae\",\"targetObjectName\":\"win2k12-01\",\"targetInstanceType\":\"ProtectionEntity\",\"customDetails\":{\"instanceType\":\"AsrJobDetails\",\"affectedObjectDetails\":{\"primaryVmId\":\"7a910bd8-5ab1-58d5-9f98-493d53dd9fae\",\"primaryVmName\":\"win2k12-01\",\"recoveryVmId\":\"\",\"recoveryVmName\":\"win2k12-01\",\"protectionProfileId\":\"4af409af-0d07-5e52-95dc-1e472a625f17\",\"primaryCloudId\":\"cloud_e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryCloudName\":\"signoffccyappae52replicationcontainer\",\"recoveryCloudId\":\"d38048d4-b460-4791-8ece-108395ee8478\",\"recoveryCloudName\":\"Microsoft Azure\",\"primaryVmmId\":\"e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryVmmName\":\"signoffccyappae52replicationfabric\",\"recoveryVmmId\":\"21a9403c-6ec1-44f2-b744-b4e50b792387\",\"recoveryVmmName\":\"Microsoft Azure\",\"primaryFabricProviderId\":\"VMwareV2\",\"recoveryFabricProviderId\":\"Azure\"}}}}" } }, - "Get-AzMigrateJob+[NoContext]+GetByInputObject+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2023-01-01+2": { + "Get-AzMigrateJob+[NoContext]+GetByInputObject+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6c92fea4-5041-4b2c-8378-ab110ba7bcee?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "17" ], @@ -313,10 +313,10 @@ "Content": "{\"id\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Migrate/MigrateProjects/signoffccyproj/Solutions/Servers-Migration-ServerMigration\",\"name\":\"Servers-Migration-ServerMigration\",\"type\":\"Microsoft.Migrate/MigrateProjects/Solutions\",\"etag\":\"\\\"0400a1d3-0000-3300-0000-62dd866f0000\\\"\",\"properties\":{\"tool\":\"ServerMigration\",\"purpose\":\"Migration\",\"goal\":\"Servers\",\"status\":\"Active\",\"cleanupState\":\"None\",\"summary\":{\"instanceType\":\"Servers\",\"discoveredCount\":0,\"assessedCount\":0,\"replicatingCount\":7,\"testMigratedCount\":0,\"migratedCount\":0},\"details\":{\"groupCount\":0,\"assessmentCount\":0,\"extendedDetails\":{\"serversOnWindows\":\"0\",\"serversOnLinux\":\"0\",\"serversOnOther\":\"0\",\"dependencyEnabledMachines\":\"0\",\"machinesHavingSqlServers\":\"0\",\"machinesHavingWebServers\":\"0\",\"vaultId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault\"}}}}" } }, - "Get-AzMigrateJob+[NoContext]+ListById+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs?api-version=2023-01-01+2": { + "Get-AzMigrateJob+[NoContext]+ListById+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "19" ], diff --git a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationFabric.Recording.json b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationFabric.Recording.json index 07c7fb919a7d..7f30ce088cdb 100644 --- a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationFabric.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationFabric.Recording.json @@ -1,8 +1,8 @@ { - "Get-AzMigrateReplicationFabric+[NoContext]+List+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationFabric+[NoContext]+List+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "21" ], @@ -39,10 +39,10 @@ "Content": "{\"value\":[{\"name\":\"signoffccyappae52replicationfabric\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics\",\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric\",\"properties\":{\"friendlyName\":\"signoffccyappae52replicationfabric\",\"encryptionDetails\":{\"kekState\":\"None\",\"kekCertThumbprint\":null},\"rolloverEncryptionDetails\":{\"kekState\":\"None\",\"kekCertThumbprint\":null},\"internalIdentifier\":\"e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"bcdrState\":\"Valid\",\"customDetails\":{\"instanceType\":\"VMwareV2\",\"vmwareSiteId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site\",\"physicalSiteId\":null,\"migrationSolutionId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Migrate/MigrateProjects/signoffccyproj/Solutions/Servers-Migration-ServerMigration\",\"serviceEndpoint\":\"https://pod01-srs1.ccy.hypervrecoverymanager.windowsazure.com\",\"serviceResourceId\":\"2966956768769697278\",\"serviceContainerId\":\"10186957526572\",\"processServers\":[]},\"healthErrorDetails\":[],\"health\":\"Normal\"}}],\"nextLink\":null}" } }, - "Get-AzMigrateReplicationFabric+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationFabric+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "22" ], diff --git a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationPolicy.Recording.json b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationPolicy.Recording.json index 8acaf2946059..cb5a53e9c936 100644 --- a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationPolicy.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationPolicy.Recording.json @@ -1,8 +1,8 @@ { - "Get-AzMigrateReplicationPolicy+[NoContext]+List+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationPolicy+[NoContext]+List+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "23" ], @@ -39,10 +39,10 @@ "Content": "{\"value\":[{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"name\":\"migratesignoffccyapp3352sitepolicy\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationPolicies\",\"properties\":{\"friendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"recoveryPointHistoryInMinutes\":4320,\"appConsistentFrequencyInMinutes\":240,\"crashConsistentFrequencyInMinutes\":60}}}],\"nextLink\":null}" } }, - "Get-AzMigrateReplicationPolicy+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationPolicy+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "24" ], diff --git a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationProtectionContainer.Recording.json b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationProtectionContainer.Recording.json index f2db9749382e..8c807efabe64 100644 --- a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationProtectionContainer.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationProtectionContainer.Recording.json @@ -1,8 +1,8 @@ { - "Get-AzMigrateReplicationProtectionContainer+[NoContext]+List+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationProtectionContainers?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationProtectionContainer+[NoContext]+List+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationProtectionContainers?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationProtectionContainers?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationProtectionContainers?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "25" ], @@ -39,10 +39,10 @@ "Content": "{\"value\":[{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer\",\"name\":\"signoffccyappae52replicationcontainer\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\"properties\":{\"fabricFriendlyName\":\"signoffccyappae52replicationfabric\",\"friendlyName\":\"signoffccyappae52replicationcontainer\",\"fabricType\":\"VMwareV2\",\"protectedItemCount\":7,\"pairingStatus\":\"Paired\",\"role\":\"Primary\",\"fabricSpecificDetails\":null}}],\"nextLink\":null}" } }, - "Get-AzMigrateReplicationProtectionContainer+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationProtectionContainer+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "26" ], @@ -79,10 +79,10 @@ "Content": "{\"value\":[{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer\",\"name\":\"signoffccyappae52replicationcontainer\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\"properties\":{\"fabricFriendlyName\":\"signoffccyappae52replicationfabric\",\"friendlyName\":\"signoffccyappae52replicationcontainer\",\"fabricType\":\"VMwareV2\",\"protectedItemCount\":7,\"pairingStatus\":\"Paired\",\"role\":\"Primary\",\"fabricSpecificDetails\":null}}],\"nextLink\":null}" } }, - "Get-AzMigrateReplicationProtectionContainer+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationProtectionContainer+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "27" ], diff --git a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationProtectionContainerMapping.Recording.json b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationProtectionContainerMapping.Recording.json index 37c758d85fd2..8843db3e62a2 100644 --- a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationProtectionContainerMapping.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationProtectionContainerMapping.Recording.json @@ -1,8 +1,8 @@ { - "Get-AzMigrateReplicationProtectionContainerMapping+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationProtectionContainerMappings?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationProtectionContainerMapping+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationProtectionContainerMappings?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationProtectionContainerMappings?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationProtectionContainerMappings?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "28" ], @@ -39,10 +39,10 @@ "Content": "{\"value\":[{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping\",\"name\":\"containermapping\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\"properties\":{\"targetProtectionContainerId\":\"Microsoft Azure\",\"targetProtectionContainerFriendlyName\":\"Microsoft Azure\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"keyVaultId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.KeyVault/vaults/migratekv1612849844\",\"keyVaultUri\":\"https://migratekv1612849844.vault.azure.net\",\"storageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migrategwsa1612849844\",\"storageAccountSasSecretName\":\"migrategwsa1612849844-gwySas\",\"serviceBusConnectionStringSecretName\":\"ServiceBusConnectionString\",\"targetLocation\":\"centraluseuap\",\"roleSizeToNicCountMap\":{\"default\":1,\"extraSmall\":2,\"small\":2,\"medium\":2,\"large\":2,\"a6\":2,\"a7\":4,\"a8\":2,\"a9\":4,\"a10\":2,\"a11\":4,\"standard_NV6\":2,\"standard_NV12\":2,\"standard_NV24\":4,\"standard_NV6_Promo\":2,\"standard_NV12_Promo\":2,\"standard_NV24_Promo\":4,\"standard_NV6s_v2\":4,\"standard_NV12s_v2\":8,\"standard_NV24s_v2\":8,\"standard_NV12s_v3\":4,\"standard_NV24s_v3\":8,\"standard_NV48s_v3\":8,\"standard_NV4as_v4\":2,\"standard_NV8as_v4\":4,\"standard_NV16as_v4\":8,\"standard_NV32as_v4\":8,\"standard_NC6\":2,\"standard_NC12\":2,\"standard_NC24\":4,\"standard_NC24r\":4,\"standard_NC6_Promo\":2,\"standard_NC12_Promo\":2,\"standard_NC24_Promo\":4,\"standard_NC24r_Promo\":4,\"standard_NC6s_v3\":4,\"standard_NC12s_v3\":8,\"standard_NC24rs_v3\":8,\"standard_NC24s_v3\":8,\"standard_NC6s_v2\":4,\"standard_NC12s_v2\":8,\"standard_NC24rs_v2\":8,\"standard_NC24s_v2\":8,\"standard_ND6s\":4,\"standard_ND12s\":8,\"standard_ND24s\":8,\"standard_ND24rs\":8,\"standard_ND40s_v2\":8,\"standard_ND40rs_v2\":8,\"standard_ND40s_v3\":1,\"standard_M208ms_v2\":8,\"standard_M208s_v2\":8,\"standard_M416-208s_v2\":8,\"standard_M416s_v2\":8,\"standard_M416-208ms_v2\":8,\"standard_M416ms_v2\":8,\"standard_M8ms\":4,\"standard_M16ms\":8,\"standard_M32ts\":8,\"standard_M32ls\":8,\"standard_M32ms\":8,\"standard_M64s\":8,\"standard_M64ls\":8,\"standard_M64ms\":8,\"standard_M128s\":8,\"standard_M128ms\":8,\"standard_M64\":8,\"standard_M64m\":8,\"standard_M128\":8,\"standard_M128m\":8,\"standard_M8-2ms\":2,\"standard_M8-4ms\":2,\"standard_M16-4ms\":2,\"standard_M16-8ms\":2,\"standard_M32-8ms\":8,\"standard_M32-16ms\":8,\"standard_M64-16ms\":8,\"standard_M64-32ms\":8,\"standard_M128-32ms\":8,\"standard_M128-64ms\":8,\"standard_L4s\":2,\"standard_L8s\":4,\"standard_L16s\":8,\"standard_L32s\":8,\"standard_L8s_v2\":2,\"standard_L16s_v2\":4,\"standard_L32s_v2\":8,\"standard_L48s_v2\":8,\"standard_L64s_v2\":8,\"standard_L80s_v2\":8,\"standard_H8\":2,\"standard_H16\":4,\"standard_H8m\":2,\"standard_H16m\":4,\"standard_H16r\":4,\"standard_H16mr\":4,\"standard_H8_Promo\":2,\"standard_H16_Promo\":4,\"standard_H8m_Promo\":2,\"standard_H16m_Promo\":4,\"standard_H16r_Promo\":4,\"standard_H16mr_Promo\":4,\"standard_HB60rs\":2,\"standard_HB120rs_v2\":2,\"standard_HC44rs\":2,\"standard_G1\":2,\"standard_G2\":2,\"standard_G3\":4,\"standard_G4\":8,\"standard_G5\":8,\"standard_GS1\":2,\"standard_GS2\":2,\"standard_GS3\":4,\"standard_GS4\":8,\"standard_GS4-4\":8,\"standard_GS4-8\":8,\"standard_GS5\":8,\"standard_GS5-8\":8,\"standard_GS5-16\":8,\"standard_F1\":2,\"standard_F2\":2,\"standard_F4\":4,\"standard_F8\":8,\"standard_F16\":8,\"standard_F1s\":2,\"standard_F2s\":2,\"standard_F4s\":4,\"standard_F8s\":8,\"standard_F16s\":8,\"standard_F2s_v2\":2,\"standard_F4s_v2\":2,\"standard_F8s_v2\":4,\"standard_F16s_v2\":4,\"standard_F32s_v2\":8,\"standard_F48s_v2\":8,\"standard_F64s_v2\":8,\"standard_F72s_v2\":8,\"standard_E2_v3\":2,\"standard_E4_v3\":2,\"standard_E8_v3\":4,\"standard_E16_v3\":8,\"standard_E20_v3\":8,\"standard_E32_v3\":8,\"standard_E48_v3\":8,\"standard_E64_v3\":8,\"standard_E64i_v3\":8,\"standard_E64is_v3\":8,\"standard_E2_v4\":2,\"standard_E4_v4\":2,\"standard_E8_v4\":4,\"standard_E16_v4\":8,\"standard_E20_v4\":8,\"standard_E32_v4\":8,\"standard_E48_v4\":8,\"standard_E64_v4\":8,\"standard_E2s_v3\":2,\"standard_E4s_v3\":2,\"standard_E4-2s_v3\":2,\"standard_E8s_v3\":4,\"standard_E8-2s_v3\":4,\"standard_E8-4s_v3\":4,\"standard_E16s_v3\":8,\"standard_E16-4s_v3\":8,\"standard_E16-8s_v3\":8,\"standard_E20s_v3\":8,\"standard_E32s_v3\":8,\"standard_E32-8s_v3\":8,\"standard_E32-16s_v3\":8,\"standard_E48s_v3\":8,\"standard_E64s_v3\":8,\"standard_E64-16s_v3\":8,\"standard_E64-32s_v3\":8,\"standard_E2a_v4\":2,\"standard_E4a_v4\":2,\"standard_E8a_v4\":4,\"standard_E16a_v4\":8,\"standard_E20a_v4\":8,\"standard_E32a_v4\":8,\"standard_E48a_v4\":8,\"standard_E64a_v4\":8,\"standard_E96a_v4\":8,\"standard_E2as_v4\":2,\"standard_E4as_v4\":2,\"standard_E8as_v4\":4,\"standard_E16as_v4\":8,\"standard_E20as_v4\":8,\"standard_E32as_v4\":8,\"standard_E48as_v4\":8,\"standard_E64as_v4\":8,\"standard_E96as_v4\":8,\"standard_E2d_v4\":2,\"standard_E4d_v4\":2,\"standard_E8d_v4\":4,\"standard_E16d_v4\":8,\"standard_E20d_v4\":8,\"standard_E32d_v4\":8,\"standard_E48d_v4\":8,\"standard_E64d_v4\":8,\"standard_E2s_v4\":2,\"standard_E4-2s_v4\":2,\"standard_E4s_v4\":2,\"standard_E8-2s_v4\":2,\"standard_E8-4s_v4\":4,\"standard_E8s_v4\":4,\"standard_E16-4s_v4\":8,\"standard_E16-8s_v4\":8,\"standard_E16s_v4\":8,\"standard_E20s_v4\":8,\"standard_E32-8s_v4\":8,\"standard_E32-16s_v4\":8,\"standard_E32s_v4\":8,\"standard_E48s_v4\":8,\"standard_E64-16s_v4\":8,\"standard_E64-32s_v4\":8,\"standard_E64s_v4\":8,\"standard_E2ds_v4\":2,\"standard_E4-2ds_v4\":2,\"standard_E4ds_v4\":2,\"standard_E8-2ds_v4\":4,\"standard_E8-4ds_v4\":4,\"standard_E8ds_v4\":4,\"standard_E16-4ds_v4\":8,\"standard_E16-8ds_v4\":8,\"standard_E16ds_v4\":8,\"standard_E20ds_v4\":8,\"standard_E32-8ds_v4\":8,\"standard_E32-16ds_v4\":8,\"standard_E32ds_v4\":8,\"standard_E48ds_v4\":8,\"standard_E64-16ds_v4\":8,\"standard_E64-32ds_v4\":8,\"standard_E64ds_v4\":8,\"standard_D1\":2,\"standard_D2\":2,\"standard_D3\":4,\"standard_D4\":8,\"standard_D11\":2,\"standard_D12\":4,\"standard_D13\":8,\"standard_D14\":8,\"standard_D1_v2\":2,\"standard_D2_v2\":2,\"standard_D3_v2\":4,\"standard_D4_v2\":8,\"standard_D5_v2\":8,\"standard_D11_v2\":2,\"standard_D12_v2\":4,\"standard_D13_v2\":8,\"standard_D14_v2\":8,\"standard_D15_v2\":8,\"standard_D2_v2_Promo\":2,\"standard_D3_v2_Promo\":4,\"standard_D4_v2_Promo\":8,\"standard_D5_v2_Promo\":8,\"standard_D11_v2_Promo\":2,\"standard_D12_v2_Promo\":4,\"standard_D13_v2_Promo\":8,\"standard_D14_v2_Promo\":8,\"standard_D2_v3\":2,\"standard_D4_v3\":2,\"standard_D8_v3\":4,\"standard_D16_v3\":8,\"standard_D32_v3\":8,\"standard_D48_v3\":8,\"standard_D64_v3\":8,\"standard_D2_v4\":2,\"standard_D4_v4\":2,\"standard_D8_v4\":4,\"standard_D16_v4\":8,\"standard_D32_v4\":8,\"standard_D48_v4\":8,\"standard_D64_v4\":8,\"standard_D2a_v4\":2,\"standard_D4a_v4\":2,\"standard_D8a_v4\":4,\"standard_D16a_v4\":8,\"standard_D32a_v4\":8,\"standard_D48a_v4\":8,\"standard_D64a_v4\":8,\"standard_D96a_v4\":8,\"standard_D2as_v4\":2,\"standard_D4as_v4\":2,\"standard_D8as_v4\":4,\"standard_D16as_v4\":8,\"standard_D32as_v4\":8,\"standard_D48as_v4\":8,\"standard_D64as_v4\":8,\"standard_D96as_v4\":8,\"standard_D2d_v4\":2,\"standard_D4d_v4\":2,\"standard_D8d_v4\":4,\"standard_D16d_v4\":8,\"standard_D32d_v4\":8,\"standard_D48d_v4\":8,\"standard_D64d_v4\":8,\"standard_D2ds_v4\":2,\"standard_D4ds_v4\":2,\"standard_D8ds_v4\":4,\"standard_D16ds_v4\":8,\"standard_D32ds_v4\":8,\"standard_D48ds_v4\":8,\"standard_D64ds_v4\":8,\"standard_DS1\":2,\"standard_DS2\":2,\"standard_DS3\":4,\"standard_DS4\":8,\"standard_DS11\":2,\"standard_DS12\":4,\"standard_DS13\":8,\"standard_DS14\":8,\"standard_DS1_v2\":2,\"standard_DS2_v2\":2,\"standard_DS3_v2\":4,\"standard_DS4_v2\":8,\"standard_DS5_v2\":8,\"standard_DS11_v2\":2,\"standard_DS11-1_v2\":2,\"standard_DS12_v2\":4,\"standard_DS12_v2_Promo\":4,\"standard_DS12-1_v2\":4,\"standard_DS12-2_v2\":4,\"standard_DS13_v2\":8,\"standard_DS13-2_v2\":8,\"standard_DS13-4_v2\":8,\"standard_DS14_v2\":8,\"standard_DS14-4_v2\":8,\"standard_DS14-8_v2\":8,\"standard_DS15_v2\":8,\"standard_DS2_v2_Promo\":2,\"standard_DS3_v2_Promo\":4,\"standard_DS4_v2_Promo\":8,\"standard_DS5_v2_Promo\":8,\"standard_DS11_v2_Promo\":2,\"standard_DS13_v2_Promo\":8,\"standard_DS14_v2_Promo\":8,\"standard_D2s_v3\":2,\"standard_D4s_v3\":2,\"standard_D8s_v3\":4,\"standard_D16s_v3\":8,\"standard_D32s_v3\":8,\"standard_D48s_v3\":8,\"standard_D64s_v3\":8,\"standard_D2s_v4\":2,\"standard_D4s_v4\":2,\"standard_D8s_v4\":4,\"standard_D16s_v4\":8,\"standard_D32s_v4\":8,\"standard_D48s_v4\":8,\"standard_D64s_v4\":8,\"standard_DC2s\":2,\"standard_DC4s\":2,\"standard_DC8_v2\":1,\"standard_DC1s_v2\":1,\"standard_DC2s_v2\":1,\"standard_DC4s_v2\":1,\"standard_B1ls\":2,\"standard_B1s\":2,\"standard_B1ms\":2,\"standard_B2s\":3,\"standard_B2ms\":3,\"standard_B4ms\":4,\"standard_B8ms\":4,\"standard_B12ms\":6,\"standard_B16ms\":8,\"standard_B20ms\":8,\"standard_A0\":2,\"standard_A1\":2,\"standard_A2\":2,\"standard_A3\":2,\"standard_A4\":4,\"standard_A5\":2,\"standard_A6\":2,\"standard_A7\":4,\"standard_A8\":2,\"standard_A9\":4,\"standard_A10\":2,\"standard_A11\":4,\"standard_A1_v2\":2,\"standard_A2_v2\":2,\"standard_A4_v2\":4,\"standard_A8_v2\":8,\"standard_A2m_v2\":2,\"standard_A4m_v2\":4,\"standard_A8m_v2\":8,\"basic_A0\":2,\"basic_A1\":2,\"basic_A2\":2,\"basic_A3\":2,\"basic_A4\":2,\"standard_M32ms_v2\":8,\"standard_M64ms_v2\":8,\"standard_M64s_v2\":8,\"standard_M128ms_v2\":8,\"standard_M128s_v2\":8,\"standard_HB60-15rs\":8,\"standard_HB60-30rs\":8,\"standard_HB60-45rs\":8,\"standard_E2_v5\":2,\"standard_E4_v5\":2,\"standard_E8_v5\":4,\"standard_E16_v5\":8,\"standard_E20_v5\":8,\"standard_E32_v5\":8,\"standard_E48_v5\":8,\"standard_E64_v5\":8,\"standard_E96_v5\":8,\"standard_L8as_v3\":4,\"standard_L16as_v3\":8,\"standard_L32as_v3\":8,\"standard_L48as_v3\":8,\"standard_L64as_v3\":8,\"standard_L80as_v3\":8,\"standard_NC4as_T4_v3\":4,\"standard_NC8as_T4_v3\":8,\"standard_NC16as_T4_v3\":8,\"standard_NC64as_T4_v3\":8,\"standard_D2d_v5\":2,\"standard_D4d_v5\":2,\"standard_D8d_v5\":4,\"standard_D16d_v5\":8,\"standard_D32d_v5\":8,\"standard_D48d_v5\":8,\"standard_D64d_v5\":8,\"standard_D96d_v5\":8,\"standard_NC8ads_A10_v4\":2,\"standard_NC16ads_A10_v4\":4,\"standard_NC32ads_A10_v4\":8,\"standard_ND96asr_v4\":8,\"standard_D2as_v5\":2,\"standard_D4as_v5\":2,\"standard_D8as_v5\":4,\"standard_D16as_v5\":8,\"standard_D32as_v5\":8,\"standard_D48as_v5\":8,\"standard_D64as_v5\":8,\"standard_D96as_v5\":8,\"standard_M32dms_v2\":8,\"standard_M64ds_v2\":8,\"standard_M64dms_v2\":8,\"standard_M128ds_v2\":8,\"standard_M128dms_v2\":8,\"standard_EC2ads_v5\":2,\"standard_EC4ads_v5\":2,\"standard_EC8ads_v5\":4,\"standard_EC16ads_v5\":4,\"standard_EC20ads_v5\":8,\"standard_EC32ads_v5\":8,\"standard_EC48ads_v5\":8,\"standard_EC64ads_v5\":8,\"standard_EC96ads_v5\":8,\"standard_HB120rs_v3\":8,\"standard_HB120-16rs_v3\":8,\"standard_HB120-32rs_v3\":8,\"standard_HB120-64rs_v3\":8,\"standard_HB120-96rs_v3\":8,\"standard_M192is_v2\":8,\"standard_M192ims_v2\":8,\"standard_E104id_v5\":8,\"standard_DC1s_v3\":2,\"standard_DC2s_v3\":2,\"standard_DC4s_v3\":4,\"standard_DC8s_v3\":8,\"standard_DC16s_v3\":8,\"standard_DC24s_v3\":8,\"standard_DC32s_v3\":8,\"standard_DC48s_v3\":8,\"standard_E2d_v5\":2,\"standard_E4d_v5\":2,\"standard_E8d_v5\":4,\"standard_E16d_v5\":8,\"standard_E20d_v5\":8,\"standard_E32d_v5\":8,\"standard_E48d_v5\":8,\"standard_E64d_v5\":8,\"standard_E96d_v5\":8,\"standard_E2ds_v5\":2,\"standard_E4ds_v5\":2,\"standard_E4-2ds_v5\":2,\"standard_E8ds_v5\":4,\"standard_E8-2ds_v5\":4,\"standard_E8-4ds_v5\":4,\"standard_E16ds_v5\":8,\"standard_E16-4ds_v5\":8,\"standard_E16-8ds_v5\":8,\"standard_E20ds_v5\":8,\"standard_E32ds_v5\":8,\"standard_E32-8ds_v5\":8,\"standard_E32-16ds_v5\":8,\"standard_E48ds_v5\":8,\"standard_E64ds_v5\":8,\"standard_E64-16ds_v5\":8,\"standard_E64-32ds_v5\":8,\"standard_E96ds_v5\":8,\"standard_E96-24ds_v5\":8,\"standard_E96-48ds_v5\":8,\"standard_E80ids_v4\":8,\"standard_D2s_v5\":2,\"standard_D4s_v5\":2,\"standard_D8s_v5\":4,\"standard_D16s_v5\":8,\"standard_D32s_v5\":8,\"standard_D48s_v5\":8,\"standard_D64s_v5\":8,\"standard_D96s_v5\":8,\"standard_E2s_v5\":2,\"standard_E4s_v5\":2,\"standard_E4-2s_v5\":2,\"standard_E8s_v5\":4,\"standard_E8-2s_v5\":4,\"standard_E8-4s_v5\":4,\"standard_E16s_v5\":8,\"standard_E16-4s_v5\":8,\"standard_E16-8s_v5\":8,\"standard_E20s_v5\":8,\"standard_E32s_v5\":8,\"standard_E32-8s_v5\":8,\"standard_E32-16s_v5\":8,\"standard_E48s_v5\":8,\"standard_E64s_v5\":8,\"standard_E64-16s_v5\":8,\"standard_E64-32s_v5\":8,\"standard_E96s_v5\":8,\"standard_E96-24s_v5\":8,\"standard_E96-48s_v5\":8,\"standard_E2as_v5\":2,\"standard_E4as_v5\":2,\"standard_E4-2as_v5\":2,\"standard_E8as_v5\":4,\"standard_E8-2as_v5\":4,\"standard_E8-4as_v5\":4,\"standard_E16as_v5\":8,\"standard_E16-4as_v5\":8,\"standard_E16-8as_v5\":8,\"standard_E20as_v5\":8,\"standard_E32as_v5\":8,\"standard_E32-8as_v5\":8,\"standard_E32-16as_v5\":8,\"standard_E48as_v5\":8,\"standard_E64as_v5\":8,\"standard_E64-16as_v5\":8,\"standard_E64-32as_v5\":8,\"standard_E96as_v5\":8,\"standard_E96-24as_v5\":8,\"standard_E96-48as_v5\":8,\"standard_E80is_v4\":8,\"standard_E96ias_v4\":8,\"standard_E104ids_v5\":8,\"standard_M192idms_v2\":8,\"standard_M192ids_v2\":8,\"standard_D2ds_v5\":2,\"standard_D4ds_v5\":2,\"standard_D8ds_v5\":4,\"standard_D16ds_v5\":8,\"standard_D32ds_v5\":8,\"standard_D64ds_v5\":8,\"standard_D48ds_v5\":8,\"standard_D96ds_v5\":8,\"standard_FX4mds\":2,\"standard_FX12mds\":4,\"standard_FX36mds\":8,\"standard_FX24mds\":4,\"standard_FX48mds\":8,\"standard_D2ads_v5\":2,\"standard_D4ads_v5\":2,\"standard_D8ads_v5\":4,\"standard_D16ads_v5\":8,\"standard_D32ads_v5\":8,\"standard_D48ads_v5\":8,\"standard_D64ads_v5\":8,\"standard_D96ads_v5\":8,\"standard_E2ads_v5\":2,\"standard_E4ads_v5\":2,\"standard_E4-2ads_v5\":2,\"standard_E8ads_v5\":4,\"standard_E8-2ads_v5\":4,\"standard_E8-4ads_v5\":4,\"standard_E16ads_v5\":8,\"standard_E16-4ads_v5\":8,\"standard_E16-8ads_v5\":8,\"standard_E20ads_v5\":8,\"standard_E32ads_v5\":8,\"standard_E32-8ads_v5\":8,\"standard_E32-16ads_v5\":8,\"standard_E48ads_v5\":8,\"standard_E64ads_v5\":8,\"standard_E64-16ads_v5\":8,\"standard_E64-32ads_v5\":8,\"standard_E96ads_v5\":8,\"standard_E96-24ads_v5\":8,\"standard_E96-48ads_v5\":8,\"standard_E112iads_v5\":8,\"standard_DC1ds_v3\":2,\"standard_DC2ds_v3\":2,\"standard_DC4ds_v3\":4,\"standard_DC8ds_v3\":8,\"standard_DC16ds_v3\":8,\"standard_DC24ds_v3\":8,\"standard_DC32ds_v3\":8,\"standard_DC48ds_v3\":8,\"standard_E2bs_v5\":2,\"standard_E4bs_v5\":2,\"standard_E8bs_v5\":4,\"standard_E16bs_v5\":4,\"standard_E32bs_v5\":8,\"standard_E48bs_v5\":8,\"standard_E64bs_v5\":8,\"standard_EC96ias_v5\":8,\"standard_NV6ads_A10_v5\":2,\"standard_NV12ads_A10_v5\":4,\"standard_NV18ads_A10_v5\":6,\"standard_NV36ads_A10_v5\":8,\"standard_NV36adms_A10_v5\":8,\"standard_NV72ads_A10_v5\":8,\"standard_NC24ads_A100_v4\":2,\"standard_NC48ads_A100_v4\":4,\"standard_NC96ads_A100_v4\":8,\"standard_DC2as_v5\":2,\"standard_DC4as_v5\":2,\"standard_DC8as_v5\":4,\"standard_DC16as_v5\":4,\"standard_DC32as_v5\":8,\"standard_DC48as_v5\":8,\"standard_DC64as_v5\":8,\"standard_DC96as_v5\":8,\"standard_E104is_v5\":8,\"standard_E112ias_v5\":8,\"standard_E2ps_v5\":2,\"standard_E4ps_v5\":2,\"standard_E8ps_v5\":4,\"standard_E16ps_v5\":4,\"standard_E20ps_v5\":8,\"standard_E32ps_v5\":8,\"standard_E104i_v5\":8,\"standard_NP10s\":4,\"standard_NP20s\":8,\"standard_NP40s\":8,\"standard_L8s_v3\":4,\"standard_L16s_v3\":8,\"standard_L32s_v3\":8,\"standard_L48s_v3\":8,\"standard_L64s_v3\":8,\"standard_L80s_v3\":8,\"standard_DC2ads_v5\":2,\"standard_DC4ads_v5\":2,\"standard_DC8ads_v5\":4,\"standard_DC16ads_v5\":4,\"standard_DC32ads_v5\":8,\"standard_DC48ads_v5\":8,\"standard_DC64ads_v5\":8,\"standard_DC96ads_v5\":8,\"standard_D2ps_v5\":2,\"standard_D4ps_v5\":2,\"standard_D8ps_v5\":4,\"standard_D16ps_v5\":4,\"standard_D32ps_v5\":8,\"standard_D48ps_v5\":8,\"standard_D64ps_v5\":8,\"standard_D2pds_v5\":2,\"standard_D4pds_v5\":2,\"standard_D8pds_v5\":4,\"standard_D16pds_v5\":4,\"standard_D32pds_v5\":8,\"standard_D48pds_v5\":8,\"standard_D64pds_v5\":8,\"standard_D2plds_v5\":2,\"standard_D4plds_v5\":2,\"standard_D8plds_v5\":4,\"standard_D16plds_v5\":4,\"standard_D32plds_v5\":8,\"standard_D48plds_v5\":8,\"standard_D64plds_v5\":8,\"standard_E2bds_v5\":2,\"standard_E4bds_v5\":2,\"standard_E8bds_v5\":4,\"standard_E16bds_v5\":4,\"standard_E32bds_v5\":8,\"standard_E48bds_v5\":8,\"standard_E64bds_v5\":8,\"standard_D2_v5\":2,\"standard_D4_v5\":2,\"standard_D8_v5\":4,\"standard_D16_v5\":8,\"standard_D32_v5\":8,\"standard_D48_v5\":8,\"standard_D64_v5\":8,\"standard_D96_v5\":8,\"standard_E2pds_v5\":2,\"standard_E4pds_v5\":2,\"standard_E8pds_v5\":4,\"standard_E16pds_v5\":4,\"standard_E20pds_v5\":8,\"standard_E32pds_v5\":8,\"standard_EC96iads_v5\":8,\"standard_ND96amsr_A100_v4\":8,\"standard_D2pls_v5\":2,\"standard_D4pls_v5\":2,\"standard_D8pls_v5\":4,\"standard_D16pls_v5\":4,\"standard_D32pls_v5\":8,\"standard_D48pls_v5\":8,\"standard_D64pls_v5\":8,\"standard_EC2as_v5\":2,\"standard_EC4as_v5\":2,\"standard_EC8as_v5\":4,\"standard_EC16as_v5\":4,\"standard_EC20as_v5\":8,\"standard_EC32as_v5\":8,\"standard_EC48as_v5\":8,\"standard_EC64as_v5\":8,\"standard_EC96as_v5\":8,\"standard_PB6s\":1},\"excludedSkus\":[\"Standard_DC2s\",\"Standard_DC4s\",\"Standard_DC8s\"]},\"health\":\"Normal\",\"healthErrorDetails\":[],\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"state\":\"Paired\",\"sourceProtectionContainerFriendlyName\":\"signoffccyappae52replicationcontainer\",\"sourceFabricFriendlyName\":\"signoffccyappae52replicationfabric\",\"targetFabricFriendlyName\":\"Microsoft Azure\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\"}}],\"nextLink\":null}" } }, - "Get-AzMigrateReplicationProtectionContainerMapping+[NoContext]+List+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationProtectionContainerMapping+[NoContext]+List+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "29" ], @@ -79,10 +79,10 @@ "Content": "{\"value\":[{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping\",\"name\":\"containermapping\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\"properties\":{\"targetProtectionContainerId\":\"Microsoft Azure\",\"targetProtectionContainerFriendlyName\":\"Microsoft Azure\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"keyVaultId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.KeyVault/vaults/migratekv1612849844\",\"keyVaultUri\":\"https://migratekv1612849844.vault.azure.net\",\"storageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migrategwsa1612849844\",\"storageAccountSasSecretName\":\"migrategwsa1612849844-gwySas\",\"serviceBusConnectionStringSecretName\":\"ServiceBusConnectionString\",\"targetLocation\":\"centraluseuap\",\"roleSizeToNicCountMap\":{\"default\":1,\"extraSmall\":2,\"small\":2,\"medium\":2,\"large\":2,\"a6\":2,\"a7\":4,\"a8\":2,\"a9\":4,\"a10\":2,\"a11\":4,\"standard_NV6\":2,\"standard_NV12\":2,\"standard_NV24\":4,\"standard_NV6_Promo\":2,\"standard_NV12_Promo\":2,\"standard_NV24_Promo\":4,\"standard_NV6s_v2\":4,\"standard_NV12s_v2\":8,\"standard_NV24s_v2\":8,\"standard_NV12s_v3\":4,\"standard_NV24s_v3\":8,\"standard_NV48s_v3\":8,\"standard_NV4as_v4\":2,\"standard_NV8as_v4\":4,\"standard_NV16as_v4\":8,\"standard_NV32as_v4\":8,\"standard_NC6\":2,\"standard_NC12\":2,\"standard_NC24\":4,\"standard_NC24r\":4,\"standard_NC6_Promo\":2,\"standard_NC12_Promo\":2,\"standard_NC24_Promo\":4,\"standard_NC24r_Promo\":4,\"standard_NC6s_v3\":4,\"standard_NC12s_v3\":8,\"standard_NC24rs_v3\":8,\"standard_NC24s_v3\":8,\"standard_NC6s_v2\":4,\"standard_NC12s_v2\":8,\"standard_NC24rs_v2\":8,\"standard_NC24s_v2\":8,\"standard_ND6s\":4,\"standard_ND12s\":8,\"standard_ND24s\":8,\"standard_ND24rs\":8,\"standard_ND40s_v2\":8,\"standard_ND40rs_v2\":8,\"standard_ND40s_v3\":1,\"standard_M208ms_v2\":8,\"standard_M208s_v2\":8,\"standard_M416-208s_v2\":8,\"standard_M416s_v2\":8,\"standard_M416-208ms_v2\":8,\"standard_M416ms_v2\":8,\"standard_M8ms\":4,\"standard_M16ms\":8,\"standard_M32ts\":8,\"standard_M32ls\":8,\"standard_M32ms\":8,\"standard_M64s\":8,\"standard_M64ls\":8,\"standard_M64ms\":8,\"standard_M128s\":8,\"standard_M128ms\":8,\"standard_M64\":8,\"standard_M64m\":8,\"standard_M128\":8,\"standard_M128m\":8,\"standard_M8-2ms\":2,\"standard_M8-4ms\":2,\"standard_M16-4ms\":2,\"standard_M16-8ms\":2,\"standard_M32-8ms\":8,\"standard_M32-16ms\":8,\"standard_M64-16ms\":8,\"standard_M64-32ms\":8,\"standard_M128-32ms\":8,\"standard_M128-64ms\":8,\"standard_L4s\":2,\"standard_L8s\":4,\"standard_L16s\":8,\"standard_L32s\":8,\"standard_L8s_v2\":2,\"standard_L16s_v2\":4,\"standard_L32s_v2\":8,\"standard_L48s_v2\":8,\"standard_L64s_v2\":8,\"standard_L80s_v2\":8,\"standard_H8\":2,\"standard_H16\":4,\"standard_H8m\":2,\"standard_H16m\":4,\"standard_H16r\":4,\"standard_H16mr\":4,\"standard_H8_Promo\":2,\"standard_H16_Promo\":4,\"standard_H8m_Promo\":2,\"standard_H16m_Promo\":4,\"standard_H16r_Promo\":4,\"standard_H16mr_Promo\":4,\"standard_HB60rs\":2,\"standard_HB120rs_v2\":2,\"standard_HC44rs\":2,\"standard_G1\":2,\"standard_G2\":2,\"standard_G3\":4,\"standard_G4\":8,\"standard_G5\":8,\"standard_GS1\":2,\"standard_GS2\":2,\"standard_GS3\":4,\"standard_GS4\":8,\"standard_GS4-4\":8,\"standard_GS4-8\":8,\"standard_GS5\":8,\"standard_GS5-8\":8,\"standard_GS5-16\":8,\"standard_F1\":2,\"standard_F2\":2,\"standard_F4\":4,\"standard_F8\":8,\"standard_F16\":8,\"standard_F1s\":2,\"standard_F2s\":2,\"standard_F4s\":4,\"standard_F8s\":8,\"standard_F16s\":8,\"standard_F2s_v2\":2,\"standard_F4s_v2\":2,\"standard_F8s_v2\":4,\"standard_F16s_v2\":4,\"standard_F32s_v2\":8,\"standard_F48s_v2\":8,\"standard_F64s_v2\":8,\"standard_F72s_v2\":8,\"standard_E2_v3\":2,\"standard_E4_v3\":2,\"standard_E8_v3\":4,\"standard_E16_v3\":8,\"standard_E20_v3\":8,\"standard_E32_v3\":8,\"standard_E48_v3\":8,\"standard_E64_v3\":8,\"standard_E64i_v3\":8,\"standard_E64is_v3\":8,\"standard_E2_v4\":2,\"standard_E4_v4\":2,\"standard_E8_v4\":4,\"standard_E16_v4\":8,\"standard_E20_v4\":8,\"standard_E32_v4\":8,\"standard_E48_v4\":8,\"standard_E64_v4\":8,\"standard_E2s_v3\":2,\"standard_E4s_v3\":2,\"standard_E4-2s_v3\":2,\"standard_E8s_v3\":4,\"standard_E8-2s_v3\":4,\"standard_E8-4s_v3\":4,\"standard_E16s_v3\":8,\"standard_E16-4s_v3\":8,\"standard_E16-8s_v3\":8,\"standard_E20s_v3\":8,\"standard_E32s_v3\":8,\"standard_E32-8s_v3\":8,\"standard_E32-16s_v3\":8,\"standard_E48s_v3\":8,\"standard_E64s_v3\":8,\"standard_E64-16s_v3\":8,\"standard_E64-32s_v3\":8,\"standard_E2a_v4\":2,\"standard_E4a_v4\":2,\"standard_E8a_v4\":4,\"standard_E16a_v4\":8,\"standard_E20a_v4\":8,\"standard_E32a_v4\":8,\"standard_E48a_v4\":8,\"standard_E64a_v4\":8,\"standard_E96a_v4\":8,\"standard_E2as_v4\":2,\"standard_E4as_v4\":2,\"standard_E8as_v4\":4,\"standard_E16as_v4\":8,\"standard_E20as_v4\":8,\"standard_E32as_v4\":8,\"standard_E48as_v4\":8,\"standard_E64as_v4\":8,\"standard_E96as_v4\":8,\"standard_E2d_v4\":2,\"standard_E4d_v4\":2,\"standard_E8d_v4\":4,\"standard_E16d_v4\":8,\"standard_E20d_v4\":8,\"standard_E32d_v4\":8,\"standard_E48d_v4\":8,\"standard_E64d_v4\":8,\"standard_E2s_v4\":2,\"standard_E4-2s_v4\":2,\"standard_E4s_v4\":2,\"standard_E8-2s_v4\":2,\"standard_E8-4s_v4\":4,\"standard_E8s_v4\":4,\"standard_E16-4s_v4\":8,\"standard_E16-8s_v4\":8,\"standard_E16s_v4\":8,\"standard_E20s_v4\":8,\"standard_E32-8s_v4\":8,\"standard_E32-16s_v4\":8,\"standard_E32s_v4\":8,\"standard_E48s_v4\":8,\"standard_E64-16s_v4\":8,\"standard_E64-32s_v4\":8,\"standard_E64s_v4\":8,\"standard_E2ds_v4\":2,\"standard_E4-2ds_v4\":2,\"standard_E4ds_v4\":2,\"standard_E8-2ds_v4\":4,\"standard_E8-4ds_v4\":4,\"standard_E8ds_v4\":4,\"standard_E16-4ds_v4\":8,\"standard_E16-8ds_v4\":8,\"standard_E16ds_v4\":8,\"standard_E20ds_v4\":8,\"standard_E32-8ds_v4\":8,\"standard_E32-16ds_v4\":8,\"standard_E32ds_v4\":8,\"standard_E48ds_v4\":8,\"standard_E64-16ds_v4\":8,\"standard_E64-32ds_v4\":8,\"standard_E64ds_v4\":8,\"standard_D1\":2,\"standard_D2\":2,\"standard_D3\":4,\"standard_D4\":8,\"standard_D11\":2,\"standard_D12\":4,\"standard_D13\":8,\"standard_D14\":8,\"standard_D1_v2\":2,\"standard_D2_v2\":2,\"standard_D3_v2\":4,\"standard_D4_v2\":8,\"standard_D5_v2\":8,\"standard_D11_v2\":2,\"standard_D12_v2\":4,\"standard_D13_v2\":8,\"standard_D14_v2\":8,\"standard_D15_v2\":8,\"standard_D2_v2_Promo\":2,\"standard_D3_v2_Promo\":4,\"standard_D4_v2_Promo\":8,\"standard_D5_v2_Promo\":8,\"standard_D11_v2_Promo\":2,\"standard_D12_v2_Promo\":4,\"standard_D13_v2_Promo\":8,\"standard_D14_v2_Promo\":8,\"standard_D2_v3\":2,\"standard_D4_v3\":2,\"standard_D8_v3\":4,\"standard_D16_v3\":8,\"standard_D32_v3\":8,\"standard_D48_v3\":8,\"standard_D64_v3\":8,\"standard_D2_v4\":2,\"standard_D4_v4\":2,\"standard_D8_v4\":4,\"standard_D16_v4\":8,\"standard_D32_v4\":8,\"standard_D48_v4\":8,\"standard_D64_v4\":8,\"standard_D2a_v4\":2,\"standard_D4a_v4\":2,\"standard_D8a_v4\":4,\"standard_D16a_v4\":8,\"standard_D32a_v4\":8,\"standard_D48a_v4\":8,\"standard_D64a_v4\":8,\"standard_D96a_v4\":8,\"standard_D2as_v4\":2,\"standard_D4as_v4\":2,\"standard_D8as_v4\":4,\"standard_D16as_v4\":8,\"standard_D32as_v4\":8,\"standard_D48as_v4\":8,\"standard_D64as_v4\":8,\"standard_D96as_v4\":8,\"standard_D2d_v4\":2,\"standard_D4d_v4\":2,\"standard_D8d_v4\":4,\"standard_D16d_v4\":8,\"standard_D32d_v4\":8,\"standard_D48d_v4\":8,\"standard_D64d_v4\":8,\"standard_D2ds_v4\":2,\"standard_D4ds_v4\":2,\"standard_D8ds_v4\":4,\"standard_D16ds_v4\":8,\"standard_D32ds_v4\":8,\"standard_D48ds_v4\":8,\"standard_D64ds_v4\":8,\"standard_DS1\":2,\"standard_DS2\":2,\"standard_DS3\":4,\"standard_DS4\":8,\"standard_DS11\":2,\"standard_DS12\":4,\"standard_DS13\":8,\"standard_DS14\":8,\"standard_DS1_v2\":2,\"standard_DS2_v2\":2,\"standard_DS3_v2\":4,\"standard_DS4_v2\":8,\"standard_DS5_v2\":8,\"standard_DS11_v2\":2,\"standard_DS11-1_v2\":2,\"standard_DS12_v2\":4,\"standard_DS12_v2_Promo\":4,\"standard_DS12-1_v2\":4,\"standard_DS12-2_v2\":4,\"standard_DS13_v2\":8,\"standard_DS13-2_v2\":8,\"standard_DS13-4_v2\":8,\"standard_DS14_v2\":8,\"standard_DS14-4_v2\":8,\"standard_DS14-8_v2\":8,\"standard_DS15_v2\":8,\"standard_DS2_v2_Promo\":2,\"standard_DS3_v2_Promo\":4,\"standard_DS4_v2_Promo\":8,\"standard_DS5_v2_Promo\":8,\"standard_DS11_v2_Promo\":2,\"standard_DS13_v2_Promo\":8,\"standard_DS14_v2_Promo\":8,\"standard_D2s_v3\":2,\"standard_D4s_v3\":2,\"standard_D8s_v3\":4,\"standard_D16s_v3\":8,\"standard_D32s_v3\":8,\"standard_D48s_v3\":8,\"standard_D64s_v3\":8,\"standard_D2s_v4\":2,\"standard_D4s_v4\":2,\"standard_D8s_v4\":4,\"standard_D16s_v4\":8,\"standard_D32s_v4\":8,\"standard_D48s_v4\":8,\"standard_D64s_v4\":8,\"standard_DC2s\":2,\"standard_DC4s\":2,\"standard_DC8_v2\":1,\"standard_DC1s_v2\":1,\"standard_DC2s_v2\":1,\"standard_DC4s_v2\":1,\"standard_B1ls\":2,\"standard_B1s\":2,\"standard_B1ms\":2,\"standard_B2s\":3,\"standard_B2ms\":3,\"standard_B4ms\":4,\"standard_B8ms\":4,\"standard_B12ms\":6,\"standard_B16ms\":8,\"standard_B20ms\":8,\"standard_A0\":2,\"standard_A1\":2,\"standard_A2\":2,\"standard_A3\":2,\"standard_A4\":4,\"standard_A5\":2,\"standard_A6\":2,\"standard_A7\":4,\"standard_A8\":2,\"standard_A9\":4,\"standard_A10\":2,\"standard_A11\":4,\"standard_A1_v2\":2,\"standard_A2_v2\":2,\"standard_A4_v2\":4,\"standard_A8_v2\":8,\"standard_A2m_v2\":2,\"standard_A4m_v2\":4,\"standard_A8m_v2\":8,\"basic_A0\":2,\"basic_A1\":2,\"basic_A2\":2,\"basic_A3\":2,\"basic_A4\":2,\"standard_M32ms_v2\":8,\"standard_M64ms_v2\":8,\"standard_M64s_v2\":8,\"standard_M128ms_v2\":8,\"standard_M128s_v2\":8,\"standard_HB60-15rs\":8,\"standard_HB60-30rs\":8,\"standard_HB60-45rs\":8,\"standard_E2_v5\":2,\"standard_E4_v5\":2,\"standard_E8_v5\":4,\"standard_E16_v5\":8,\"standard_E20_v5\":8,\"standard_E32_v5\":8,\"standard_E48_v5\":8,\"standard_E64_v5\":8,\"standard_E96_v5\":8,\"standard_L8as_v3\":4,\"standard_L16as_v3\":8,\"standard_L32as_v3\":8,\"standard_L48as_v3\":8,\"standard_L64as_v3\":8,\"standard_L80as_v3\":8,\"standard_NC4as_T4_v3\":4,\"standard_NC8as_T4_v3\":8,\"standard_NC16as_T4_v3\":8,\"standard_NC64as_T4_v3\":8,\"standard_D2d_v5\":2,\"standard_D4d_v5\":2,\"standard_D8d_v5\":4,\"standard_D16d_v5\":8,\"standard_D32d_v5\":8,\"standard_D48d_v5\":8,\"standard_D64d_v5\":8,\"standard_D96d_v5\":8,\"standard_NC8ads_A10_v4\":2,\"standard_NC16ads_A10_v4\":4,\"standard_NC32ads_A10_v4\":8,\"standard_ND96asr_v4\":8,\"standard_D2as_v5\":2,\"standard_D4as_v5\":2,\"standard_D8as_v5\":4,\"standard_D16as_v5\":8,\"standard_D32as_v5\":8,\"standard_D48as_v5\":8,\"standard_D64as_v5\":8,\"standard_D96as_v5\":8,\"standard_M32dms_v2\":8,\"standard_M64ds_v2\":8,\"standard_M64dms_v2\":8,\"standard_M128ds_v2\":8,\"standard_M128dms_v2\":8,\"standard_EC2ads_v5\":2,\"standard_EC4ads_v5\":2,\"standard_EC8ads_v5\":4,\"standard_EC16ads_v5\":4,\"standard_EC20ads_v5\":8,\"standard_EC32ads_v5\":8,\"standard_EC48ads_v5\":8,\"standard_EC64ads_v5\":8,\"standard_EC96ads_v5\":8,\"standard_HB120rs_v3\":8,\"standard_HB120-16rs_v3\":8,\"standard_HB120-32rs_v3\":8,\"standard_HB120-64rs_v3\":8,\"standard_HB120-96rs_v3\":8,\"standard_M192is_v2\":8,\"standard_M192ims_v2\":8,\"standard_E104id_v5\":8,\"standard_DC1s_v3\":2,\"standard_DC2s_v3\":2,\"standard_DC4s_v3\":4,\"standard_DC8s_v3\":8,\"standard_DC16s_v3\":8,\"standard_DC24s_v3\":8,\"standard_DC32s_v3\":8,\"standard_DC48s_v3\":8,\"standard_E2d_v5\":2,\"standard_E4d_v5\":2,\"standard_E8d_v5\":4,\"standard_E16d_v5\":8,\"standard_E20d_v5\":8,\"standard_E32d_v5\":8,\"standard_E48d_v5\":8,\"standard_E64d_v5\":8,\"standard_E96d_v5\":8,\"standard_E2ds_v5\":2,\"standard_E4ds_v5\":2,\"standard_E4-2ds_v5\":2,\"standard_E8ds_v5\":4,\"standard_E8-2ds_v5\":4,\"standard_E8-4ds_v5\":4,\"standard_E16ds_v5\":8,\"standard_E16-4ds_v5\":8,\"standard_E16-8ds_v5\":8,\"standard_E20ds_v5\":8,\"standard_E32ds_v5\":8,\"standard_E32-8ds_v5\":8,\"standard_E32-16ds_v5\":8,\"standard_E48ds_v5\":8,\"standard_E64ds_v5\":8,\"standard_E64-16ds_v5\":8,\"standard_E64-32ds_v5\":8,\"standard_E96ds_v5\":8,\"standard_E96-24ds_v5\":8,\"standard_E96-48ds_v5\":8,\"standard_E80ids_v4\":8,\"standard_D2s_v5\":2,\"standard_D4s_v5\":2,\"standard_D8s_v5\":4,\"standard_D16s_v5\":8,\"standard_D32s_v5\":8,\"standard_D48s_v5\":8,\"standard_D64s_v5\":8,\"standard_D96s_v5\":8,\"standard_E2s_v5\":2,\"standard_E4s_v5\":2,\"standard_E4-2s_v5\":2,\"standard_E8s_v5\":4,\"standard_E8-2s_v5\":4,\"standard_E8-4s_v5\":4,\"standard_E16s_v5\":8,\"standard_E16-4s_v5\":8,\"standard_E16-8s_v5\":8,\"standard_E20s_v5\":8,\"standard_E32s_v5\":8,\"standard_E32-8s_v5\":8,\"standard_E32-16s_v5\":8,\"standard_E48s_v5\":8,\"standard_E64s_v5\":8,\"standard_E64-16s_v5\":8,\"standard_E64-32s_v5\":8,\"standard_E96s_v5\":8,\"standard_E96-24s_v5\":8,\"standard_E96-48s_v5\":8,\"standard_E2as_v5\":2,\"standard_E4as_v5\":2,\"standard_E4-2as_v5\":2,\"standard_E8as_v5\":4,\"standard_E8-2as_v5\":4,\"standard_E8-4as_v5\":4,\"standard_E16as_v5\":8,\"standard_E16-4as_v5\":8,\"standard_E16-8as_v5\":8,\"standard_E20as_v5\":8,\"standard_E32as_v5\":8,\"standard_E32-8as_v5\":8,\"standard_E32-16as_v5\":8,\"standard_E48as_v5\":8,\"standard_E64as_v5\":8,\"standard_E64-16as_v5\":8,\"standard_E64-32as_v5\":8,\"standard_E96as_v5\":8,\"standard_E96-24as_v5\":8,\"standard_E96-48as_v5\":8,\"standard_E80is_v4\":8,\"standard_E96ias_v4\":8,\"standard_E104ids_v5\":8,\"standard_M192idms_v2\":8,\"standard_M192ids_v2\":8,\"standard_D2ds_v5\":2,\"standard_D4ds_v5\":2,\"standard_D8ds_v5\":4,\"standard_D16ds_v5\":8,\"standard_D32ds_v5\":8,\"standard_D64ds_v5\":8,\"standard_D48ds_v5\":8,\"standard_D96ds_v5\":8,\"standard_FX4mds\":2,\"standard_FX12mds\":4,\"standard_FX36mds\":8,\"standard_FX24mds\":4,\"standard_FX48mds\":8,\"standard_D2ads_v5\":2,\"standard_D4ads_v5\":2,\"standard_D8ads_v5\":4,\"standard_D16ads_v5\":8,\"standard_D32ads_v5\":8,\"standard_D48ads_v5\":8,\"standard_D64ads_v5\":8,\"standard_D96ads_v5\":8,\"standard_E2ads_v5\":2,\"standard_E4ads_v5\":2,\"standard_E4-2ads_v5\":2,\"standard_E8ads_v5\":4,\"standard_E8-2ads_v5\":4,\"standard_E8-4ads_v5\":4,\"standard_E16ads_v5\":8,\"standard_E16-4ads_v5\":8,\"standard_E16-8ads_v5\":8,\"standard_E20ads_v5\":8,\"standard_E32ads_v5\":8,\"standard_E32-8ads_v5\":8,\"standard_E32-16ads_v5\":8,\"standard_E48ads_v5\":8,\"standard_E64ads_v5\":8,\"standard_E64-16ads_v5\":8,\"standard_E64-32ads_v5\":8,\"standard_E96ads_v5\":8,\"standard_E96-24ads_v5\":8,\"standard_E96-48ads_v5\":8,\"standard_E112iads_v5\":8,\"standard_DC1ds_v3\":2,\"standard_DC2ds_v3\":2,\"standard_DC4ds_v3\":4,\"standard_DC8ds_v3\":8,\"standard_DC16ds_v3\":8,\"standard_DC24ds_v3\":8,\"standard_DC32ds_v3\":8,\"standard_DC48ds_v3\":8,\"standard_E2bs_v5\":2,\"standard_E4bs_v5\":2,\"standard_E8bs_v5\":4,\"standard_E16bs_v5\":4,\"standard_E32bs_v5\":8,\"standard_E48bs_v5\":8,\"standard_E64bs_v5\":8,\"standard_EC96ias_v5\":8,\"standard_NV6ads_A10_v5\":2,\"standard_NV12ads_A10_v5\":4,\"standard_NV18ads_A10_v5\":6,\"standard_NV36ads_A10_v5\":8,\"standard_NV36adms_A10_v5\":8,\"standard_NV72ads_A10_v5\":8,\"standard_NC24ads_A100_v4\":2,\"standard_NC48ads_A100_v4\":4,\"standard_NC96ads_A100_v4\":8,\"standard_DC2as_v5\":2,\"standard_DC4as_v5\":2,\"standard_DC8as_v5\":4,\"standard_DC16as_v5\":4,\"standard_DC32as_v5\":8,\"standard_DC48as_v5\":8,\"standard_DC64as_v5\":8,\"standard_DC96as_v5\":8,\"standard_E104is_v5\":8,\"standard_E112ias_v5\":8,\"standard_E2ps_v5\":2,\"standard_E4ps_v5\":2,\"standard_E8ps_v5\":4,\"standard_E16ps_v5\":4,\"standard_E20ps_v5\":8,\"standard_E32ps_v5\":8,\"standard_E104i_v5\":8,\"standard_NP10s\":4,\"standard_NP20s\":8,\"standard_NP40s\":8,\"standard_L8s_v3\":4,\"standard_L16s_v3\":8,\"standard_L32s_v3\":8,\"standard_L48s_v3\":8,\"standard_L64s_v3\":8,\"standard_L80s_v3\":8,\"standard_DC2ads_v5\":2,\"standard_DC4ads_v5\":2,\"standard_DC8ads_v5\":4,\"standard_DC16ads_v5\":4,\"standard_DC32ads_v5\":8,\"standard_DC48ads_v5\":8,\"standard_DC64ads_v5\":8,\"standard_DC96ads_v5\":8,\"standard_D2ps_v5\":2,\"standard_D4ps_v5\":2,\"standard_D8ps_v5\":4,\"standard_D16ps_v5\":4,\"standard_D32ps_v5\":8,\"standard_D48ps_v5\":8,\"standard_D64ps_v5\":8,\"standard_D2pds_v5\":2,\"standard_D4pds_v5\":2,\"standard_D8pds_v5\":4,\"standard_D16pds_v5\":4,\"standard_D32pds_v5\":8,\"standard_D48pds_v5\":8,\"standard_D64pds_v5\":8,\"standard_D2plds_v5\":2,\"standard_D4plds_v5\":2,\"standard_D8plds_v5\":4,\"standard_D16plds_v5\":4,\"standard_D32plds_v5\":8,\"standard_D48plds_v5\":8,\"standard_D64plds_v5\":8,\"standard_E2bds_v5\":2,\"standard_E4bds_v5\":2,\"standard_E8bds_v5\":4,\"standard_E16bds_v5\":4,\"standard_E32bds_v5\":8,\"standard_E48bds_v5\":8,\"standard_E64bds_v5\":8,\"standard_D2_v5\":2,\"standard_D4_v5\":2,\"standard_D8_v5\":4,\"standard_D16_v5\":8,\"standard_D32_v5\":8,\"standard_D48_v5\":8,\"standard_D64_v5\":8,\"standard_D96_v5\":8,\"standard_E2pds_v5\":2,\"standard_E4pds_v5\":2,\"standard_E8pds_v5\":4,\"standard_E16pds_v5\":4,\"standard_E20pds_v5\":8,\"standard_E32pds_v5\":8,\"standard_EC96iads_v5\":8,\"standard_ND96amsr_A100_v4\":8,\"standard_D2pls_v5\":2,\"standard_D4pls_v5\":2,\"standard_D8pls_v5\":4,\"standard_D16pls_v5\":4,\"standard_D32pls_v5\":8,\"standard_D48pls_v5\":8,\"standard_D64pls_v5\":8,\"standard_EC2as_v5\":2,\"standard_EC4as_v5\":2,\"standard_EC8as_v5\":4,\"standard_EC16as_v5\":4,\"standard_EC20as_v5\":8,\"standard_EC32as_v5\":8,\"standard_EC48as_v5\":8,\"standard_EC64as_v5\":8,\"standard_EC96as_v5\":8,\"standard_PB6s\":1},\"excludedSkus\":[\"Standard_DC2s\",\"Standard_DC4s\",\"Standard_DC8s\"]},\"health\":\"Normal\",\"healthErrorDetails\":[],\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"state\":\"Paired\",\"sourceProtectionContainerFriendlyName\":\"signoffccyappae52replicationcontainer\",\"sourceFabricFriendlyName\":\"signoffccyappae52replicationfabric\",\"targetFabricFriendlyName\":\"Microsoft Azure\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\"}}],\"nextLink\":null}" } }, - "Get-AzMigrateReplicationProtectionContainerMapping+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationProtectionContainerMapping+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "30" ], diff --git a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationRecoveryServicesProvider.Recording.json b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationRecoveryServicesProvider.Recording.json index 4c9df8de20f1..32d854fbada0 100644 --- a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationRecoveryServicesProvider.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateReplicationRecoveryServicesProvider.Recording.json @@ -1,8 +1,8 @@ { - "Get-AzMigrateReplicationRecoveryServicesProvider+[NoContext]+List+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationRecoveryServicesProviders?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationRecoveryServicesProvider+[NoContext]+List+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationRecoveryServicesProviders?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationRecoveryServicesProviders?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationRecoveryServicesProviders?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "31" ], @@ -39,10 +39,10 @@ "Content": "{\"value\":[{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/signoffccyappae52dra\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders\",\"name\":\"signoffccyappae52dra\",\"properties\":{\"fabricType\":\"VMwareV2\",\"friendlyName\":\"signoffccyappae52dra\",\"providerVersion\":\"5.1.7636.0\",\"serverVersion\":\"0.0\",\"providerVersionState\":\"Latest\",\"providerVersionExpiryDate\":\"9999-12-31T23:59:59.9999999\",\"fabricFriendlyName\":\"signoffccyappae52replicationfabric\",\"lastHeartBeat\":\"2022-09-26T11:22:31.9317498Z\",\"connectionStatus\":\"Connected\",\"protectedItemCount\":7,\"allowedScenarios\":[\"Refresh\"],\"healthErrorDetails\":[],\"draIdentifier\":\"25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"machineId\":null,\"machineName\":\"WIN-DGSM4IF4RMF\",\"biosId\":null,\"authenticationIdentityDetails\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"applicationId\":\"d759dafa-25b0-412b-b5bc-78e0307b5596\",\"objectId\":\"0cdd5aed-eadc-45ed-8b0b-3819d175955e\",\"audience\":\"d759dafa-25b0-412b-b5bc-78e0307b5596\",\"aadAuthority\":\"https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47\"},\"resourceAccessIdentityDetails\":{\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"applicationId\":\"d759dafa-25b0-412b-b5bc-78e0307b5596\",\"objectId\":\"0cdd5aed-eadc-45ed-8b0b-3819d175955e\",\"audience\":\"d759dafa-25b0-412b-b5bc-78e0307b5596\",\"aadAuthority\":\"https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47\"},\"dataPlaneAuthenticationIdentityDetails\":null,\"providerVersionDetails\":{\"version\":\"5.1.7636.0\",\"expiryDate\":\"9999-12-31T23:59:59.9999999\",\"status\":\"Supported\"}}}],\"nextLink\":null}" } }, - "Get-AzMigrateReplicationRecoveryServicesProvider+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/signoffccyappae52dra?api-version=2023-01-01+1": { + "Get-AzMigrateReplicationRecoveryServicesProvider+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/signoffccyappae52dra?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/signoffccyappae52dra?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/signoffccyappae52dra?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "32" ], diff --git a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateServerReplication.Recording.json b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateServerReplication.Recording.json index b89adda4a379..69a466014bcc 100644 --- a/src/Migrate/Migrate.Autorest/test/Get-AzMigrateServerReplication.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Get-AzMigrateServerReplication.Recording.json @@ -37,10 +37,10 @@ "Content": "{\"id\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Migrate/MigrateProjects/signoffccyproj/Solutions/Servers-Migration-ServerMigration\",\"name\":\"Servers-Migration-ServerMigration\",\"type\":\"Microsoft.Migrate/MigrateProjects/Solutions\",\"etag\":\"\\\"0400a1d3-0000-3300-0000-62dd866f0000\\\"\",\"properties\":{\"tool\":\"ServerMigration\",\"purpose\":\"Migration\",\"goal\":\"Servers\",\"status\":\"Active\",\"cleanupState\":\"None\",\"summary\":{\"instanceType\":\"Servers\",\"discoveredCount\":0,\"assessedCount\":0,\"replicatingCount\":7,\"testMigratedCount\":0,\"migratedCount\":0},\"details\":{\"groupCount\":0,\"assessmentCount\":0,\"extendedDetails\":{\"serversOnWindows\":\"0\",\"serversOnLinux\":\"0\",\"serversOnOther\":\"0\",\"dependencyEnabledMachines\":\"0\",\"machinesHavingSqlServers\":\"0\",\"machinesHavingWebServers\":\"0\",\"vaultId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault\"}}}}" } }, - "Get-AzMigrateServerReplication+[NoContext]+ListByName+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationMigrationItems?api-version=2023-01-01+2": { + "Get-AzMigrateServerReplication+[NoContext]+ListByName+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationMigrationItems?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationMigrationItems?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationMigrationItems?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "36" ], @@ -77,10 +77,10 @@ "Content": "{\"value\":[{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Win2k16\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationTime\":\"2022-09-23T17:47:01.5486966Z\",\"lastMigrationStatus\":\"Succeeded\",\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"847d99b2-057d-4f3b-8389-358a5a5a34e4\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"PAYG\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Win2k16\",\"targetVmSize\":\"Standard_A4_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/83563c3a-e189-4703-a965-0f96fc91fa52\",\"lastRecoveryPointReceived\":\"2022-09-26T15:15:56.79Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/7d78a16d-f016-4c0e-b144-94e7d5387764\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"true\",\"seedDiskTags\":{},\"targetDiskTags\":{}}}},{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Rhel8-03\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027Scale-Rhel8-03\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-26T05:16:22.8871285Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"5914e571-f3f4-56c7-b3e6-83adaf53c5c4\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"7a0a8c1c-1f32-4120-87a1-77e4b114cc7a\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9\",\"osType\":\"Linux\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Rhel8-03\",\"targetVmSize\":\"Basic_A2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[],\"targetNicTags\":{},\"migrationRecoveryPointId\":null,\"lastRecoveryPointReceived\":\"2022-09-26T09:43:07.645Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9/migrationRecoveryPoints/4ec41578-8f9b-4927-99e7-efd9a590bfb0\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":{},\"targetDiskTags\":{}}}},{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"win2k10-02-c\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027win2k10-02-c\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-26T05:38:22.8280991Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"6b407141-5a2e-56f9-b42b-03b7b69def43\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"2caaff14-d284-42dd-ac59-fe202fb62fd8\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"win2k10-02-c\",\"targetVmSize\":\"Basic_A3\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[],\"targetNicTags\":{},\"migrationRecoveryPointId\":null,\"lastRecoveryPointReceived\":\"2022-09-26T14:53:04.257Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6/migrationRecoveryPoints/be95c679-d3d7-49ca-b92f-34bda39eb529\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":{},\"targetDiskTags\":{}}}},{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Win-UEFI-03\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationTime\":\"2022-09-23T17:47:15.2771522Z\",\"lastMigrationStatus\":\"CompletedWithInformation\",\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027Scale-Win-UEFI-03\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-25T16:55:08.3023561Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"72eab4fb-f77b-56f1-b2d4-c21166aedcc3\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[{\"jobName\":\"PlannedFailover\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/11af33d5-128a-45dd-88f6-ab382d21828f\",\"startTime\":\"2022-09-23T17:47:15.2771522Z\",\"jobStatus\":\"CompletedWithInformation\"}],\"eventCorrelationId\":\"711e3761-e500-4601-a6e9-559baef2282b\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"osType\":\"Windows\",\"firmwareType\":\"EFI\",\"targetGeneration\":\"V2\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"PAYG\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Win-UEFI-03\",\"targetVmSize\":\"Standard_B12ms\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"vmNics\":[],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrationRecoveryPoints/5ec876b6-89ae-4681-bd03-9dadad61351e\",\"lastRecoveryPointReceived\":\"2022-09-26T09:44:07.644Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrationRecoveryPoints/84173b51-3e4f-46fb-be3a-3aa3334e6955\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"true\",\"seedDiskTags\":{},\"targetDiskTags\":{}}}},{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"win2k12-01\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Paused\",\"migrationState\":\"ProtectionSuspended\",\"migrationStateDescription\":\"Paused\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"None\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"ResumeReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"70bf2a6c-e930-4a08-9203-9fe67a66b5a4\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"win2k12-01\",\"targetVmSize\":\"Basic_A3\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[],\"targetNicTags\":{},\"migrationRecoveryPointId\":null,\"lastRecoveryPointReceived\":\"1999-01-22T06:48:15.062Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0/migrationRecoveryPoints/51f977f2-f497-4dcc-96ae-916d4149f471\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":{},\"targetDiskTags\":{}}}},{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"FT-Win10-Cloned\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027FT-Win10-Cloned\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-26T05:45:03.2570479Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"96b6c033-7c77-5543-888d-c6fecbb1aacb\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"85a68ea4-513b-48af-8502-238c13e9024c\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"FT-Win10-Cloned\",\"targetVmSize\":\"Basic_A3\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[],\"targetNicTags\":{},\"migrationRecoveryPointId\":null,\"lastRecoveryPointReceived\":\"2022-09-26T14:53:04.258Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980/migrationRecoveryPoints/63870fa0-e5b4-4b6b-b92b-7f3d6e9211a2\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":{},\"targetDiskTags\":{}}}},{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Rhel7\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Paused\",\"migrationState\":\"ProtectionSuspended\",\"migrationStateDescription\":\"Paused\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"None\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"ResumeReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"b151ff38-919c-4e10-aab5-caedb08ebc06\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"osType\":\"Linux\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Rhel7\",\"targetVmSize\":\"Standard_A1_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[],\"targetNicTags\":{},\"migrationRecoveryPointId\":null,\"lastRecoveryPointReceived\":\"2022-09-26T09:43:07.658Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/95923d0c-d822-4367-9038-8e715e9480fa\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":{},\"targetDiskTags\":{}}}}],\"nextLink\":null}" } }, - "Get-AzMigrateServerReplication+[NoContext]+GetBySRSID+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01+1": { + "Get-AzMigrateServerReplication+[NoContext]+GetBySRSID+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "37" ], @@ -194,10 +194,10 @@ "Content": "{\"id\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Migrate/MigrateProjects/signoffccyproj/Solutions/Servers-Migration-ServerMigration\",\"name\":\"Servers-Migration-ServerMigration\",\"type\":\"Microsoft.Migrate/MigrateProjects/Solutions\",\"etag\":\"\\\"0400a1d3-0000-3300-0000-62dd866f0000\\\"\",\"properties\":{\"tool\":\"ServerMigration\",\"purpose\":\"Migration\",\"goal\":\"Servers\",\"status\":\"Active\",\"cleanupState\":\"None\",\"summary\":{\"instanceType\":\"Servers\",\"discoveredCount\":0,\"assessedCount\":0,\"replicatingCount\":7,\"testMigratedCount\":0,\"migratedCount\":0},\"details\":{\"groupCount\":0,\"assessmentCount\":0,\"extendedDetails\":{\"serversOnWindows\":\"0\",\"serversOnLinux\":\"0\",\"serversOnOther\":\"0\",\"dependencyEnabledMachines\":\"0\",\"machinesHavingSqlServers\":\"0\",\"machinesHavingWebServers\":\"0\",\"vaultId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault\"}}}}" } }, - "Get-AzMigrateServerReplication+[NoContext]+GetBySDSID+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics?api-version=2023-01-01+3": { + "Get-AzMigrateServerReplication+[NoContext]+GetBySDSID+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics?api-version=2024-01-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "40" ], @@ -234,10 +234,10 @@ "Content": "{\"value\":[{\"name\":\"signoffccyappae52replicationfabric\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics\",\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric\",\"properties\":{\"friendlyName\":\"signoffccyappae52replicationfabric\",\"encryptionDetails\":{\"kekState\":\"None\",\"kekCertThumbprint\":null},\"rolloverEncryptionDetails\":{\"kekState\":\"None\",\"kekCertThumbprint\":null},\"internalIdentifier\":\"e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"bcdrState\":\"Valid\",\"customDetails\":{\"instanceType\":\"VMwareV2\",\"vmwareSiteId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site\",\"physicalSiteId\":null,\"migrationSolutionId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Migrate/MigrateProjects/signoffccyproj/Solutions/Servers-Migration-ServerMigration\",\"serviceEndpoint\":\"https://pod01-srs1.ccy.hypervrecoverymanager.windowsazure.com\",\"serviceResourceId\":\"2966956768769697278\",\"serviceContainerId\":\"10186957526572\",\"processServers\":[]},\"healthErrorDetails\":[],\"health\":\"Normal\"}}],\"nextLink\":null}" } }, - "Get-AzMigrateServerReplication+[NoContext]+GetBySDSID+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers?api-version=2023-01-01+4": { + "Get-AzMigrateServerReplication+[NoContext]+GetBySDSID+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers?api-version=2024-01-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "41" ], @@ -274,10 +274,10 @@ "Content": "{\"value\":[{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer\",\"name\":\"signoffccyappae52replicationcontainer\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\"properties\":{\"fabricFriendlyName\":\"signoffccyappae52replicationfabric\",\"friendlyName\":\"signoffccyappae52replicationcontainer\",\"fabricType\":\"VMwareV2\",\"protectedItemCount\":7,\"pairingStatus\":\"Paired\",\"role\":\"Primary\",\"fabricSpecificDetails\":null}}],\"nextLink\":null}" } }, - "Get-AzMigrateServerReplication+[NoContext]+GetBySDSID+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01+5": { + "Get-AzMigrateServerReplication+[NoContext]+GetBySDSID+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "42" ], @@ -314,10 +314,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Win2k16\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationTime\":\"2022-09-23T17:47:01.5486966Z\",\"lastMigrationStatus\":\"Succeeded\",\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"847d99b2-057d-4f3b-8389-358a5a5a34e4\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"PAYG\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Win2k16\",\"targetVmSize\":\"Standard_A4_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C294-1217-dec3-bc18-81f117220424\",\"diskName\":\"Win2k16\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] Win2k16/Win2k16.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":32212254720,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/asrseeddisk-Win2k16-Win2k16-d685e563-f5b4-4ff3-9e9a-4aa5416c96f4\",\"seedBlobUri\":null,\"targetManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/Win2k16-OSdisk-00\",\"targetBlobUri\":null,\"targetDiskName\":\"Win2k16-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"04a40eba-f0c4-4181-b53d-b91946aadc1f\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-00\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"6775c68f-1330-4c3d-9e04-94adf413bee0\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-01\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"ba36099f-9c7d-4cfa-89cf-6da63319a2fe\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-02\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"cd6cf44a-510f-44a8-b06a-99942d017632\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-03\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/83563c3a-e189-4703-a965-0f96fc91fa52\",\"lastRecoveryPointReceived\":\"2022-09-26T15:15:56.79Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/7d78a16d-f016-4c0e-b144-94e7d5387764\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"true\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Get-AzMigrateServerReplication+[NoContext]+GetByInputObject+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01+1": { + "Get-AzMigrateServerReplication+[NoContext]+GetByInputObject+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "43" ], @@ -354,10 +354,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Win2k16\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationTime\":\"2022-09-23T17:47:01.5486966Z\",\"lastMigrationStatus\":\"Succeeded\",\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"847d99b2-057d-4f3b-8389-358a5a5a34e4\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"PAYG\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Win2k16\",\"targetVmSize\":\"Standard_A4_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C294-1217-dec3-bc18-81f117220424\",\"diskName\":\"Win2k16\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] Win2k16/Win2k16.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":32212254720,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/asrseeddisk-Win2k16-Win2k16-d685e563-f5b4-4ff3-9e9a-4aa5416c96f4\",\"seedBlobUri\":null,\"targetManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/Win2k16-OSdisk-00\",\"targetBlobUri\":null,\"targetDiskName\":\"Win2k16-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"04a40eba-f0c4-4181-b53d-b91946aadc1f\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-00\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"6775c68f-1330-4c3d-9e04-94adf413bee0\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-01\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"ba36099f-9c7d-4cfa-89cf-6da63319a2fe\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-02\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"cd6cf44a-510f-44a8-b06a-99942d017632\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-03\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/83563c3a-e189-4703-a965-0f96fc91fa52\",\"lastRecoveryPointReceived\":\"2022-09-26T15:15:56.79Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/7d78a16d-f016-4c0e-b144-94e7d5387764\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"true\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Get-AzMigrateServerReplication+[NoContext]+GetByInputObject+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01+2": { + "Get-AzMigrateServerReplication+[NoContext]+GetByInputObject+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "44" ], @@ -432,10 +432,10 @@ "Content": "{\"id\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Migrate/MigrateProjects/signoffccyproj/Solutions/Servers-Migration-ServerMigration\",\"name\":\"Servers-Migration-ServerMigration\",\"type\":\"Microsoft.Migrate/MigrateProjects/Solutions\",\"etag\":\"\\\"0400a1d3-0000-3300-0000-62dd866f0000\\\"\",\"properties\":{\"tool\":\"ServerMigration\",\"purpose\":\"Migration\",\"goal\":\"Servers\",\"status\":\"Active\",\"cleanupState\":\"None\",\"summary\":{\"instanceType\":\"Servers\",\"discoveredCount\":0,\"assessedCount\":0,\"replicatingCount\":7,\"testMigratedCount\":0,\"migratedCount\":0},\"details\":{\"groupCount\":0,\"assessmentCount\":0,\"extendedDetails\":{\"serversOnWindows\":\"0\",\"serversOnLinux\":\"0\",\"serversOnOther\":\"0\",\"dependencyEnabledMachines\":\"0\",\"machinesHavingSqlServers\":\"0\",\"machinesHavingWebServers\":\"0\",\"vaultId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault\"}}}}" } }, - "Get-AzMigrateServerReplication+[NoContext]+ListById+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationMigrationItems?api-version=2023-01-01+2": { + "Get-AzMigrateServerReplication+[NoContext]+ListById+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationMigrationItems?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationMigrationItems?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationMigrationItems?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "46" ], diff --git a/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationPolicy.Recording.json b/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationPolicy.Recording.json index 129c52a44400..75aa36b0b31b 100644 --- a/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationPolicy.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationPolicy.Recording.json @@ -1,8 +1,8 @@ { - "New-AzMigrateReplicationPolicy+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoff2105app1452sitepolicy?api-version=2023-01-01+1": { + "New-AzMigrateReplicationPolicy+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoff2105app1452sitepolicy?api-version=2024-01-01+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoff2105app1452sitepolicy?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoff2105app1452sitepolicy?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"providerSpecificInput\": {\n \"instanceType\": \"VMwareCbt\",\n \"recoveryPointHistoryInMinutes\": 4320,\n \"crashConsistentFrequencyInMinutes\": 60,\n \"appConsistentFrequencyInMinutes\": 240\n }\n }\n}", "Headers": { }, @@ -16,11 +16,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoff2105app1452sitepolicy/operationresults/d257053b-b34f-4303-ab6d-45ce8e393a11?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoff2105app1452sitepolicy/operationresults/d257053b-b34f-4303-ab6d-45ce8e393a11?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "d85bb2cd-a4bc-4e19-a4f1-99f335e86fdb 9/26/2022 11:59:49 AM" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/d257053b-b34f-4303-ab6d-45ce8e393a11?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/d257053b-b34f-4303-ab6d-45ce8e393a11?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "d85bb2cd-a4bc-4e19-a4f1-99f335e86fdb" ], "Server": [ "Kestrel" ], @@ -36,10 +36,10 @@ "Content": null } }, - "New-AzMigrateReplicationPolicy+[NoContext]+CreateExpanded+$GET+https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/d257053b-b34f-4303-ab6d-45ce8e393a11?api-version=2023-01-01+2": { + "New-AzMigrateReplicationPolicy+[NoContext]+CreateExpanded+$GET+https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/d257053b-b34f-4303-ab6d-45ce8e393a11?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/d257053b-b34f-4303-ab6d-45ce8e393a11?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/d257053b-b34f-4303-ab6d-45ce8e393a11?api-version=2024-01-01", "Content": null, "Headers": { "Authorization": [ "[Filtered]" ], @@ -76,10 +76,10 @@ "Content": "{\"error\":null,\"id\":null,\"name\":\"d257053b-b34f-4303-ab6d-45ce8e393a11\",\"properties\":null,\"status\":\"Succeeded\",\"startTime\":\"2022-09-26T11:59:48.8359163Z\",\"endTime\":\"2022-09-26T11:59:49.0000000Z\",\"percentComplete\":null}" } }, - "New-AzMigrateReplicationPolicy+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoff2105app1452sitepolicy?api-version=2023-01-01+3": { + "New-AzMigrateReplicationPolicy+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoff2105app1452sitepolicy?api-version=2024-01-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoff2105app1452sitepolicy?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoff2105app1452sitepolicy?api-version=2024-01-01", "Content": null, "Headers": { "Authorization": [ "[Filtered]" ], diff --git a/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationPolicy.Tests.ps1 b/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationPolicy.Tests.ps1 index 38a3faacebc3..72adc969c2df 100644 --- a/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationPolicy.Tests.ps1 +++ b/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationPolicy.Tests.ps1 @@ -13,7 +13,7 @@ while(-not $mockingPath) { Describe 'New-AzMigrateReplicationPolicy' { It 'CreateExpanded' { - $providerSpecificPolicy = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtPolicyCreationInput]::new() + $providerSpecificPolicy = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtPolicyCreationInput]::new() $providerSpecificPolicy.AppConsistentFrequencyInMinute = 240 $providerSpecificPolicy.InstanceType = "VMwareCbt" $providerSpecificPolicy.RecoveryPointHistoryInMinute = 4320 diff --git a/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationProtectionContainerMapping.Recording.json b/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationProtectionContainerMapping.Recording.json index e298a85ab616..1a8fa80e7afa 100644 --- a/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationProtectionContainerMapping.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationProtectionContainerMapping.Recording.json @@ -1,8 +1,8 @@ { - "New-AzMigrateReplicationProtectionContainerMapping+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2023-01-01+1": { + "New-AzMigrateReplicationProtectionContainerMapping+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2024-01-01+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"targetProtectionContainerId\": \"Microsoft Azure\",\n \"policyId\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\n \"providerSpecificInput\": {\n \"instanceType\": \"VMwareCbt\",\n \"keyVaultId\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.KeyVault/vaults/migratekv1612849844\",\n \"keyVaultUri\": \"https://migratekv1612849844.vault.azure.net\",\n \"storageAccountId\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migrategwsa1612849844\",\n \"storageAccountSasSecretName\": \"migrategwsa1612849844-gwySas\",\n \"serviceBusConnectionStringSecretName\": \"ServiceBusConnectionString\",\n \"targetLocation\": \"centraluseuap\"\n }\n }\n}", "Headers": { }, @@ -16,11 +16,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping/operationresults/8405f59a-1678-4a45-85cd-802c84fb058b?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping/operationresults/8405f59a-1678-4a45-85cd-802c84fb058b?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/8405f59a-1678-4a45-85cd-802c84fb058b", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/8405f59a-1678-4a45-85cd-802c84fb058b" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/8405f59a-1678-4a45-85cd-802c84fb058b?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/8405f59a-1678-4a45-85cd-802c84fb058b?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "3706812b-9f35-4cb8-bec6-36b1f16f5f7c" ], "Server": [ "Kestrel" ], @@ -36,10 +36,10 @@ "Content": null } }, - "New-AzMigrateReplicationProtectionContainerMapping+[NoContext]+CreateExpanded+$GET+https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/8405f59a-1678-4a45-85cd-802c84fb058b?api-version=2023-01-01+2": { + "New-AzMigrateReplicationProtectionContainerMapping+[NoContext]+CreateExpanded+$GET+https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/8405f59a-1678-4a45-85cd-802c84fb058b?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/8405f59a-1678-4a45-85cd-802c84fb058b?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/8405f59a-1678-4a45-85cd-802c84fb058b?api-version=2024-01-01", "Content": null, "Headers": { "Authorization": [ "[Filtered]" ], @@ -76,10 +76,10 @@ "Content": "{\"error\":null,\"id\":null,\"name\":\"8405f59a-1678-4a45-85cd-802c84fb058b\",\"properties\":null,\"status\":\"Succeeded\",\"startTime\":\"2022-09-26T12:00:47.8637245Z\",\"endTime\":\"2022-09-26T12:00:48.0000000Z\",\"percentComplete\":null}" } }, - "New-AzMigrateReplicationProtectionContainerMapping+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2023-01-01+3": { + "New-AzMigrateReplicationProtectionContainerMapping+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2024-01-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationProtectionContainerMappings/containermapping?api-version=2024-01-01", "Content": null, "Headers": { "Authorization": [ "[Filtered]" ], diff --git a/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationProtectionContainerMapping.Tests.ps1 b/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationProtectionContainerMapping.Tests.ps1 index 410b5f2a12a3..47a39e1a9b90 100644 --- a/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationProtectionContainerMapping.Tests.ps1 +++ b/src/Migrate/Migrate.Autorest/test/New-AzMigrateReplicationProtectionContainerMapping.Tests.ps1 @@ -13,7 +13,7 @@ while(-not $mockingPath) { Describe 'New-AzMigrateReplicationProtectionContainerMapping' { It 'CreateExpanded' { - $providerSpecificInput = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202301.VMwareCbtContainerMappingInput]::new() + $providerSpecificInput = [Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202401.VMwareCbtContainerMappingInput]::new() $providerSpecificInput.InstanceType = "VMwareCbt" $providerSpecificInput.KeyVaultId = "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.KeyVault/vaults/migratekv942102443" $providerSpecificInput.KeyVaultUri = "https://migratekv942102443.vault.azure.net/" diff --git a/src/Migrate/Migrate.Autorest/test/Remove-AzMigrateReplicationFabricInfra.Tests.ps1 b/src/Migrate/Migrate.Autorest/test/Remove-AzMigrateReplicationFabricInfra.Tests.ps1 new file mode 100644 index 000000000000..73b72134593e --- /dev/null +++ b/src/Migrate/Migrate.Autorest/test/Remove-AzMigrateReplicationFabricInfra.Tests.ps1 @@ -0,0 +1,25 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Remove-AzMigrateReplicationFabricInfra')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzMigrateReplicationFabricInfra.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Remove-AzMigrateReplicationFabricInfra' { + It 'Remove' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'RemoveViaIdentity' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/Migrate/Migrate.Autorest/test/Remove-AzMigrateServerReplication.Recording.json b/src/Migrate/Migrate.Autorest/test/Remove-AzMigrateServerReplication.Recording.json index 5a5a23bc6be7..b5bc723157a8 100644 --- a/src/Migrate/Migrate.Autorest/test/Remove-AzMigrateServerReplication.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Remove-AzMigrateServerReplication.Recording.json @@ -1,8 +1,8 @@ { - "Remove-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$DELETE+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980?api-version=2023-01-01+1": { + "Remove-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$DELETE+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980?api-version=2024-01-01+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "1" ], @@ -21,11 +21,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980/operationresults/4e0da3b6-19f0-43bc-a357-50ad668b9486?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980/operationresults/4e0da3b6-19f0-43bc-a357-50ad668b9486?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "3a4f4861-c45d-40ec-bfd6-ae99b954cbfc 9/26/2022 3:48:15 PM" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/4e0da3b6-19f0-43bc-a357-50ad668b9486?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/4e0da3b6-19f0-43bc-a357-50ad668b9486?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "3a4f4861-c45d-40ec-bfd6-ae99b954cbfc" ], "Server": [ "Kestrel" ], @@ -41,10 +41,10 @@ "Content": null } }, - "Remove-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/4e0da3b6-19f0-43bc-a357-50ad668b9486?api-version=2023-01-01+2": { + "Remove-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/4e0da3b6-19f0-43bc-a357-50ad668b9486?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/4e0da3b6-19f0-43bc-a357-50ad668b9486?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/4e0da3b6-19f0-43bc-a357-50ad668b9486?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "2" ], diff --git a/src/Migrate/Migrate.Autorest/test/Restart-AzMigrateServerReplication.Recording.json b/src/Migrate/Migrate.Autorest/test/Restart-AzMigrateServerReplication.Recording.json index c0af9cc08088..fa7393d0f5b7 100644 --- a/src/Migrate/Migrate.Autorest/test/Restart-AzMigrateServerReplication.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Restart-AzMigrateServerReplication.Recording.json @@ -1,8 +1,8 @@ { - "Restart-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01+1": { + "Restart-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "9" ], @@ -39,10 +39,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Rhel7\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationTime\":\"2022-09-26T13:07:06.2426648Z\",\"lastTestMigrationStatus\":\"Succeeded\",\"lastMigrationStatus\":null,\"testMigrateState\":\"TestMigrationSucceeded\",\"testMigrateStateDescription\":\"Test clean up pending\",\"health\":\"Normal\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"TestMigrateCleanup\"],\"currentJob\":{\"jobName\":\"TestFailover\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/0caa1c59-de25-4999-9e0c-208130f22551\",\"startTime\":\"2022-09-26T13:07:06.2426648Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"b151ff38-919c-4e10-aab5-caedb08ebc06\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"osType\":\"Linux\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Rhel7\",\"targetVmSize\":\"Standard_A1_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C29a-e551-281f-56c2-45d9524f0b6a\",\"diskName\":\"Scale-Rhel7\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-Rhel7/Scale-Rhel7.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Rh-Scale_Rh-a4ffca03-27c9-41e9-bbf4-2c2538855534\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Rhel7-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"bf00d29d-df79-4406-bacb-ee4a5bb65fe6\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testSubnetName\":\"default\",\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Scale-Rhel7-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/ce9d97d1-cbf6-4554-bd99-7a3c1ebc36ef\",\"lastRecoveryPointReceived\":\"2022-09-26T11:56:31.012Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/ce9d97d1-cbf6-4554-bd99-7a3c1ebc36ef\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Restart-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/resync?api-version=2023-01-01+2": { + "Restart-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/resync?api-version=2024-01-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/resync?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/resync?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"providerSpecificDetails\": {\n \"instanceType\": \"VMwareCbt\",\n \"skipCbtReset\": \"true\"\n }\n }\n}", "Headers": { }, @@ -56,11 +56,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/operationresults/17ce92b9-b582-4546-ae9a-456d3bdbd597?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/operationresults/17ce92b9-b582-4546-ae9a-456d3bdbd597?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17ce92b9-b582-4546-ae9a-456d3bdbd597", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17ce92b9-b582-4546-ae9a-456d3bdbd597" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/17ce92b9-b582-4546-ae9a-456d3bdbd597?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/17ce92b9-b582-4546-ae9a-456d3bdbd597?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "89561588-2d3b-40d8-ac7b-742be6dd4344" ], "Server": [ "Kestrel" ], @@ -76,10 +76,10 @@ "Content": null } }, - "Restart-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17ce92b9-b582-4546-ae9a-456d3bdbd597?api-version=2023-01-01+3": { + "Restart-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17ce92b9-b582-4546-ae9a-456d3bdbd597?api-version=2024-01-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17ce92b9-b582-4546-ae9a-456d3bdbd597?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17ce92b9-b582-4546-ae9a-456d3bdbd597?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "11" ], @@ -116,10 +116,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17ce92b9-b582-4546-ae9a-456d3bdbd597\",\"name\":\"17ce92b9-b582-4546-ae9a-456d3bdbd597\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationJobs\",\"properties\":{\"activityId\":\"89561588-2d3b-40d8-ac7b-742be6dd4344 ActivityId: cfbdb8c1-5e19-4839-a976-82471ba9fcc5\",\"scenarioName\":\"MigrationStartResync\",\"friendlyName\":\"Resynchronize replication\",\"state\":\"InProgress\",\"stateDescription\":\"InProgress\",\"tasks\":[{\"taskId\":\"StartResyncPreflightChecksTask\",\"name\":\"StartResyncPreflightChecksTask\",\"startTime\":\"2022-09-26T13:40:39.2290745Z\",\"endTime\":\"2022-09-26T13:40:39.32288Z\",\"allowedActions\":[],\"friendlyName\":\"Prerequisites check for starting resynchronization\",\"state\":\"Failed\",\"stateDescription\":\"Failed\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[{\"serviceErrorDetails\":{\"code\":\"110112\",\"message\":\"The virtual machine cannot be resynchronized.\",\"possibleCauses\":\"Resynchronization is not allowed on the machine.\",\"recommendedAction\":\"Resolve the issue and retry the operation. If the problem persists, contact support.\",\"activityId\":\"89561588-2d3b-40d8-ac7b-742be6dd4344 ActivityId: cfbdb8c1-5e19-4839-a976-82471ba9fcc5\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"0815afe2-8874-4ed2-bc9a-e7e5635dbf80\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Error\",\"creationTime\":\"2022-09-26T13:40:39.1196882Z\",\"taskId\":\"StartResyncPreflightChecksTask\"}]},{\"taskId\":\"PrepareForResynchronizationTask\",\"name\":\"PrepareForResynchronizationTask\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Prepare for resynchronization\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]},{\"taskId\":\"StartResynchronizationTask\",\"name\":\"StartResynchronizationTask\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Start resynchronization\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]}],\"errors\":[{\"serviceErrorDetails\":{\"code\":\"110112\",\"message\":\"The virtual machine cannot be resynchronized.\",\"possibleCauses\":\"Resynchronization is not allowed on the machine.\",\"recommendedAction\":\"Resolve the issue and retry the operation. If the problem persists, contact support.\",\"activityId\":\"89561588-2d3b-40d8-ac7b-742be6dd4344 ActivityId: cfbdb8c1-5e19-4839-a976-82471ba9fcc5\"},\"providerErrorDetails\":{\"errorCode\":0,\"errorMessage\":null,\"errorId\":\"0815afe2-8874-4ed2-bc9a-e7e5635dbf80\",\"possibleCauses\":\"\",\"recommendedAction\":\"\"},\"errorLevel\":\"Error\",\"creationTime\":\"2022-09-26T13:40:39.1196882Z\",\"taskId\":\"StartResyncPreflightChecksTask\"}],\"startTime\":\"2022-09-26T13:40:38.7348747Z\",\"allowedActions\":[\"Cancel\"],\"targetObjectId\":\"ae1d360a-4bae-5989-b82a-ed31b2ccc6b4\",\"targetObjectName\":\"Scale-Rhel7\",\"targetInstanceType\":\"ProtectionEntity\",\"customDetails\":{\"instanceType\":\"AsrJobDetails\",\"affectedObjectDetails\":{\"primaryVmId\":\"ae1d360a-4bae-5989-b82a-ed31b2ccc6b4\",\"primaryVmName\":\"Scale-Rhel7\",\"recoveryVmId\":\"\",\"recoveryVmName\":\"Scale-Rhel7\",\"protectionProfileId\":\"4af409af-0d07-5e52-95dc-1e472a625f17\",\"primaryCloudId\":\"cloud_e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryCloudName\":\"signoffccyappae52replicationcontainer\",\"recoveryCloudId\":\"d38048d4-b460-4791-8ece-108395ee8478\",\"recoveryCloudName\":\"Microsoft Azure\",\"primaryVmmId\":\"e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryVmmName\":\"signoffccyappae52replicationfabric\",\"recoveryVmmId\":\"21a9403c-6ec1-44f2-b744-b4e50b792387\",\"recoveryVmmName\":\"Microsoft Azure\",\"primaryFabricProviderId\":\"VMwareV2\",\"recoveryFabricProviderId\":\"Azure\"}}}}" } }, - "Restart-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01+1": { + "Restart-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "12" ], @@ -156,10 +156,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Rhel7\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationTime\":\"2022-09-26T13:07:06.2426648Z\",\"lastTestMigrationStatus\":\"Succeeded\",\"lastMigrationStatus\":null,\"testMigrateState\":\"TestMigrationSucceeded\",\"testMigrateStateDescription\":\"Test clean up pending\",\"health\":\"Normal\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"TestMigrateCleanup\"],\"currentJob\":{\"jobName\":\"TestFailover\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/0caa1c59-de25-4999-9e0c-208130f22551\",\"startTime\":\"2022-09-26T13:07:06.2426648Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"b151ff38-919c-4e10-aab5-caedb08ebc06\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"osType\":\"Linux\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Rhel7\",\"targetVmSize\":\"Standard_A1_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C29a-e551-281f-56c2-45d9524f0b6a\",\"diskName\":\"Scale-Rhel7\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-Rhel7/Scale-Rhel7.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Rh-Scale_Rh-a4ffca03-27c9-41e9-bbf4-2c2538855534\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Rhel7-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"bf00d29d-df79-4406-bacb-ee4a5bb65fe6\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testSubnetName\":\"default\",\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Scale-Rhel7-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/ce9d97d1-cbf6-4554-bd99-7a3c1ebc36ef\",\"lastRecoveryPointReceived\":\"2022-09-26T11:56:31.012Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/ce9d97d1-cbf6-4554-bd99-7a3c1ebc36ef\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Restart-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01+2": { + "Restart-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "13" ], @@ -196,10 +196,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Rhel7\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationTime\":\"2022-09-26T13:07:06.2426648Z\",\"lastTestMigrationStatus\":\"Succeeded\",\"lastMigrationStatus\":null,\"testMigrateState\":\"TestMigrationSucceeded\",\"testMigrateStateDescription\":\"Test clean up pending\",\"health\":\"Normal\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"TestMigrateCleanup\"],\"currentJob\":{\"jobName\":\"TestFailover\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/0caa1c59-de25-4999-9e0c-208130f22551\",\"startTime\":\"2022-09-26T13:07:06.2426648Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"b151ff38-919c-4e10-aab5-caedb08ebc06\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"osType\":\"Linux\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Rhel7\",\"targetVmSize\":\"Standard_A1_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C29a-e551-281f-56c2-45d9524f0b6a\",\"diskName\":\"Scale-Rhel7\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-Rhel7/Scale-Rhel7.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Rh-Scale_Rh-a4ffca03-27c9-41e9-bbf4-2c2538855534\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Rhel7-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"bf00d29d-df79-4406-bacb-ee4a5bb65fe6\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testSubnetName\":\"default\",\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Scale-Rhel7-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/ce9d97d1-cbf6-4554-bd99-7a3c1ebc36ef\",\"lastRecoveryPointReceived\":\"2022-09-26T11:56:31.012Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/ce9d97d1-cbf6-4554-bd99-7a3c1ebc36ef\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Restart-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/resync?api-version=2023-01-01+3": { + "Restart-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/resync?api-version=2024-01-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/resync?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/resync?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"providerSpecificDetails\": {\n \"instanceType\": \"VMwareCbt\",\n \"skipCbtReset\": \"true\"\n }\n }\n}", "Headers": { }, @@ -213,11 +213,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/operationresults/fdbb12fc-5124-4aee-94d6-b3b5021a42d6?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/operationresults/fdbb12fc-5124-4aee-94d6-b3b5021a42d6?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/fdbb12fc-5124-4aee-94d6-b3b5021a42d6", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/fdbb12fc-5124-4aee-94d6-b3b5021a42d6" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/fdbb12fc-5124-4aee-94d6-b3b5021a42d6?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/fdbb12fc-5124-4aee-94d6-b3b5021a42d6?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "15b5984e-b783-4b49-b4c9-5bd2582523f6" ], "Server": [ "Kestrel" ], @@ -233,10 +233,10 @@ "Content": null } }, - "Restart-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/fdbb12fc-5124-4aee-94d6-b3b5021a42d6?api-version=2023-01-01+4": { + "Restart-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/fdbb12fc-5124-4aee-94d6-b3b5021a42d6?api-version=2024-01-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/fdbb12fc-5124-4aee-94d6-b3b5021a42d6?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/fdbb12fc-5124-4aee-94d6-b3b5021a42d6?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "15" ], diff --git a/src/Migrate/Migrate.Autorest/test/Resume-AzMigrateServerReplication.Recording.json b/src/Migrate/Migrate.Autorest/test/Resume-AzMigrateServerReplication.Recording.json index c910b9ed6e27..d4c9da198c8b 100644 --- a/src/Migrate/Migrate.Autorest/test/Resume-AzMigrateServerReplication.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Resume-AzMigrateServerReplication.Recording.json @@ -1,8 +1,8 @@ { - "Resume-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01+1": { + "Resume-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "4" ], @@ -39,10 +39,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Win2k16\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Paused\",\"migrationState\":\"ProtectionSuspended\",\"migrationStateDescription\":\"Paused\",\"lastTestMigrationStatus\":null,\"lastMigrationTime\":\"2022-09-23T17:47:01.5486966Z\",\"lastMigrationStatus\":\"Succeeded\",\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"None\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"ResumeReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"847d99b2-057d-4f3b-8389-358a5a5a34e4\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"PAYG\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Win2k16\",\"targetVmSize\":\"Standard_A4_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C294-1217-dec3-bc18-81f117220424\",\"diskName\":\"Win2k16\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] Win2k16/Win2k16.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":32212254720,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/asrseeddisk-Win2k16-Win2k16-d685e563-f5b4-4ff3-9e9a-4aa5416c96f4\",\"seedBlobUri\":null,\"targetManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/Win2k16-OSdisk-00\",\"targetBlobUri\":null,\"targetDiskName\":\"Win2k16-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"04a40eba-f0c4-4181-b53d-b91946aadc1f\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-00\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"6775c68f-1330-4c3d-9e04-94adf413bee0\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-01\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"ba36099f-9c7d-4cfa-89cf-6da63319a2fe\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-02\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"cd6cf44a-510f-44a8-b06a-99942d017632\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-03\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/83563c3a-e189-4703-a965-0f96fc91fa52\",\"lastRecoveryPointReceived\":\"2022-09-26T07:59:04.937Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/763bd17f-ddb6-4a1d-b3ae-7803edab3d18\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"true\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Resume-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/resumeReplication?api-version=2023-01-01+2": { + "Resume-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/resumeReplication?api-version=2024-01-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/resumeReplication?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/resumeReplication?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"providerSpecificDetails\": {\n \"instanceType\": \"VMwareCbt\",\n \"deleteMigrationResources\": \"false\"\n }\n }\n}", "Headers": { }, @@ -56,11 +56,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/operationresults/1887f9c5-d8f5-492c-bf4a-fcb3d4147e21?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/operationresults/1887f9c5-d8f5-492c-bf4a-fcb3d4147e21?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1887f9c5-d8f5-492c-bf4a-fcb3d4147e21", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1887f9c5-d8f5-492c-bf4a-fcb3d4147e21" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/1887f9c5-d8f5-492c-bf4a-fcb3d4147e21?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/1887f9c5-d8f5-492c-bf4a-fcb3d4147e21?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "734b31bb-1ca9-41e6-a238-fc879fabff99" ], "Server": [ "Kestrel" ], @@ -76,10 +76,10 @@ "Content": null } }, - "Resume-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1887f9c5-d8f5-492c-bf4a-fcb3d4147e21?api-version=2023-01-01+3": { + "Resume-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1887f9c5-d8f5-492c-bf4a-fcb3d4147e21?api-version=2024-01-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1887f9c5-d8f5-492c-bf4a-fcb3d4147e21?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1887f9c5-d8f5-492c-bf4a-fcb3d4147e21?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "6" ], @@ -116,10 +116,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1887f9c5-d8f5-492c-bf4a-fcb3d4147e21\",\"name\":\"1887f9c5-d8f5-492c-bf4a-fcb3d4147e21\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationJobs\",\"properties\":{\"activityId\":\"734b31bb-1ca9-41e6-a238-fc879fabff99 ActivityId: 5b268780-8969-4434-8516-3644f067d609\",\"scenarioName\":\"ResumeReplication\",\"friendlyName\":\"Resume replication\",\"state\":\"InProgress\",\"stateDescription\":\"InProgress\",\"tasks\":[{\"taskId\":\"ResumeReplicationPreflightChecksTask\",\"name\":\"ResumeReplicationPreflightChecksTask\",\"startTime\":\"2022-09-26T10:48:31.4408179Z\",\"endTime\":\"2022-09-26T10:48:31.2219874Z\",\"allowedActions\":[],\"friendlyName\":\"Prerequisites check for resume replication\",\"state\":\"Succeeded\",\"stateDescription\":\"Completed\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]},{\"taskId\":\"CancelFailoverRecovery\",\"name\":\"DeleteMigrationResources\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Clean up previously migrated resources\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]},{\"taskId\":\"ResumeReplicationTask\",\"name\":\"ResumeReplicationTask\",\"startTime\":\"2022-09-26T10:48:31.2219874Z\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Starting resume replication\",\"state\":\"InProgress\",\"stateDescription\":\"InProgress\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]}],\"errors\":[],\"startTime\":\"2022-09-26T10:48:30.7894455Z\",\"allowedActions\":[],\"targetObjectId\":\"52896ea4-214d-5825-bc32-24169dfcc44c\",\"targetObjectName\":\"Win2k16\",\"targetInstanceType\":\"ProtectionEntity\",\"customDetails\":{\"instanceType\":\"AsrJobDetails\",\"affectedObjectDetails\":{\"primaryVmId\":\"52896ea4-214d-5825-bc32-24169dfcc44c\",\"primaryVmName\":\"Win2k16\",\"recoveryVmId\":\"\",\"recoveryVmName\":\"Win2k16\",\"protectionProfileId\":\"4af409af-0d07-5e52-95dc-1e472a625f17\",\"primaryCloudId\":\"cloud_e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryCloudName\":\"signoffccyappae52replicationcontainer\",\"recoveryCloudId\":\"d38048d4-b460-4791-8ece-108395ee8478\",\"recoveryCloudName\":\"Microsoft Azure\",\"primaryVmmId\":\"e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryVmmName\":\"signoffccyappae52replicationfabric\",\"recoveryVmmId\":\"21a9403c-6ec1-44f2-b744-b4e50b792387\",\"recoveryVmmName\":\"Microsoft Azure\",\"primaryFabricProviderId\":\"VMwareV2\",\"recoveryFabricProviderId\":\"Azure\"}}}}" } }, - "Resume-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2023-01-01+1": { + "Resume-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "7" ], @@ -156,10 +156,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Win-UEFI-03\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Paused\",\"migrationState\":\"ProtectionSuspended\",\"migrationStateDescription\":\"Paused\",\"lastTestMigrationStatus\":null,\"lastMigrationTime\":\"2022-09-23T17:47:15.2771522Z\",\"lastMigrationStatus\":\"CompletedWithInformation\",\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"None\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"ResumeReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[{\"jobName\":\"PlannedFailover\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/11af33d5-128a-45dd-88f6-ab382d21828f\",\"startTime\":\"2022-09-23T17:47:15.2771522Z\",\"jobStatus\":\"CompletedWithInformation\"}],\"eventCorrelationId\":\"711e3761-e500-4601-a6e9-559baef2282b\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"osType\":\"Windows\",\"firmwareType\":\"EFI\",\"targetGeneration\":\"V2\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"PAYG\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Win-UEFI-03\",\"targetVmSize\":\"Standard_B12ms\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C296-b4dd-8745-0474-2826c3aae7bd\",\"diskName\":\"Scale-WinUEFI02\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-WinUEFI02/Scale-WinUEFI02.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Wi-Scale_Wi-fb308118-b390-453d-ae8c-bd7ea3c25ea1\",\"seedBlobUri\":null,\"targetManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/Scale-Win-UEFI-03-OSdisk-00\",\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Win-UEFI-03-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"vmNics\":[{\"nicId\":\"388dde09-4052-434d-99e9-71f477a6f375\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":\"10.150.103.69\",\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"RouteServerSubnet\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testSubnetName\":\"default\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Scale-Win-UEFI-03-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrationRecoveryPoints/5ec876b6-89ae-4681-bd03-9dadad61351e\",\"lastRecoveryPointReceived\":\"2022-09-26T02:17:58.114Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrationRecoveryPoints/a382dc5c-9719-4d2f-aba0-d2853e8781f7\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"true\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Resume-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2023-01-01+2": { + "Resume-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "8" ], @@ -196,10 +196,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Win-UEFI-03\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Paused\",\"migrationState\":\"ProtectionSuspended\",\"migrationStateDescription\":\"Paused\",\"lastTestMigrationStatus\":null,\"lastMigrationTime\":\"2022-09-23T17:47:15.2771522Z\",\"lastMigrationStatus\":\"CompletedWithInformation\",\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"None\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"ResumeReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[{\"jobName\":\"PlannedFailover\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/11af33d5-128a-45dd-88f6-ab382d21828f\",\"startTime\":\"2022-09-23T17:47:15.2771522Z\",\"jobStatus\":\"CompletedWithInformation\"}],\"eventCorrelationId\":\"711e3761-e500-4601-a6e9-559baef2282b\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"osType\":\"Windows\",\"firmwareType\":\"EFI\",\"targetGeneration\":\"V2\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"PAYG\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Win-UEFI-03\",\"targetVmSize\":\"Standard_B12ms\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C296-b4dd-8745-0474-2826c3aae7bd\",\"diskName\":\"Scale-WinUEFI02\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-WinUEFI02/Scale-WinUEFI02.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Wi-Scale_Wi-fb308118-b390-453d-ae8c-bd7ea3c25ea1\",\"seedBlobUri\":null,\"targetManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/Scale-Win-UEFI-03-OSdisk-00\",\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Win-UEFI-03-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"vmNics\":[{\"nicId\":\"388dde09-4052-434d-99e9-71f477a6f375\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":\"10.150.103.69\",\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"RouteServerSubnet\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testSubnetName\":\"default\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Scale-Win-UEFI-03-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrationRecoveryPoints/5ec876b6-89ae-4681-bd03-9dadad61351e\",\"lastRecoveryPointReceived\":\"2022-09-26T02:17:58.114Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrationRecoveryPoints/a382dc5c-9719-4d2f-aba0-d2853e8781f7\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"true\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Resume-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/resumeReplication?api-version=2023-01-01+3": { + "Resume-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/resumeReplication?api-version=2024-01-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/resumeReplication?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/resumeReplication?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"providerSpecificDetails\": {\n \"instanceType\": \"VMwareCbt\",\n \"deleteMigrationResources\": \"false\"\n }\n }\n}", "Headers": { }, @@ -213,11 +213,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/operationresults/6d25f058-ba62-4797-be65-01cfff4d4d46?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/operationresults/6d25f058-ba62-4797-be65-01cfff4d4d46?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6d25f058-ba62-4797-be65-01cfff4d4d46", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6d25f058-ba62-4797-be65-01cfff4d4d46" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/6d25f058-ba62-4797-be65-01cfff4d4d46?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/6d25f058-ba62-4797-be65-01cfff4d4d46?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "4849f573-ad81-4b7b-b5ea-7b0234066ad2" ], "Server": [ "Kestrel" ], @@ -233,10 +233,10 @@ "Content": null } }, - "Resume-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6d25f058-ba62-4797-be65-01cfff4d4d46?api-version=2023-01-01+4": { + "Resume-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6d25f058-ba62-4797-be65-01cfff4d4d46?api-version=2024-01-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6d25f058-ba62-4797-be65-01cfff4d4d46?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/6d25f058-ba62-4797-be65-01cfff4d4d46?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "10" ], diff --git a/src/Migrate/Migrate.Autorest/test/Set-AzMigrateServerReplication.Recording.json b/src/Migrate/Migrate.Autorest/test/Set-AzMigrateServerReplication.Recording.json index 629b204864d8..a22c6c9800de 100644 --- a/src/Migrate/Migrate.Autorest/test/Set-AzMigrateServerReplication.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Set-AzMigrateServerReplication.Recording.json @@ -1,8 +1,8 @@ { - "Set-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01+1": { + "Set-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "19" ], @@ -39,10 +39,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Win2k16\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationTime\":\"2022-09-23T17:47:01.5486966Z\",\"lastMigrationStatus\":\"Succeeded\",\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"847d99b2-057d-4f3b-8389-358a5a5a34e4\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"PAYG\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Win2k16\",\"targetVmSize\":\"Standard_A4_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C294-1217-dec3-bc18-81f117220424\",\"diskName\":\"Win2k16\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] Win2k16/Win2k16.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":32212254720,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/asrseeddisk-Win2k16-Win2k16-d685e563-f5b4-4ff3-9e9a-4aa5416c96f4\",\"seedBlobUri\":null,\"targetManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/Win2k16-OSdisk-00\",\"targetBlobUri\":null,\"targetDiskName\":\"Win2k16-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"04a40eba-f0c4-4181-b53d-b91946aadc1f\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-00\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"6775c68f-1330-4c3d-9e04-94adf413bee0\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-01\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"ba36099f-9c7d-4cfa-89cf-6da63319a2fe\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-02\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"cd6cf44a-510f-44a8-b06a-99942d017632\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-03\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/83563c3a-e189-4703-a965-0f96fc91fa52\",\"lastRecoveryPointReceived\":\"2022-09-26T16:23:04.268Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/573ba598-0c75-4a86-8cd2-94020e76422b\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"true\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Set-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2105srcrg/providers/Microsoft.RecoveryServices/vaults/signoff2105app1452vault/replicationFabrics/signoff2105app1c36replicationfabric/replicationProtectionContainers/signoff2105app1c36replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-6f5e3b29-29ad-4e62-abbd-6cd33c4183ef_5015a79d-1383-b5f6-b434-029793d367ea?api-version=2023-01-01+1": { + "Set-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2105srcrg/providers/Microsoft.RecoveryServices/vaults/signoff2105app1452vault/replicationFabrics/signoff2105app1c36replicationfabric/replicationProtectionContainers/signoff2105app1c36replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-6f5e3b29-29ad-4e62-abbd-6cd33c4183ef_5015a79d-1383-b5f6-b434-029793d367ea?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2105srcrg/providers/Microsoft.RecoveryServices/vaults/signoff2105app1452vault/replicationFabrics/signoff2105app1c36replicationfabric/replicationProtectionContainers/signoff2105app1c36replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-6f5e3b29-29ad-4e62-abbd-6cd33c4183ef_5015a79d-1383-b5f6-b434-029793d367ea?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2105srcrg/providers/Microsoft.RecoveryServices/vaults/signoff2105app1452vault/replicationFabrics/signoff2105app1c36replicationfabric/replicationProtectionContainers/signoff2105app1c36replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-6f5e3b29-29ad-4e62-abbd-6cd33c4183ef_5015a79d-1383-b5f6-b434-029793d367ea?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "20" ], diff --git a/src/Migrate/Migrate.Autorest/test/Start-AzMigrateServerMigration.Recording.json b/src/Migrate/Migrate.Autorest/test/Start-AzMigrateServerMigration.Recording.json index 0b9b8139af0c..9fa4392a5d59 100644 --- a/src/Migrate/Migrate.Autorest/test/Start-AzMigrateServerMigration.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Start-AzMigrateServerMigration.Recording.json @@ -1,8 +1,8 @@ { - "Start-AzMigrateServerMigration+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01+1": { + "Start-AzMigrateServerMigration+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "16" ], @@ -39,10 +39,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Win2k16\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationTime\":\"2022-09-23T17:47:01.5486966Z\",\"lastMigrationStatus\":\"Succeeded\",\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"847d99b2-057d-4f3b-8389-358a5a5a34e4\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"PAYG\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Win2k16\",\"targetVmSize\":\"Standard_A4_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C294-1217-dec3-bc18-81f117220424\",\"diskName\":\"Win2k16\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] Win2k16/Win2k16.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":32212254720,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/asrseeddisk-Win2k16-Win2k16-d685e563-f5b4-4ff3-9e9a-4aa5416c96f4\",\"seedBlobUri\":null,\"targetManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/Win2k16-OSdisk-00\",\"targetBlobUri\":null,\"targetDiskName\":\"Win2k16-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"04a40eba-f0c4-4181-b53d-b91946aadc1f\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-00\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"6775c68f-1330-4c3d-9e04-94adf413bee0\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-01\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"ba36099f-9c7d-4cfa-89cf-6da63319a2fe\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-02\",\"isSelectedForMigration\":\"true\"},{\"nicId\":\"cd6cf44a-510f-44a8-b06a-99942d017632\",\"isPrimaryNic\":\"false\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":\"\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Win2k16-03\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/83563c3a-e189-4703-a965-0f96fc91fa52\",\"lastRecoveryPointReceived\":\"2022-09-26T17:26:15.474Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrationRecoveryPoints/64c35093-3e93-45bc-91cc-3ada55baf145\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"true\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Start-AzMigrateServerMigration+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrate?api-version=2023-01-01+2": { + "Start-AzMigrateServerMigration+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrate?api-version=2024-01-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrate?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/migrate?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"providerSpecificDetails\": {\n \"instanceType\": \"VMwareCbt\",\n \"performShutdown\": \"false\"\n }\n }\n}", "Headers": { }, @@ -56,11 +56,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/operationresults/1c902855-a756-46c8-9058-28ed2e32dda6?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015f6d8-fc84-afdf-de47-1eab79330f00/operationresults/1c902855-a756-46c8-9058-28ed2e32dda6?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1c902855-a756-46c8-9058-28ed2e32dda6", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1c902855-a756-46c8-9058-28ed2e32dda6" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/1c902855-a756-46c8-9058-28ed2e32dda6?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/1c902855-a756-46c8-9058-28ed2e32dda6?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "f02f7892-36e6-4dad-9972-f2067635ba6a" ], "Server": [ "Kestrel" ], @@ -76,10 +76,10 @@ "Content": null } }, - "Start-AzMigrateServerMigration+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1c902855-a756-46c8-9058-28ed2e32dda6?api-version=2023-01-01+3": { + "Start-AzMigrateServerMigration+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1c902855-a756-46c8-9058-28ed2e32dda6?api-version=2024-01-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1c902855-a756-46c8-9058-28ed2e32dda6?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1c902855-a756-46c8-9058-28ed2e32dda6?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "18" ], @@ -116,10 +116,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/1c902855-a756-46c8-9058-28ed2e32dda6\",\"name\":\"1c902855-a756-46c8-9058-28ed2e32dda6\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationJobs\",\"properties\":{\"activityId\":\"f02f7892-36e6-4dad-9972-f2067635ba6a ActivityId: 874006ac-7fbc-43be-bb83-4e4604057c3f\",\"scenarioName\":\"Migrate\",\"friendlyName\":\"Migrate\",\"state\":\"InProgress\",\"stateDescription\":\"InProgress\",\"tasks\":[{\"taskId\":\"PlannedFailoverPreflightChecksTask\",\"name\":\"VmPfoPrerequisitesCheck\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Prerequisites check for migration\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]},{\"taskId\":\"ShutdownVmOnPrimary\",\"name\":\"VmShutdownVmOnPrimary\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Shut down the virtual machine\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]},{\"taskId\":\"PrepareForFailoverTask\",\"name\":\"VmPrepareForFailover\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Preparing for migration\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]},{\"taskId\":\"PrepareProtectedEntitiesTask\",\"name\":\"VmPrepareProtectedEntitiesTask\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Creating Azure virtual machine\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]},{\"taskId\":\"StartVmOnSecondary\",\"name\":\"VmFoStartVmOnSecondary\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Starting Azure virtual machine\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]}],\"errors\":[],\"startTime\":\"2022-09-26T13:42:56.1834077Z\",\"allowedActions\":[\"Cancel\"],\"targetObjectId\":\"52896ea4-214d-5825-bc32-24169dfcc44c\",\"targetObjectName\":\"Win2k16\",\"targetInstanceType\":\"ProtectionEntity\",\"customDetails\":{\"instanceType\":\"AsrJobDetails\",\"affectedObjectDetails\":{\"primaryVmId\":\"52896ea4-214d-5825-bc32-24169dfcc44c\",\"primaryVmName\":\"Win2k16\",\"recoveryVmId\":\"\",\"recoveryVmName\":\"Win2k16\",\"protectionProfileId\":\"4af409af-0d07-5e52-95dc-1e472a625f17\",\"primaryCloudId\":\"cloud_e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryCloudName\":\"signoffccyappae52replicationcontainer\",\"recoveryCloudId\":\"d38048d4-b460-4791-8ece-108395ee8478\",\"recoveryCloudName\":\"Microsoft Azure\",\"primaryVmmId\":\"e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryVmmName\":\"signoffccyappae52replicationfabric\",\"recoveryVmmId\":\"21a9403c-6ec1-44f2-b744-b4e50b792387\",\"recoveryVmmName\":\"Microsoft Azure\",\"primaryFabricProviderId\":\"VMwareV2\",\"recoveryFabricProviderId\":\"Azure\"}}}}" } }, - "Start-AzMigrateServerMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2023-01-01+1": { + "Start-AzMigrateServerMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "19" ], @@ -156,10 +156,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Win-UEFI-03\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationTime\":\"2022-09-23T17:47:15.2771522Z\",\"lastMigrationStatus\":\"CompletedWithInformation\",\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027Scale-Win-UEFI-03\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-25T16:55:08.3023561Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"72eab4fb-f77b-56f1-b2d4-c21166aedcc3\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[{\"jobName\":\"PlannedFailover\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/11af33d5-128a-45dd-88f6-ab382d21828f\",\"startTime\":\"2022-09-23T17:47:15.2771522Z\",\"jobStatus\":\"CompletedWithInformation\"}],\"eventCorrelationId\":\"711e3761-e500-4601-a6e9-559baef2282b\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"osType\":\"Windows\",\"firmwareType\":\"EFI\",\"targetGeneration\":\"V2\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"PAYG\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Win-UEFI-03\",\"targetVmSize\":\"Standard_B12ms\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C296-b4dd-8745-0474-2826c3aae7bd\",\"diskName\":\"Scale-WinUEFI02\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-WinUEFI02/Scale-WinUEFI02.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Wi-Scale_Wi-fb308118-b390-453d-ae8c-bd7ea3c25ea1\",\"seedBlobUri\":null,\"targetManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/Scale-Win-UEFI-03-OSdisk-00\",\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Win-UEFI-03-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"vmNics\":[{\"nicId\":\"388dde09-4052-434d-99e9-71f477a6f375\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":\"10.150.103.69\",\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"RouteServerSubnet\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testSubnetName\":\"default\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Scale-Win-UEFI-03-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrationRecoveryPoints/5ec876b6-89ae-4681-bd03-9dadad61351e\",\"lastRecoveryPointReceived\":\"2022-09-26T11:54:21.083Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrationRecoveryPoints/88547c18-99c6-4763-bfb7-7a33d2c26b16\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"true\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Start-AzMigrateServerMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2023-01-01+2": { + "Start-AzMigrateServerMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "20" ], @@ -196,10 +196,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Win-UEFI-03\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationTime\":\"2022-09-23T17:47:15.2771522Z\",\"lastMigrationStatus\":\"CompletedWithInformation\",\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027Scale-Win-UEFI-03\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-25T16:55:08.3023561Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"72eab4fb-f77b-56f1-b2d4-c21166aedcc3\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[{\"jobName\":\"PlannedFailover\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/11af33d5-128a-45dd-88f6-ab382d21828f\",\"startTime\":\"2022-09-23T17:47:15.2771522Z\",\"jobStatus\":\"CompletedWithInformation\"}],\"eventCorrelationId\":\"711e3761-e500-4601-a6e9-559baef2282b\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0\",\"osType\":\"Windows\",\"firmwareType\":\"EFI\",\"targetGeneration\":\"V2\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"PAYG\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Win-UEFI-03\",\"targetVmSize\":\"Standard_B12ms\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C296-b4dd-8745-0474-2826c3aae7bd\",\"diskName\":\"Scale-WinUEFI02\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-WinUEFI02/Scale-WinUEFI02.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Wi-Scale_Wi-fb308118-b390-453d-ae8c-bd7ea3c25ea1\",\"seedBlobUri\":null,\"targetManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ashishRg/providers/Microsoft.Compute/disks/Scale-Win-UEFI-03-OSdisk-00\",\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Win-UEFI-03-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"vmNics\":[{\"nicId\":\"388dde09-4052-434d-99e9-71f477a6f375\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":\"10.150.103.69\",\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"RouteServerSubnet\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/--fancy(migrate)-----__/providers/Microsoft.Network/virtualNetworks/cbtsignoff2105targetnetwork\",\"testSubnetName\":\"default\",\"testIPAddress\":\"\",\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Scale-Win-UEFI-03-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrationRecoveryPoints/5ec876b6-89ae-4681-bd03-9dadad61351e\",\"lastRecoveryPointReceived\":\"2022-09-26T11:54:21.083Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrationRecoveryPoints/88547c18-99c6-4763-bfb7-7a33d2c26b16\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"true\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Start-AzMigrateServerMigration+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrate?api-version=2023-01-01+3": { + "Start-AzMigrateServerMigration+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrate?api-version=2024-01-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrate?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/migrate?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"providerSpecificDetails\": {\n \"instanceType\": \"VMwareCbt\",\n \"performShutdown\": \"false\"\n }\n }\n}", "Headers": { }, @@ -213,11 +213,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/operationresults/17c9b188-4b47-4c2f-b8e4-6640f343c4a3?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_500268c0-5082-60d0-e0e8-243f14eae6e0/operationresults/17c9b188-4b47-4c2f-b8e4-6640f343c4a3?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17c9b188-4b47-4c2f-b8e4-6640f343c4a3", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17c9b188-4b47-4c2f-b8e4-6640f343c4a3" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/17c9b188-4b47-4c2f-b8e4-6640f343c4a3?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/17c9b188-4b47-4c2f-b8e4-6640f343c4a3?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "ae9dc73d-0001-481c-9e5d-b80b4717b1f9" ], "Server": [ "Kestrel" ], @@ -233,10 +233,10 @@ "Content": null } }, - "Start-AzMigrateServerMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17c9b188-4b47-4c2f-b8e4-6640f343c4a3?api-version=2023-01-01+4": { + "Start-AzMigrateServerMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17c9b188-4b47-4c2f-b8e4-6640f343c4a3?api-version=2024-01-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17c9b188-4b47-4c2f-b8e4-6640f343c4a3?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/17c9b188-4b47-4c2f-b8e4-6640f343c4a3?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "22" ], diff --git a/src/Migrate/Migrate.Autorest/test/Start-AzMigrateTestMigration.Recording.json b/src/Migrate/Migrate.Autorest/test/Start-AzMigrateTestMigration.Recording.json index bbb69b95a89c..e2cb1841cfb3 100644 --- a/src/Migrate/Migrate.Autorest/test/Start-AzMigrateTestMigration.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Start-AzMigrateTestMigration.Recording.json @@ -1,8 +1,8 @@ { - "Start-AzMigrateTestMigration+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9?api-version=2023-01-01+1": { + "Start-AzMigrateTestMigration+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "23" ], @@ -39,10 +39,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Rhel8-03\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027Scale-Rhel8-03\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-26T05:16:22.8871285Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"5914e571-f3f4-56c7-b3e6-83adaf53c5c4\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"7a0a8c1c-1f32-4120-87a1-77e4b114cc7a\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9\",\"osType\":\"Linux\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Rhel8-03\",\"targetVmSize\":\"Basic_A2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C29e-7a04-a496-cc6d-73620c3a651b\",\"diskName\":\"Scale-Rhel8-03\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-Rhel8-03/Scale-Rhel8-03.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":37580963840,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Rh-Scale_Rh-1e893df3-a0e5-47ec-937d-d5df4c75eab8\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Rhel8-03-OSdisk-00\"},{\"diskId\":\"6000C294-d5ba-5399-a863-a44cc05bbf25\",\"diskName\":\"Scale-Rhel8-03_1\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-Rhel8-03/Scale-Rhel8-03_1.vmdk\",\"isOSDisk\":\"false\",\"capacityInBytes\":5368709120,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Rh-Scale_Rh-487de529-4b66-4ad0-a52c-178ab5ab8c1c\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Rhel8-03-datadisk-01\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"4bb09882-8fbe-42b3-b300-4a59bce68d83\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":null,\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Scale-Rhel8-03-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":null,\"lastRecoveryPointReceived\":\"2022-09-26T11:54:19.917Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9/migrationRecoveryPoints/70e86df8-7dcd-4899-9eec-a5ba19849b6b\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Start-AzMigrateTestMigration+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9/testMigrate?api-version=2023-01-01+2": { + "Start-AzMigrateTestMigration+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9/testMigrate?api-version=2024-01-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9/testMigrate?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9/testMigrate?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"providerSpecificDetails\": {\n \"instanceType\": \"VMwareCbt\",\n \"recoveryPointId\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9/migrationRecoveryPoints/70e86df8-7dcd-4899-9eec-a5ba19849b6b\",\n \"networkId\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\"\n }\n }\n}", "Headers": { }, @@ -56,11 +56,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9/operationresults/72aec3c5-42cc-4acf-bd8b-953281c162e0?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50159b65-0c15-6b2a-6d92-0d7115ffd1e9/operationresults/72aec3c5-42cc-4acf-bd8b-953281c162e0?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/72aec3c5-42cc-4acf-bd8b-953281c162e0", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/72aec3c5-42cc-4acf-bd8b-953281c162e0" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/72aec3c5-42cc-4acf-bd8b-953281c162e0?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/72aec3c5-42cc-4acf-bd8b-953281c162e0?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "ded81686-8a32-46ac-9508-c745238a63f1" ], "Server": [ "Kestrel" ], @@ -76,10 +76,10 @@ "Content": null } }, - "Start-AzMigrateTestMigration+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/72aec3c5-42cc-4acf-bd8b-953281c162e0?api-version=2023-01-01+3": { + "Start-AzMigrateTestMigration+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/72aec3c5-42cc-4acf-bd8b-953281c162e0?api-version=2024-01-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/72aec3c5-42cc-4acf-bd8b-953281c162e0?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/72aec3c5-42cc-4acf-bd8b-953281c162e0?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "25" ], @@ -116,10 +116,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/72aec3c5-42cc-4acf-bd8b-953281c162e0\",\"name\":\"72aec3c5-42cc-4acf-bd8b-953281c162e0\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationJobs\",\"properties\":{\"activityId\":\"ded81686-8a32-46ac-9508-c745238a63f1 ActivityId: 3a29c6bc-14b5-41d6-b9ca-69ca8c632490\",\"scenarioName\":\"TestMigrate\",\"friendlyName\":\"Test migration\",\"state\":\"InProgress\",\"stateDescription\":\"InProgress\",\"tasks\":[{\"taskId\":\"TestFailoverPreflightChecksTask\",\"name\":\"VmTfoPrerequisitesCheck\",\"startTime\":\"2022-09-26T13:43:30.6411034Z\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Prerequisites check for test migration\",\"state\":\"InProgress\",\"stateDescription\":\"InProgress\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]},{\"taskId\":\"BeginTestFailoverTask\",\"name\":\"VmTfoInitiateFailover\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Preparing for test migration\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]},{\"taskId\":\"PrepareTestProtectedEntitiesTask\",\"name\":\"VmTfoPrepareTestVm\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Creating test virtual machine\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]},{\"taskId\":\"BootTestProtectedEntitiesTask\",\"name\":\"VmTfoBootTestVm\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Starting test virtual machine\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]}],\"errors\":[],\"startTime\":\"2022-09-26T13:43:30.066127Z\",\"allowedActions\":[\"Cancel\"],\"targetObjectId\":\"5914e571-f3f4-56c7-b3e6-83adaf53c5c4\",\"targetObjectName\":\"Scale-Rhel8-03\",\"targetInstanceType\":\"ProtectionEntity\",\"customDetails\":{\"instanceType\":\"AsrJobDetails\",\"affectedObjectDetails\":{\"primaryVmId\":\"5914e571-f3f4-56c7-b3e6-83adaf53c5c4\",\"primaryVmName\":\"Scale-Rhel8-03\",\"recoveryVmId\":\"\",\"recoveryVmName\":\"Scale-Rhel8-03\",\"protectionProfileId\":\"4af409af-0d07-5e52-95dc-1e472a625f17\",\"primaryCloudId\":\"cloud_e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryCloudName\":\"signoffccyappae52replicationcontainer\",\"recoveryCloudId\":\"d38048d4-b460-4791-8ece-108395ee8478\",\"recoveryCloudName\":\"Microsoft Azure\",\"primaryVmmId\":\"e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryVmmName\":\"signoffccyappae52replicationfabric\",\"recoveryVmmId\":\"21a9403c-6ec1-44f2-b744-b4e50b792387\",\"recoveryVmmName\":\"Microsoft Azure\",\"primaryFabricProviderId\":\"VMwareV2\",\"recoveryFabricProviderId\":\"Azure\"}}}}" } }, - "Start-AzMigrateTestMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6?api-version=2023-01-01+1": { + "Start-AzMigrateTestMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "26" ], @@ -156,10 +156,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"win2k10-02-c\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027win2k10-02-c\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-26T05:38:22.8280991Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"6b407141-5a2e-56f9-b42b-03b7b69def43\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"2caaff14-d284-42dd-ac59-fe202fb62fd8\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"win2k10-02-c\",\"targetVmSize\":\"Basic_A3\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C295-ea92-17cb-1b65-3f9e32319099\",\"diskName\":\"win2k10-02-c\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] win2k10-02-c/win2k10-02-c.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-win2k10_-win2k10_-7fd5a9f8-f672-4c01-83eb-81331a6cb9fb\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"win2k10-02-c-OSdisk-00\"},{\"diskId\":\"6000C29f-9857-adf6-62e3-a5493b9c684b\",\"diskName\":\"win2k10-02-c_1\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] win2k10-02-c/win2k10-02-c_1.vmdk\",\"isOSDisk\":\"false\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-win2k10_-win2k10_-b5c2bc2b-010c-4bb4-9e13-988c8dd75682\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"win2k10-02-c-datadisk-01\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"c4694c63-cd83-4f30-8800-0c5f63d46979\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":\"10.150.101.73\",\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":null,\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-win2k10-02-c-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":null,\"lastRecoveryPointReceived\":\"2022-09-26T17:23:09.417Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6/migrationRecoveryPoints/15883924-dff8-48d8-a99a-568ee9186234\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Start-AzMigrateTestMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6?api-version=2023-01-01+2": { + "Start-AzMigrateTestMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "27" ], @@ -196,10 +196,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"win2k10-02-c\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027win2k10-02-c\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-26T05:38:22.8280991Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"6b407141-5a2e-56f9-b42b-03b7b69def43\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"2caaff14-d284-42dd-ac59-fe202fb62fd8\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"win2k10-02-c\",\"targetVmSize\":\"Basic_A3\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C295-ea92-17cb-1b65-3f9e32319099\",\"diskName\":\"win2k10-02-c\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] win2k10-02-c/win2k10-02-c.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-win2k10_-win2k10_-7fd5a9f8-f672-4c01-83eb-81331a6cb9fb\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"win2k10-02-c-OSdisk-00\"},{\"diskId\":\"6000C29f-9857-adf6-62e3-a5493b9c684b\",\"diskName\":\"win2k10-02-c_1\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] win2k10-02-c/win2k10-02-c_1.vmdk\",\"isOSDisk\":\"false\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-win2k10_-win2k10_-b5c2bc2b-010c-4bb4-9e13-988c8dd75682\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"win2k10-02-c-datadisk-01\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"c4694c63-cd83-4f30-8800-0c5f63d46979\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":\"10.150.101.73\",\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":null,\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-win2k10-02-c-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":null,\"lastRecoveryPointReceived\":\"2022-09-26T17:23:09.417Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6/migrationRecoveryPoints/15883924-dff8-48d8-a99a-568ee9186234\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Start-AzMigrateTestMigration+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6/testMigrate?api-version=2023-01-01+3": { + "Start-AzMigrateTestMigration+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6/testMigrate?api-version=2024-01-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6/testMigrate?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6/testMigrate?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"providerSpecificDetails\": {\n \"instanceType\": \"VMwareCbt\",\n \"recoveryPointId\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6/migrationRecoveryPoints/15883924-dff8-48d8-a99a-568ee9186234\",\n \"networkId\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\"\n }\n }\n}", "Headers": { }, @@ -213,11 +213,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6/operationresults/3b13c302-b257-462d-9bf8-77e158158252?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015dc21-bdb3-3f13-25c9-ed9724bfbfc6/operationresults/3b13c302-b257-462d-9bf8-77e158158252?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/3b13c302-b257-462d-9bf8-77e158158252", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/3b13c302-b257-462d-9bf8-77e158158252" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/3b13c302-b257-462d-9bf8-77e158158252?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/3b13c302-b257-462d-9bf8-77e158158252?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "090d3cc9-5090-4e91-9bcd-8c2b7a8fb58f" ], "Server": [ "Kestrel" ], @@ -233,10 +233,10 @@ "Content": null } }, - "Start-AzMigrateTestMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/3b13c302-b257-462d-9bf8-77e158158252?api-version=2023-01-01+4": { + "Start-AzMigrateTestMigration+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/3b13c302-b257-462d-9bf8-77e158158252?api-version=2024-01-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/3b13c302-b257-462d-9bf8-77e158158252?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/3b13c302-b257-462d-9bf8-77e158158252?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "29" ], diff --git a/src/Migrate/Migrate.Autorest/test/Start-AzMigrateTestMigrationCleanup.Recording.json b/src/Migrate/Migrate.Autorest/test/Start-AzMigrateTestMigrationCleanup.Recording.json index 93b77bd57e64..65b47ee4645a 100644 --- a/src/Migrate/Migrate.Autorest/test/Start-AzMigrateTestMigrationCleanup.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Start-AzMigrateTestMigrationCleanup.Recording.json @@ -1,8 +1,8 @@ { - "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980?api-version=2023-01-01+1": { + "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "30" ], @@ -39,10 +39,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"FT-Win10-Cloned\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"TestMigrationInProgress\",\"testMigrateStateDescription\":\"Test migration in progress\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027FT-Win10-Cloned\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-26T05:45:03.2570479Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"96b6c033-7c77-5543-888d-c6fecbb1aacb\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[],\"currentJob\":{\"jobName\":\"TestFailover\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/8a09b5fc-868c-4e33-b37b-cf764627d99d\",\"startTime\":\"2022-09-26T13:03:39.288529Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"85a68ea4-513b-48af-8502-238c13e9024c\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"FT-Win10-Cloned\",\"targetVmSize\":\"Basic_A3\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C291-6c84-5593-a4c0-290555e40440\",\"diskName\":\"FT-Win10-Cloned\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] FT-Win10-Cloned/FT-Win10-Cloned.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-FT_Win10-FT_Win10-17e0b323-ddb3-49b7-9a09-017ed6616fbe\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"FT-Win10-Cloned-OSdisk-00\"},{\"diskId\":\"6000C29a-5b68-2a5e-a187-821e32cb04ca\",\"diskName\":\"FT-Win10-Cloned_1\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] FT-Win10-Cloned/FT-Win10-Cloned_1.vmdk\",\"isOSDisk\":\"false\",\"capacityInBytes\":10737418240,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-FT_Win10-FT_Win10-36cd3bb8-a64b-4b4d-b889-dc83be8808f0\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"FT-Win10-Cloned-datadisk-01\"},{\"diskId\":\"6000C295-318c-b31b-2b5d-a2a236d8f27a\",\"diskName\":\"FT-Win10-Cloned_2\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[T55_10TB] FT-Win10-Cloned/FT-Win10-Cloned_2.vmdk\",\"isOSDisk\":\"false\",\"capacityInBytes\":21474836480,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-FT_Win10-FT_Win10-5e17c6ba-c52c-4287-962c-5319f2b857ef\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"FT-Win10-Cloned-datadisk-02\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"4e3c1ef0-5e09-465b-8956-84c52d71270d\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testSubnetName\":\"default\",\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-FT-Win10-Cloned-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980/migrationRecoveryPoints/2678bf76-314a-4b6e-97ff-92aff3b15c32\",\"lastRecoveryPointReceived\":\"2022-09-26T17:23:09.416Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980/migrationRecoveryPoints/2678bf76-314a-4b6e-97ff-92aff3b15c32\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980/testMigrateCleanup?api-version=2023-01-01+2": { + "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980/testMigrateCleanup?api-version=2024-01-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980/testMigrateCleanup?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980/testMigrateCleanup?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"comments\": \"Test migrate cleanup from powershell\"\n }\n}", "Headers": { }, @@ -56,11 +56,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980/operationresults/554d5df0-1163-48c3-8288-d0be7a120052?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_5015e16e-832e-8632-880f-976ead854980/operationresults/554d5df0-1163-48c3-8288-d0be7a120052?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/554d5df0-1163-48c3-8288-d0be7a120052", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/554d5df0-1163-48c3-8288-d0be7a120052" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/554d5df0-1163-48c3-8288-d0be7a120052?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/554d5df0-1163-48c3-8288-d0be7a120052?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "c5b9fc38-21b1-4390-999c-52cec6e28cf2" ], "Server": [ "Kestrel" ], @@ -76,10 +76,10 @@ "Content": null } }, - "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/554d5df0-1163-48c3-8288-d0be7a120052?api-version=2023-01-01+3": { + "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/554d5df0-1163-48c3-8288-d0be7a120052?api-version=2024-01-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/554d5df0-1163-48c3-8288-d0be7a120052?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/554d5df0-1163-48c3-8288-d0be7a120052?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "32" ], @@ -116,10 +116,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/554d5df0-1163-48c3-8288-d0be7a120052\",\"name\":\"554d5df0-1163-48c3-8288-d0be7a120052\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationJobs\",\"properties\":{\"activityId\":\"c5b9fc38-21b1-4390-999c-52cec6e28cf2 ActivityId: 47d6748f-02b8-47a0-a42e-588c7395c8bf\",\"scenarioName\":null,\"friendlyName\":null,\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"tasks\":[],\"errors\":[],\"allowedActions\":[],\"targetObjectId\":null,\"targetObjectName\":null,\"targetInstanceType\":\"ProtectionEntity\",\"customDetails\":{\"instanceType\":\"AsrJobDetails\",\"affectedObjectDetails\":{}}}}" } }, - "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01+1": { + "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "33" ], @@ -156,10 +156,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Rhel7\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationTime\":\"2022-09-26T13:07:06.2426648Z\",\"lastTestMigrationStatus\":\"Succeeded\",\"lastMigrationStatus\":null,\"testMigrateState\":\"TestMigrationSucceeded\",\"testMigrateStateDescription\":\"Test clean up pending\",\"health\":\"Normal\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"TestMigrateCleanup\"],\"currentJob\":{\"jobName\":\"TestFailover\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/0caa1c59-de25-4999-9e0c-208130f22551\",\"startTime\":\"2022-09-26T13:07:06.2426648Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"b151ff38-919c-4e10-aab5-caedb08ebc06\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"osType\":\"Linux\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Rhel7\",\"targetVmSize\":\"Standard_A1_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C29a-e551-281f-56c2-45d9524f0b6a\",\"diskName\":\"Scale-Rhel7\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-Rhel7/Scale-Rhel7.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Rh-Scale_Rh-a4ffca03-27c9-41e9-bbf4-2c2538855534\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Rhel7-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"bf00d29d-df79-4406-bacb-ee4a5bb65fe6\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testSubnetName\":\"default\",\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Scale-Rhel7-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/ce9d97d1-cbf6-4554-bd99-7a3c1ebc36ef\",\"lastRecoveryPointReceived\":\"2022-09-26T11:56:31.012Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/ce9d97d1-cbf6-4554-bd99-7a3c1ebc36ef\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01+2": { + "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "34" ], @@ -196,10 +196,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Rhel7\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationTime\":\"2022-09-26T13:07:06.2426648Z\",\"lastTestMigrationStatus\":\"Succeeded\",\"lastMigrationStatus\":null,\"testMigrateState\":\"TestMigrationSucceeded\",\"testMigrateStateDescription\":\"Test clean up pending\",\"health\":\"Normal\",\"healthErrors\":[],\"allowedOperations\":[\"DisableMigration\",\"TestMigrateCleanup\"],\"currentJob\":{\"jobName\":\"TestFailover\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/0caa1c59-de25-4999-9e0c-208130f22551\",\"startTime\":\"2022-09-26T13:07:06.2426648Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"b151ff38-919c-4e10-aab5-caedb08ebc06\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"osType\":\"Linux\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Rhel7\",\"targetVmSize\":\"Standard_A1_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C29a-e551-281f-56c2-45d9524f0b6a\",\"diskName\":\"Scale-Rhel7\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-Rhel7/Scale-Rhel7.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Rh-Scale_Rh-a4ffca03-27c9-41e9-bbf4-2c2538855534\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Rhel7-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"bf00d29d-df79-4406-bacb-ee4a5bb65fe6\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testSubnetName\":\"default\",\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Scale-Rhel7-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/ce9d97d1-cbf6-4554-bd99-7a3c1ebc36ef\",\"lastRecoveryPointReceived\":\"2022-09-26T11:56:31.012Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/ce9d97d1-cbf6-4554-bd99-7a3c1ebc36ef\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/testMigrateCleanup?api-version=2023-01-01+3": { + "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/testMigrateCleanup?api-version=2024-01-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/testMigrateCleanup?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/testMigrateCleanup?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"comments\": \"Test migrate cleanup from powershell\"\n }\n}", "Headers": { }, @@ -213,11 +213,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/operationresults/9bdfebbb-18ab-430a-a9bf-5b53e9b4375e?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/operationresults/9bdfebbb-18ab-430a-a9bf-5b53e9b4375e?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/9bdfebbb-18ab-430a-a9bf-5b53e9b4375e", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/9bdfebbb-18ab-430a-a9bf-5b53e9b4375e" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/9bdfebbb-18ab-430a-a9bf-5b53e9b4375e?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/9bdfebbb-18ab-430a-a9bf-5b53e9b4375e?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "dbb6c0f0-4b55-4f71-a4a9-cbb1877669a4" ], "Server": [ "Kestrel" ], @@ -233,10 +233,10 @@ "Content": null } }, - "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/9bdfebbb-18ab-430a-a9bf-5b53e9b4375e?api-version=2023-01-01+4": { + "Start-AzMigrateTestMigrationCleanup+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/9bdfebbb-18ab-430a-a9bf-5b53e9b4375e?api-version=2024-01-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/9bdfebbb-18ab-430a-a9bf-5b53e9b4375e?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/9bdfebbb-18ab-430a-a9bf-5b53e9b4375e?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "36" ], diff --git a/src/Migrate/Migrate.Autorest/test/Suspend-AzMigrateServerReplication.Recording.json b/src/Migrate/Migrate.Autorest/test/Suspend-AzMigrateServerReplication.Recording.json index 3313c61ee0a0..b26ca176d07b 100644 --- a/src/Migrate/Migrate.Autorest/test/Suspend-AzMigrateServerReplication.Recording.json +++ b/src/Migrate/Migrate.Autorest/test/Suspend-AzMigrateServerReplication.Recording.json @@ -1,8 +1,8 @@ { - "Suspend-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01+1": { + "Suspend-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "11" ], @@ -39,10 +39,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"Scale-Rhel7\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027Scale-Rhel7\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-26T05:16:22.9340044Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"ae1d360a-4bae-5989-b82a-ed31b2ccc6b4\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"b151ff38-919c-4e10-aab5-caedb08ebc06\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3\",\"osType\":\"Linux\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"Scale-Rhel7\",\"targetVmSize\":\"Standard_A1_v2\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C29a-e551-281f-56c2-45d9524f0b6a\",\"diskName\":\"Scale-Rhel7\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[SCSI_5TB] Scale-Rhel7/Scale-Rhel7.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-Scale_Rh-Scale_Rh-a4ffca03-27c9-41e9-bbf4-2c2538855534\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"Scale-Rhel7-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"bf00d29d-df79-4406-bacb-ee4a5bb65fe6\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":null,\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-Scale-Rhel7-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":null,\"lastRecoveryPointReceived\":\"2022-09-26T08:35:59.52Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/migrationRecoveryPoints/6160f6fe-7193-46b4-97d2-b4540f062866\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Suspend-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/pauseReplication?api-version=2023-01-01+2": { + "Suspend-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/pauseReplication?api-version=2024-01-01+2": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/pauseReplication?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/pauseReplication?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"instanceType\": \"VMwarecbt\"\n }\n}", "Headers": { }, @@ -56,11 +56,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/operationresults/38b77dcc-0801-4161-8e04-d6bbf2e22779?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50158ad9-3cd9-6b16-d37e-6f03f5b871d3/operationresults/38b77dcc-0801-4161-8e04-d6bbf2e22779?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/38b77dcc-0801-4161-8e04-d6bbf2e22779", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/38b77dcc-0801-4161-8e04-d6bbf2e22779" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/38b77dcc-0801-4161-8e04-d6bbf2e22779?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/38b77dcc-0801-4161-8e04-d6bbf2e22779?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "6665e6ea-ae31-4c6e-9f86-65e9fbd90c03" ], "Server": [ "Kestrel" ], @@ -76,10 +76,10 @@ "Content": null } }, - "Suspend-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/38b77dcc-0801-4161-8e04-d6bbf2e22779?api-version=2023-01-01+3": { + "Suspend-AzMigrateServerReplication+[NoContext]+ByIDVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/38b77dcc-0801-4161-8e04-d6bbf2e22779?api-version=2024-01-01+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/38b77dcc-0801-4161-8e04-d6bbf2e22779?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/38b77dcc-0801-4161-8e04-d6bbf2e22779?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "13" ], @@ -116,10 +116,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/38b77dcc-0801-4161-8e04-d6bbf2e22779\",\"name\":\"38b77dcc-0801-4161-8e04-d6bbf2e22779\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationJobs\",\"properties\":{\"activityId\":\"6665e6ea-ae31-4c6e-9f86-65e9fbd90c03 ActivityId: b5915140-9205-4cc5-976d-ad1ca558260c\",\"scenarioName\":\"PauseReplication\",\"friendlyName\":\"Pause replication\",\"state\":\"InProgress\",\"stateDescription\":\"InProgress\",\"tasks\":[{\"taskId\":\"PauseReplicationPreflightChecksTask\",\"name\":\"PauseReplicationPreflightChecksTask\",\"startTime\":\"2022-09-26T10:51:27.1070929Z\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Prerequisites check for pause replication\",\"state\":\"InProgress\",\"stateDescription\":\"InProgress\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]},{\"taskId\":\"PauseReplicationTask\",\"name\":\"PauseReplicationTask\",\"startTime\":\"0001-01-01T00:00:00\",\"endTime\":\"0001-01-01T00:00:00\",\"allowedActions\":[],\"friendlyName\":\"Starting pause replication\",\"state\":\"NotStarted\",\"stateDescription\":\"NotStarted\",\"taskType\":\"TaskDetails\",\"customDetails\":{\"instanceType\":\"TaskDetails\"},\"groupTaskCustomDetails\":null,\"errors\":[]}],\"errors\":[],\"startTime\":\"2022-09-26T10:51:26.3416013Z\",\"allowedActions\":[],\"targetObjectId\":\"ae1d360a-4bae-5989-b82a-ed31b2ccc6b4\",\"targetObjectName\":\"Scale-Rhel7\",\"targetInstanceType\":\"ProtectionEntity\",\"customDetails\":{\"instanceType\":\"AsrJobDetails\",\"affectedObjectDetails\":{\"primaryVmId\":\"ae1d360a-4bae-5989-b82a-ed31b2ccc6b4\",\"primaryVmName\":\"Scale-Rhel7\",\"recoveryVmId\":\"\",\"recoveryVmName\":\"Scale-Rhel7\",\"protectionProfileId\":\"4af409af-0d07-5e52-95dc-1e472a625f17\",\"primaryCloudId\":\"cloud_e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryCloudName\":\"signoffccyappae52replicationcontainer\",\"recoveryCloudId\":\"d38048d4-b460-4791-8ece-108395ee8478\",\"recoveryCloudName\":\"Microsoft Azure\",\"primaryVmmId\":\"e87f6b0c-6076-5aa5-9e79-3e73df771c73\",\"primaryVmmName\":\"signoffccyappae52replicationfabric\",\"recoveryVmmId\":\"21a9403c-6ec1-44f2-b744-b4e50b792387\",\"recoveryVmmName\":\"Microsoft Azure\",\"primaryFabricProviderId\":\"VMwareV2\",\"recoveryFabricProviderId\":\"Azure\"}}}}" } }, - "Suspend-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0?api-version=2023-01-01+1": { + "Suspend-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0?api-version=2024-01-01+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "14" ], @@ -156,10 +156,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"win2k12-01\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027win2k12-01\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-26T05:48:38.4439726Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"7a910bd8-5ab1-58d5-9f98-493d53dd9fae\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"70bf2a6c-e930-4a08-9203-9fe67a66b5a4\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"win2k12-01\",\"targetVmSize\":\"Basic_A3\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C297-e32e-5601-9889-b0acea190c83\",\"diskName\":\"win2k12-01\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[iSCSI_5TB] win2k12-01/win2k12-01.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-win2k12_-win2k12_-61dc81a7-b65d-41dd-b680-58a794673a24\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"win2k12-01-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"726c991c-ec94-4138-be19-885e8bed30b6\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":null,\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-win2k12-01-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":null,\"lastRecoveryPointReceived\":\"1999-01-22T06:48:15.062Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0/migrationRecoveryPoints/51f977f2-f497-4dcc-96ae-916d4149f471\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Suspend-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0?api-version=2023-01-01+2": { + "Suspend-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0?api-version=2024-01-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "15" ], @@ -196,10 +196,10 @@ "Content": "{\"id\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0\",\"name\":\"idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0\",\"type\":\"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems\",\"properties\":{\"machineName\":\"win2k12-01\",\"policyId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationPolicies/migratesignoffccyapp3352sitepolicy\",\"policyFriendlyName\":\"migratesignoffccyapp3352sitepolicy\",\"recoveryServicesProviderId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationRecoveryServicesProviders/25e13d18-d9a2-538b-9ff8-a494ac0efd2d\",\"replicationStatus\":\"Delta sync\",\"migrationState\":\"Replicating\",\"migrationStateDescription\":\"Ready to migrate\",\"lastTestMigrationStatus\":null,\"lastMigrationStatus\":null,\"testMigrateState\":\"None\",\"testMigrateStateDescription\":\"None\",\"health\":\"Normal\",\"healthErrors\":[{\"innerHealthErrors\":[],\"errorSource\":\"ReplicationUnitFailoverValidatorError\",\"errorType\":\"8010\",\"errorLevel\":\"Error\",\"errorCategory\":\"TestFailover\",\"errorCode\":\"110084\",\"summaryMessage\":\"\",\"errorMessage\":\"No successful test migration has been done on the virtual machine \u0027win2k12-01\u0027.\",\"possibleCauses\":\"No successful test migration has been done on the virtual machine after it was replicated.\",\"recommendedAction\":\"Do a test migration on the virtual machine.\",\"creationTimeUtc\":\"2022-09-26T05:48:38.4439726Z\",\"recoveryProviderErrorMessage\":null,\"entityId\":\"7a910bd8-5ab1-58d5-9f98-493d53dd9fae\",\"errorId\":\"6:8010\",\"customerResolvability\":\"NotAllowed\"}],\"allowedOperations\":[\"DisableMigration\",\"TestMigrate\",\"Migrate\",\"PauseReplication\"],\"currentJob\":{\"jobName\":\"None\",\"jobId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/None\",\"startTime\":\"1753-01-01T01:01:01Z\"},\"criticalJobHistory\":[],\"eventCorrelationId\":\"70bf2a6c-e930-4a08-9203-9fe67a66b5a4\",\"providerSpecificDetails\":{\"instanceType\":\"VMwareCbt\",\"vmwareMachineId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/machines/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0\",\"osType\":\"Windows\",\"firmwareType\":\"BIOS\",\"targetGeneration\":\"V1\",\"licenseType\":\"NoLicenseType\",\"sqlServerLicenseType\":\"NotSpecified\",\"dataMoverRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"snapshotRunAsAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.OffAzure/VMwareSites/signoffccyapp3352site/runasaccounts/525f32f1-97ab-5073-8c0b-b6634ae24347\",\"storageAccountId\":null,\"targetVmName\":\"win2k12-01\",\"targetVmSize\":\"Basic_A3\",\"targetLocation\":\"centraluseuap\",\"targetResourceGroupId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg\",\"targetAvailabilitySetId\":\"\",\"targetAvailabilityZone\":\"\",\"targetProximityPlacementGroupId\":\"\",\"targetBootDiagnosticsStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"targetVmTags\":{},\"protectedDisks\":[{\"diskId\":\"6000C297-e32e-5601-9889-b0acea190c83\",\"diskName\":\"win2k12-01\",\"diskType\":\"Standard_LRS\",\"diskPath\":\"[iSCSI_5TB] win2k12-01/win2k12-01.vmdk\",\"isOSDisk\":\"true\",\"capacityInBytes\":42949672960,\"logStorageAccountId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Storage/storageAccounts/migratelsa1612849844\",\"logStorageAccountSasSecretName\":\"migratelsa1612849844-cacheSas\",\"diskEncryptionSetId\":null,\"seedManagedDiskId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.Compute/disks/asrseeddisk-win2k12_-win2k12_-61dc81a7-b65d-41dd-b680-58a794673a24\",\"seedBlobUri\":null,\"targetManagedDiskId\":null,\"targetBlobUri\":null,\"targetDiskName\":\"win2k12-01-OSdisk-00\"}],\"targetNetworkId\":\"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/fancy(migrate)/providers/Microsoft.Network/virtualNetworks/Cbtsignoff2105targetnetwork\",\"testNetworkId\":\"\",\"vmNics\":[{\"nicId\":\"726c991c-ec94-4138-be19-885e8bed30b6\",\"isPrimaryNic\":\"true\",\"sourceIPAddress\":null,\"sourceIPAddressType\":\"Static\",\"sourceNetworkId\":\"VM Network\",\"targetIPAddress\":\"\",\"targetIPAddressType\":\"Dynamic\",\"targetSubnetName\":\"default\",\"testNetworkId\":null,\"testSubnetName\":null,\"testIPAddress\":null,\"testIPAddressType\":\"Dynamic\",\"targetNicName\":\"nic-win2k12-01-00\",\"isSelectedForMigration\":\"true\"}],\"targetNicTags\":{},\"migrationRecoveryPointId\":null,\"lastRecoveryPointReceived\":\"1999-01-22T06:48:15.062Z\",\"lastRecoveryPointId\":\"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0/migrationRecoveryPoints/51f977f2-f497-4dcc-96ae-916d4149f471\",\"initialSeedingProgressPercentage\":null,\"migrationProgressPercentage\":null,\"resyncProgressPercentage\":null,\"resumeProgressPercentage\":null,\"initialSeedingRetryCount\":0,\"resyncRetryCount\":0,\"resumeRetryCount\":0,\"resyncRequired\":\"false\",\"resyncState\":\"None\",\"performAutoResync\":\"false\",\"seedDiskTags\":null,\"targetDiskTags\":{}}}}" } }, - "Suspend-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0/pauseReplication?api-version=2023-01-01+3": { + "Suspend-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$POST+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0/pauseReplication?api-version=2024-01-01+3": { "Request": { "Method": "POST", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0/pauseReplication?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0/pauseReplication?api-version=2024-01-01", "Content": "{\n \"properties\": {\n \"instanceType\": \"VMwarecbt\"\n }\n}", "Headers": { }, @@ -213,11 +213,11 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0/operationresults/f9f10c09-cdfb-4a42-909c-79018e6b3193?api-version=2023-01-01" ], + "Location": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationFabrics/signoffccyappae52replicationfabric/replicationProtectionContainers/signoffccyappae52replicationcontainer/replicationMigrationItems/idclab-vcen67-fareast-corp-micr-0f144e99-ba36-4649-b92b-8b06854aa539_50157b0d-fdb9-7abd-03cd-97f16b552bd0/operationresults/f9f10c09-cdfb-4a42-909c-79018e6b3193?api-version=2024-01-01" ], "Retry-After": [ "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/f9f10c09-cdfb-4a42-909c-79018e6b3193", "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/f9f10c09-cdfb-4a42-909c-79018e6b3193" ], - "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/f9f10c09-cdfb-4a42-909c-79018e6b3193?api-version=2023-01-01" ], + "Azure-AsyncOperation": [ "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationOperationStatus/f9f10c09-cdfb-4a42-909c-79018e6b3193?api-version=2024-01-01" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ "55906eeb-6174-49ec-8b44-fea9e412d5f5" ], "Server": [ "Kestrel" ], @@ -233,10 +233,10 @@ "Content": null } }, - "Suspend-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/f9f10c09-cdfb-4a42-909c-79018e6b3193?api-version=2023-01-01+4": { + "Suspend-AzMigrateServerReplication+[NoContext]+ByInputObjectVMwareCbt+$GET+https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/f9f10c09-cdfb-4a42-909c-79018e6b3193?api-version=2024-01-01+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/f9f10c09-cdfb-4a42-909c-79018e6b3193?api-version=2023-01-01", + "RequestUri": "https://management.azure.com/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/cbtsignoff2201rg/providers/Microsoft.RecoveryServices/vaults/signoffccyapp3352vault/replicationJobs/f9f10c09-cdfb-4a42-909c-79018e6b3193?api-version=2024-01-01", "Content": null, "Headers": { "x-ms-unique-id": [ "17" ], From 5d3356327866e0d76fc015c6b500d2b338e8c9a6 Mon Sep 17 00:00:00 2001 From: Sam Lee <32776898+minhsuanlee@users.noreply.github.com> Date: Mon, 21 Oct 2024 12:00:24 -0700 Subject: [PATCH 05/16] Fix target hyperv generation for vmware & msi auth check (#26211) Co-authored-by: Sam Lee --- .../Initialize-AzMigrateHCIReplicationInfrastructure.ps1 | 8 +++++++- .../custom/New-AzMigrateHCIServerReplication.ps1 | 8 ++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/Migrate/Migrate.Autorest/custom/Initialize-AzMigrateHCIReplicationInfrastructure.ps1 b/src/Migrate/Migrate.Autorest/custom/Initialize-AzMigrateHCIReplicationInfrastructure.ps1 index 85665ec5cc72..32b802e90dfe 100644 --- a/src/Migrate/Migrate.Autorest/custom/Initialize-AzMigrateHCIReplicationInfrastructure.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/Initialize-AzMigrateHCIReplicationInfrastructure.ps1 @@ -161,7 +161,13 @@ function Initialize-AzMigrateHCIReplicationInfrastructure { } if (-not $userObject) { - $userObject = Get-AzADServicePrincipal -ApplicationID $context.Account.Id + if ($context.Account.Id.StartsWith("MSI@")) { + $hostname = $env:COMPUTERNAME + $userObject = Get-AzADServicePrincipal -DisplayName $hostname + } + else { + $userObject = Get-AzADServicePrincipal -ApplicationID $context.Account.Id + } } if (-not $userObject) { diff --git a/src/Migrate/Migrate.Autorest/custom/New-AzMigrateHCIServerReplication.ps1 b/src/Migrate/Migrate.Autorest/custom/New-AzMigrateHCIServerReplication.ps1 index c9572169ee9b..df8a3f9ebbdd 100644 --- a/src/Migrate/Migrate.Autorest/custom/New-AzMigrateHCIServerReplication.ps1 +++ b/src/Migrate/Migrate.Autorest/custom/New-AzMigrateHCIServerReplication.ps1 @@ -386,6 +386,14 @@ function New-AzMigrateHCIServerReplication { $customProperties.TargetCpuCore = if ($HasTargetVMCPUCore) { $TargetVMCPUCore } else { $machine.NumberOfProcessorCore } $customProperties.IsDynamicRam = if ($HasIsDynamicMemoryEnabled) { $isDynamicRamEnabled } else { $isSourceDynamicMemoryEnabled } + # Determine target VM Hyper-V Generation + if ($SiteType -eq $SiteTypes.HyperVSites) { # Hyper-V + $customProperties.HyperVGeneration = $machine.Generation + } + else { # VMware + $customProperties.HyperVGeneration = if ($machine.Firmware -eq "BIOS") { "1" } else { "2" } + } + # Validate TargetVMRam if ($HasTargetVMRam) { # TargetVMRam needs to be greater than 0 From 3434950b673f4f10ae06791af5f3c7052f4f8fd3 Mon Sep 17 00:00:00 2001 From: Alec Baird <100880612+alec-baird@users.noreply.github.com> Date: Mon, 21 Oct 2024 19:15:11 -0600 Subject: [PATCH 06/16] Alecb/generation api upgrade preannounce (#26249) * Wrote preannouncement message * updated readme with cmdlet notices * Update documentation/breaking-changes/upcoming-breaking-changes.md Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com> * Update documentation/breaking-changes/upcoming-breaking-changes.md Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com> * Update documentation/breaking-changes/upcoming-breaking-changes.md Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com> * Added specifics to Readme, preannouncement page * Replaced link with fwlink * removed upcoming-breakingchanges --------- Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com> --- .../upcoming-breaking-changes.md | 29 ------------- .../DesktopVirtualization.Autorest/README.md | 42 +++++++++++++++++++ 2 files changed, 42 insertions(+), 29 deletions(-) delete mode 100644 documentation/breaking-changes/upcoming-breaking-changes.md diff --git a/documentation/breaking-changes/upcoming-breaking-changes.md b/documentation/breaking-changes/upcoming-breaking-changes.md deleted file mode 100644 index c13f173558c3..000000000000 --- a/documentation/breaking-changes/upcoming-breaking-changes.md +++ /dev/null @@ -1,29 +0,0 @@ - - -# Upcoming Breaking Changes - diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md b/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md index ae22b2a047eb..4e98b525eab1 100644 --- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md +++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md @@ -103,4 +103,46 @@ directive: parameter-name: Force set: parameter-description: 'Specify to force userSession deletion.' + - where: + verb: Register + set: + preview-announcement: + preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) + estimated-ga-date: 2024-11-30 + - where: + verb: Unregister + set: + preview-announcement: + preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) + estimated-ga-date: 2024-11-30 + - where: + verb: Send + set: + preview-announcement: + preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) + estimated-ga-date: 2024-11-30 + - where: + verb: Expand + set: + preview-announcement: + preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) + estimated-ga-date: 2024-11-30 + - where: + verb: Get + set: + preview-announcement: + preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) + estimated-ga-date: 2024-11-30 + - where: + verb: New + set: + preview-announcement: + preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) + estimated-ga-date: 2024-11-30 + - where: + verb: Update + set: + preview-announcement: + preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) + estimated-ga-date: 2024-11-30 ``` From 754580d3e949dcd01a7fc83a6b7515ed11ff5722 Mon Sep 17 00:00:00 2001 From: Jin Lei <54836179+msJinLei@users.noreply.github.com> Date: Tue, 22 Oct 2024 13:24:40 +0800 Subject: [PATCH 07/16] Restore the removed file (#26410) --- .../upcoming-breaking-changes.md | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 documentation/breaking-changes/upcoming-breaking-changes.md diff --git a/documentation/breaking-changes/upcoming-breaking-changes.md b/documentation/breaking-changes/upcoming-breaking-changes.md new file mode 100644 index 000000000000..c13f173558c3 --- /dev/null +++ b/documentation/breaking-changes/upcoming-breaking-changes.md @@ -0,0 +1,29 @@ + + +# Upcoming Breaking Changes + From 0b68cedf61f39f6a94c1d507928c27c483502772 Mon Sep 17 00:00:00 2001 From: alexathomases <55257302+alexathomases@users.noreply.github.com> Date: Mon, 21 Oct 2024 23:45:40 -0700 Subject: [PATCH 08/16] Creating cmdlets for Health Deidentification (GA) (#26409) * 2024-09-20 version * Setting up tests * Tests with preview version * Test improvements, still WIP * Tests passing * Created examples and documentation * Revert whitespace change * Revert changes to Policy.Autorest * Remove sample JSON from docs * Rm sample JSON in examples --------- Co-authored-by: Alexa Thomases --- .../HealthDeid.Autorest/.gitattributes | 1 + src/HealthDeid/HealthDeid.Autorest/.gitignore | 18 + .../Properties/AssemblyInfo.cs | 26 + src/HealthDeid/HealthDeid.Autorest/README.md | 74 ++ .../deidServices.json | 85 ++ .../HealthDeid.Autorest/custom/README.md | 41 + .../HealthDeid.Autorest/docs/Az.HealthDeid.md | 25 + .../docs/Get-AzHealthDeidService.md | 182 +++++ .../docs/New-AzHealthDeidService.md | 347 +++++++++ .../HealthDeid.Autorest/docs/README.md | 11 + .../docs/Remove-AzHealthDeidService.md | 209 +++++ .../docs/Update-AzHealthDeidService.md | 316 ++++++++ .../examples/Get-AzHealthDeidService.md | 45 ++ .../examples/New-AzHealthDeidService.md | 60 ++ .../examples/Remove-AzHealthDeidService.md | 7 + .../examples/Update-AzHealthDeidService.md | 64 ++ src/HealthDeid/HealthDeid.Autorest/how-to.md | 58 ++ .../HealthDeid.Autorest/resources/README.md | 11 + .../Get-AzHealthDeidService.Recording.json | 225 ++++++ .../test/Get-AzHealthDeidService.Tests.ps1 | 48 ++ .../New-AzHealthDeidService.Recording.json | 662 ++++++++++++++++ .../test/New-AzHealthDeidService.Tests.ps1 | 42 + .../HealthDeid.Autorest/test/README.md | 17 + .../Remove-AzHealthDeidService.Recording.json | 726 ++++++++++++++++++ .../test/Remove-AzHealthDeidService.Tests.ps1 | 36 + .../Update-AzHealthDeidService.Recording.json | 577 ++++++++++++++ .../test/Update-AzHealthDeidService.Tests.ps1 | 38 + .../HealthDeid.Autorest/test/env.json | 13 + .../test/jsonConfigs/deidServiceJson.json | 6 + .../HealthDeid.Autorest/test/loadEnv.ps1 | 29 + .../HealthDeid.Autorest/test/utils.ps1 | 94 +++ .../utils/Get-SubscriptionIdTestSafe.ps1 | 7 + .../utils/Unprotect-SecureString.ps1 | 16 + 33 files changed, 4116 insertions(+) create mode 100644 src/HealthDeid/HealthDeid.Autorest/.gitattributes create mode 100644 src/HealthDeid/HealthDeid.Autorest/.gitignore create mode 100644 src/HealthDeid/HealthDeid.Autorest/Properties/AssemblyInfo.cs create mode 100644 src/HealthDeid/HealthDeid.Autorest/README.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json create mode 100644 src/HealthDeid/HealthDeid.Autorest/custom/README.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/docs/Az.HealthDeid.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/docs/Get-AzHealthDeidService.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/docs/New-AzHealthDeidService.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/docs/README.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/docs/Remove-AzHealthDeidService.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/docs/Update-AzHealthDeidService.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/examples/Get-AzHealthDeidService.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/examples/New-AzHealthDeidService.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/examples/Remove-AzHealthDeidService.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/examples/Update-AzHealthDeidService.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/how-to.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/resources/README.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Recording.json create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Tests.ps1 create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Recording.json create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Tests.ps1 create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/README.md create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Recording.json create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Tests.ps1 create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Recording.json create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Tests.ps1 create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/env.json create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/jsonConfigs/deidServiceJson.json create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/loadEnv.ps1 create mode 100644 src/HealthDeid/HealthDeid.Autorest/test/utils.ps1 create mode 100644 src/HealthDeid/HealthDeid.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 create mode 100644 src/HealthDeid/HealthDeid.Autorest/utils/Unprotect-SecureString.ps1 diff --git a/src/HealthDeid/HealthDeid.Autorest/.gitattributes b/src/HealthDeid/HealthDeid.Autorest/.gitattributes new file mode 100644 index 000000000000..2125666142eb --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/.gitattributes @@ -0,0 +1 @@ +* text=auto \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/.gitignore b/src/HealthDeid/HealthDeid.Autorest/.gitignore new file mode 100644 index 000000000000..ccbe8d018341 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/.gitignore @@ -0,0 +1,18 @@ +bin +obj +.vs +generated +internal +exports +tools +custom/*.psm1 +custom/autogen-model-cmdlets +test/*-TestResults.xml +license.txt +/*.ps1 +/*.psd1 +/*.ps1xml +/*.psm1 +/*.snk +/*.csproj +/*.nuspec \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/Properties/AssemblyInfo.cs b/src/HealthDeid/HealthDeid.Autorest/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..9ffcaa52e073 --- /dev/null +++ b/src/HealthDeid/HealthDeid.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 - HealthDeid")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("0.1.0.0")] +[assembly: System.Reflection.AssemblyVersionAttribute("0.1.0.0")] +[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] +[assembly: System.CLSCompliantAttribute(false)] \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/README.md b/src/HealthDeid/HealthDeid.Autorest/README.md new file mode 100644 index 000000000000..2e27f50cf7a1 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/README.md @@ -0,0 +1,74 @@ + +# Az.HealthDeid +This directory contains the PowerShell module for the HealthDeid service. + +--- +## Info +- Modifiable: yes +- Generated: all +- Committed: yes +- Packaged: yes + +--- +## Detail +This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. + +## Module Requirements +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.7.5 or greater + +## Authentication +AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. + +## Development +For information on how to develop for `Az.HealthDeid`, see [how-to.md](how-to.md). + + +### AutoRest Configuration +> see https://aka.ms/autorest + +```yaml +# pin the swagger version by using the commit id instead of branch name +commit: cde61328a54d392000b36882fec169fce5a983c1 +tag: package-2024-02-28-preview +require: +# readme.azure.noprofile.md is the common configuration file + - $(this-folder)/../../readme.azure.noprofile.md + - $(repo)/specification/healthdataaiservices/resource-manager/readme.md +# If the swagger has not been put in the repo, you may uncomment the following line and refer to it locally +# - (this-folder)/relative-path-to-your-local-readme.md + +try-require: + - $(repo)/specification/healthdataaiservices/resource-manager/readme.powershell.md + +# For new RP, the version is 0.1.0 +module-version: 0.1.0 +# Normally, title is the service name +title: HealthDeid +subject-prefix: $(service-name) + +# The next three configurations are exclusive to v3, and in v4, they are activated by default. If you are still using v3, please uncomment them. +# identity-correction-for-post: true +# resourcegroup-append: true +# nested-object-to-string: true + +directive: + # Following are common directives which are normally required in all the RPs + # 1. Remove the unexpanded parameter set + # 2. For New-* cmdlets, ViaIdentity is not required + # Following two directives are v4 specific + - where: + variant: ^(Create|Update)(?!.*?(Expanded|JsonFilePath|JsonString)) + remove: true + - where: + variant: ^CreateViaIdentity.*$ + remove: true + # Follow directive is v3 specific. If you are using v3, uncomment following directive and comments out two directives above + #- where: + # variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ + # remove: true + + # Remove the set-* cmdlet + - where: + verb: Set + remove: true +``` diff --git a/src/HealthDeid/HealthDeid.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json b/src/HealthDeid/HealthDeid.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json new file mode 100644 index 000000000000..8166acdad8aa --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json @@ -0,0 +1,85 @@ +{ + "resourceType": "deidServices", + "apiVersion": "2024-02-28-preview", + "learnMore": { + "url": "https://learn.microsoft.com/powershell/module/az.healthdeid" + }, + "commands": [ + { + "name": "Get-AzHealthDeidService", + "description": "Get a DeidService", + "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthDataAIServices/deidServices/{deidServiceName}", + "help": { + "learnMore": { + "url": "https://learn.microsoft.com/powershell/module/az.healthdeid/get-azhealthdeidservice" + }, + "parameterSets": [ + { + "parameters": [ + "-Name ", + "-ResourceGroupName ", + "[-SubscriptionId ]" + ] + } + ] + }, + "examples": [ + { + "description": "Get a DeidService", + "parameters": [ + { + "name": "-Name", + "value": "[Path.deidServiceName]" + }, + { + "name": "-ResourceGroupName", + "value": "[Path.resourceGroupName]" + }, + { + "name": "-SubscriptionId", + "value": "[Path.subscriptionId]" + } + ] + } + ] + }, + { + "name": "Remove-AzHealthDeidService", + "description": "Delete a DeidService", + "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthDataAIServices/deidServices/{deidServiceName}", + "help": { + "learnMore": { + "url": "https://learn.microsoft.com/powershell/module/az.healthdeid/remove-azhealthdeidservice" + }, + "parameterSets": [ + { + "parameters": [ + "-Name ", + "-ResourceGroupName ", + "[-SubscriptionId ]" + ] + } + ] + }, + "examples": [ + { + "description": "Delete a DeidService", + "parameters": [ + { + "name": "-Name", + "value": "[Path.deidServiceName]" + }, + { + "name": "-ResourceGroupName", + "value": "[Path.resourceGroupName]" + }, + { + "name": "-SubscriptionId", + "value": "[Path.subscriptionId]" + } + ] + } + ] + } + ] +} diff --git a/src/HealthDeid/HealthDeid.Autorest/custom/README.md b/src/HealthDeid/HealthDeid.Autorest/custom/README.md new file mode 100644 index 000000000000..c93892062555 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/custom/README.md @@ -0,0 +1,41 @@ +# Custom +This directory contains custom implementation for non-generated cmdlets for the `Az.HealthDeid` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `../exports` folder. The only generated file into this folder is the `Az.HealthDeid.custom.psm1`. This file should not be modified. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: yes + +## Details +For `Az.HealthDeid` to use custom cmdlets, it does this two different ways. We **highly recommend** creating script cmdlets, as they are easier to write and allow access to the other exported cmdlets. C# cmdlets *cannot access exported cmdlets*. + +For C# cmdlets, they are compiled with the rest of the generated low-level cmdlets into the `./bin/Az.HealthDeid.private.dll`. The names of the cmdlets (methods) and files must follow the `[cmdletName]_[variantName]` syntax used for generated cmdlets. The `variantName` is used as the `ParameterSetName`, so use something appropriate that doesn't clash with already created variant or parameter set names. You cannot use the `ParameterSetName` property in the `Parameter` attribute on C# cmdlets. Each cmdlet must be separated into variants using the same pattern as seen in the `generated/cmdlets` folder. + +For script cmdlets, these are loaded via the `Az.HealthDeid.custom.psm1`. Then, during the build process, this module is loaded and processed in the same manner as the C# cmdlets. The fundamental difference is the script cmdlets use the `ParameterSetName` attribute and C# cmdlets do not. To create a script cmdlet variant of a generated cmdlet, simply decorate all parameters in the script with the new `ParameterSetName` in the `Parameter` attribute. This will appropriately treat each parameter set as a separate variant when processed to be exported during the build. + +## Purpose +This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `../exports` folder. + +## Usage +The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `../exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: +- Break +- DefaultProfile +- HttpPipelineAppend +- HttpPipelinePrepend +- Proxy +- ProxyCredential +- ProxyUseDefaultCredentials + +These provide functionality to our HTTP pipeline and other useful features. In script, you can forward these parameters using `$PSBoundParameters` to the other cmdlets you're calling within `Az.HealthDeid`. For C#, follow the usage seen in the `ProcessRecordAsync` method. + +### Attributes +For processing the cmdlets, we've created some additional attributes: +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.DescriptionAttribute` + - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts. +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.DoNotExportAttribute` + - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.HealthDeid`. +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.InternalExportAttribute` + - Used in C# cmdlets to route exported cmdlets to the `../internal`, which are *not exposed* by `Az.HealthDeid`. For more information, see [README.md](../internal/README.md) in the `../internal` folder. +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.ProfileAttribute` + - Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules. \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/Az.HealthDeid.md b/src/HealthDeid/HealthDeid.Autorest/docs/Az.HealthDeid.md new file mode 100644 index 000000000000..0c2bfff6981b --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/docs/Az.HealthDeid.md @@ -0,0 +1,25 @@ +--- +Module Name: Az.HealthDeid +Module Guid: 2c5ee909-83f4-4436-80d4-ae02c50beed1 +Download Help Link: https://learn.microsoft.com/powershell/module/az.healthdeid +Help Version: 1.0.0.0 +Locale: en-US +--- + +# Az.HealthDeid Module +## Description +Microsoft Azure PowerShell: HealthDeid cmdlets + +## Az.HealthDeid Cmdlets +### [Get-AzHealthDeidService](Get-AzHealthDeidService.md) +Get a DeidService + +### [New-AzHealthDeidService](New-AzHealthDeidService.md) +create a DeidService + +### [Remove-AzHealthDeidService](Remove-AzHealthDeidService.md) +Delete a DeidService + +### [Update-AzHealthDeidService](Update-AzHealthDeidService.md) +update a DeidService + diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/Get-AzHealthDeidService.md b/src/HealthDeid/HealthDeid.Autorest/docs/Get-AzHealthDeidService.md new file mode 100644 index 000000000000..eade16f195f5 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/docs/Get-AzHealthDeidService.md @@ -0,0 +1,182 @@ +--- +external help file: +Module Name: Az.HealthDeid +online version: https://learn.microsoft.com/powershell/module/az.healthdeid/get-azhealthdeidservice +schema: 2.0.0 +--- + +# Get-AzHealthDeidService + +## SYNOPSIS +Get a DeidService + +## SYNTAX + +### List (Default) +``` +Get-AzHealthDeidService [-SubscriptionId ] [-DefaultProfile ] [] +``` + +### Get +``` +Get-AzHealthDeidService -Name -ResourceGroupName [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzHealthDeidService -InputObject [-DefaultProfile ] [] +``` + +### List1 +``` +Get-AzHealthDeidService -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Get a DeidService + +## EXAMPLES + +### Example 1: Get a De-identification Service resource by name +```powershell +Get-AzHealthDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService1 +IdentityPrincipalId : +IdentityTenantId : +IdentityType : None +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : azpwshDeidService1 +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Enabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://vebsefg7b9cackat.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 12:00:35 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 12:00:35 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Gets a De-identification Service by its name and the resource group it belongs to. + +### Example 2: List all De-identification Service resources in a resource group +```powershell +Get-AzHealthDeidService -ResourceGroupName azpwsh-test-rg +``` + +```output +Location Name SystemDataCreatedAt SystemDataCreatedBy SystemDataCreatedByType SystemDataLastModifiedAt SystemDataLastModifiedBy SystemDataLastModifiedByType ResourceGroupName +-------- ---- ------------------- ------------------- ----------------------- ------------------------ ------------------------ ---------------------------- ----------------- +eastus2 azpwshDeidService1 10/21/2024 12:00:35 AM contoso@microsoft.com User 10/21/2024 12:00:35 AM contoso@microsoft.com User azpwsh-test-rg +eastus2 azpwshDeidService2 10/21/2024 12:01:06 AM contoso@microsoft.com User 10/21/2024 12:01:06 AM contoso@microsoft.com User azpwsh-test-rg +``` + +Lists all De-identification Service resources in the specified resource group. + +## PARAMETERS + +### -DefaultProfile +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 +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the deid service + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: DeidServiceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Get, List1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. +The value must be an UUID. + +```yaml +Type: System.String[] +Parameter Sets: Get, List, List1 +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +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). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IDeidService + +## NOTES + +## RELATED LINKS + diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/New-AzHealthDeidService.md b/src/HealthDeid/HealthDeid.Autorest/docs/New-AzHealthDeidService.md new file mode 100644 index 000000000000..ebfded62b180 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/docs/New-AzHealthDeidService.md @@ -0,0 +1,347 @@ +--- +external help file: +Module Name: Az.HealthDeid +online version: https://learn.microsoft.com/powershell/module/az.healthdeid/new-azhealthdeidservice +schema: 2.0.0 +--- + +# New-AzHealthDeidService + +## SYNOPSIS +create a DeidService + +## SYNTAX + +### CreateExpanded (Default) +``` +New-AzHealthDeidService -Name -ResourceGroupName -Location + [-SubscriptionId ] [-EnableSystemAssignedIdentity] [-PublicNetworkAccess ] [-Tag ] + [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzHealthDeidService -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### CreateViaJsonString +``` +New-AzHealthDeidService -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +## DESCRIPTION +Create a DeidService + +## EXAMPLES + +### Example 1: Create a new De-identification Service resource +```powershell +New-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -Location eastus2 -EnableSystemAssignedIdentity -PublicNetworkAccess "Disabled" +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa +IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 +IdentityType : SystemAssigned +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Creates a new De-identification Service resource in the specified resource group and location. + +### Example 2: Create a new De-identification Service resource from a JSON file +```powershell +New-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -JsonFilePath path/to/json.json +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Creates a new De-identification Service resource with location and properties specified in the JSON file. + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableSystemAssignedIdentity +Decides if enable a system assigned identity for the resource. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +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 +``` + +### -Location +The geo-location where the resource lives + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the deid service + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: DeidServiceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PublicNetworkAccess +Gets or sets allow or disallow public network access to resource + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. +The value must be an UUID. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +Resource tags. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: CreateExpanded +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 +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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). + +## INPUTS + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IDeidService + +## NOTES + +## RELATED LINKS + diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/README.md b/src/HealthDeid/HealthDeid.Autorest/docs/README.md new file mode 100644 index 000000000000..97c4e0f6401a --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/docs/README.md @@ -0,0 +1,11 @@ +# Docs +This directory contains the documentation of the cmdlets for the `Az.HealthDeid` module. To run documentation generation, use the `generate-help.ps1` script at the root module folder. Files in this folder will *always be overridden on regeneration*. To update documentation examples, please use the `../examples` folder. + +## Info +- Modifiable: no +- Generated: all +- Committed: yes +- Packaged: yes + +## Details +The process of documentation generation loads `Az.HealthDeid` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `../exports` folder. Additionally, when writing custom cmdlets in the `../custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `../examples` folder. \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/Remove-AzHealthDeidService.md b/src/HealthDeid/HealthDeid.Autorest/docs/Remove-AzHealthDeidService.md new file mode 100644 index 000000000000..cb08de005739 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/docs/Remove-AzHealthDeidService.md @@ -0,0 +1,209 @@ +--- +external help file: +Module Name: Az.HealthDeid +online version: https://learn.microsoft.com/powershell/module/az.healthdeid/remove-azhealthdeidservice +schema: 2.0.0 +--- + +# Remove-AzHealthDeidService + +## SYNOPSIS +Delete a DeidService + +## SYNTAX + +### Delete (Default) +``` +Remove-AzHealthDeidService -Name -ResourceGroupName [-SubscriptionId ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DeleteViaIdentity +``` +Remove-AzHealthDeidService -InputObject [-DefaultProfile ] [-AsJob] [-NoWait] + [-PassThru] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Delete a DeidService + +## EXAMPLES + +### Example: Remove a De-identification Service resource by name +```powershell +Remove-AzHealthDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +``` + +Deletes the specifies De-identification Service resource. + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity +Parameter Sets: DeleteViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the deid service + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: DeidServiceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. +The value must be an UUID. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS + diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/Update-AzHealthDeidService.md b/src/HealthDeid/HealthDeid.Autorest/docs/Update-AzHealthDeidService.md new file mode 100644 index 000000000000..39aea83a8db1 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/docs/Update-AzHealthDeidService.md @@ -0,0 +1,316 @@ +--- +external help file: +Module Name: Az.HealthDeid +online version: https://learn.microsoft.com/powershell/module/az.healthdeid/update-azhealthdeidservice +schema: 2.0.0 +--- + +# Update-AzHealthDeidService + +## SYNOPSIS +update a DeidService + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzHealthDeidService -Name -ResourceGroupName [-SubscriptionId ] + [-EnableSystemAssignedIdentity ] [-PublicNetworkAccess ] [-Tag ] + [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzHealthDeidService -InputObject [-EnableSystemAssignedIdentity ] + [-PublicNetworkAccess ] [-Tag ] [-UserAssignedIdentity ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Update a DeidService + +## EXAMPLES + +### Example 1: Update a De-identification service to create a System Assigned Managed Identity +```powershell +Update-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $true +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa +IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 +IdentityType : SystemAssigned +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 6:56:12 PM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Updates an existing De-identification service to create a System Assigned Managed Identity. + +### Example 2: Update the public network access and tags of a De-identification service +```powershell +Update-AzHealthDeidService -Name azpwshDeidService2 -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $false -PublicNetworkAccess "Enabled" -Tag @{ AzPwshTestKey = "AzPwshTestValue" } +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService2 +IdentityPrincipalId : +IdentityTenantId : +IdentityType : None +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : azpwshDeidService2 +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Enabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://f4cag7feawaubgbv.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 12:01:06 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:43:35 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + "AzPwshTestKey": "AzPwshTestValue" + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Update a De-identification Service by enabling public network access, removing the System Assigned Managed Identity and adding tags. + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableSystemAssignedIdentity +Decides if enable a system assigned identity for the resource. + +```yaml +Type: System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity +Parameter Sets: UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the deid service + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: DeidServiceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PublicNetworkAccess +Gets or sets allow or disallow public network access to resource + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. +The value must be an UUID. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +Resource tags. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +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: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IDeidService + +## NOTES + +## RELATED LINKS + diff --git a/src/HealthDeid/HealthDeid.Autorest/examples/Get-AzHealthDeidService.md b/src/HealthDeid/HealthDeid.Autorest/examples/Get-AzHealthDeidService.md new file mode 100644 index 000000000000..fc354f09cd2b --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/examples/Get-AzHealthDeidService.md @@ -0,0 +1,45 @@ +### Example 1: Get a De-identification Service resource by name +```powershell +Get-AzHealthDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService1 +IdentityPrincipalId : +IdentityTenantId : +IdentityType : None +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : azpwshDeidService1 +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Enabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://vebsefg7b9cackat.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 12:00:35 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 12:00:35 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Gets a De-identification Service by its name and the resource group it belongs to. + +### Example 2: List all De-identification Service resources in a resource group +```powershell +Get-AzHealthDeidService -ResourceGroupName azpwsh-test-rg +``` + +```output +Location Name SystemDataCreatedAt SystemDataCreatedBy SystemDataCreatedByType SystemDataLastModifiedAt SystemDataLastModifiedBy SystemDataLastModifiedByType ResourceGroupName +-------- ---- ------------------- ------------------- ----------------------- ------------------------ ------------------------ ---------------------------- ----------------- +eastus2 azpwshDeidService1 10/21/2024 12:00:35 AM contoso@microsoft.com User 10/21/2024 12:00:35 AM contoso@microsoft.com User azpwsh-test-rg +eastus2 azpwshDeidService2 10/21/2024 12:01:06 AM contoso@microsoft.com User 10/21/2024 12:01:06 AM contoso@microsoft.com User azpwsh-test-rg +``` + +Lists all De-identification Service resources in the specified resource group. diff --git a/src/HealthDeid/HealthDeid.Autorest/examples/New-AzHealthDeidService.md b/src/HealthDeid/HealthDeid.Autorest/examples/New-AzHealthDeidService.md new file mode 100644 index 000000000000..577a6ca43485 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/examples/New-AzHealthDeidService.md @@ -0,0 +1,60 @@ +### Example 1: Create a new De-identification Service resource +```powershell +New-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -Location eastus2 -EnableSystemAssignedIdentity -PublicNetworkAccess "Disabled" +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa +IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 +IdentityType : SystemAssigned +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Creates a new De-identification Service resource in the specified resource group and location. + +### Example 2: Create a new De-identification Service resource from a JSON file +```powershell +New-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -JsonFilePath path/to/json.json +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Creates a new De-identification Service resource with location and properties specified in the JSON file. \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/examples/Remove-AzHealthDeidService.md b/src/HealthDeid/HealthDeid.Autorest/examples/Remove-AzHealthDeidService.md new file mode 100644 index 000000000000..187d9fc8cf48 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/examples/Remove-AzHealthDeidService.md @@ -0,0 +1,7 @@ +### Example: Remove a De-identification Service resource by name +```powershell +Remove-AzHealthDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +``` + +Deletes the specifies De-identification Service resource. + diff --git a/src/HealthDeid/HealthDeid.Autorest/examples/Update-AzHealthDeidService.md b/src/HealthDeid/HealthDeid.Autorest/examples/Update-AzHealthDeidService.md new file mode 100644 index 000000000000..d87d056c81d2 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/examples/Update-AzHealthDeidService.md @@ -0,0 +1,64 @@ +### Example 1: Update a De-identification service to create a System Assigned Managed Identity +```powershell +Update-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $true +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa +IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 +IdentityType : SystemAssigned +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 6:56:12 PM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Updates an existing De-identification service to create a System Assigned Managed Identity. + +### Example 2: Update the public network access and tags of a De-identification service +```powershell +Update-AzHealthDeidService -Name azpwshDeidService2 -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $false -PublicNetworkAccess "Enabled" -Tag @{ AzPwshTestKey = "AzPwshTestValue" } +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService2 +IdentityPrincipalId : +IdentityTenantId : +IdentityType : None +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : azpwshDeidService2 +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Enabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://f4cag7feawaubgbv.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 12:01:06 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:43:35 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + "AzPwshTestKey": "AzPwshTestValue" + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Update a De-identification Service by enabling public network access, removing the System Assigned Managed Identity and adding tags. diff --git a/src/HealthDeid/HealthDeid.Autorest/how-to.md b/src/HealthDeid/HealthDeid.Autorest/how-to.md new file mode 100644 index 000000000000..98c228b62343 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/how-to.md @@ -0,0 +1,58 @@ +# How-To +This document describes how to develop for `Az.HealthDeid`. + +## Building `Az.HealthDeid` +To build, run the `build-module.ps1` at the root of the module directory. This will generate the proxy script cmdlets that are the cmdlets being exported by this module. After the build completes, the proxy script cmdlets will be output to the `exports` folder. To read more about the proxy script cmdlets, look at the [README.md](exports/README.md) in the `exports` folder. + +## Creating custom cmdlets +To add cmdlets that were not generated by the REST specification, use the `custom` folder. This folder allows you to add handwritten `.ps1` and `.cs` files. Currently, we support using `.ps1` scripts as new cmdlets or as additional low-level variants (via `ParameterSet`), and `.cs` files as low-level (variants) cmdlets that the exported script cmdlets call. We do not support exporting any `.cs` (dll) cmdlets directly. To read more about custom cmdlets, look at the [README.md](custom/README.md) in the `custom` folder. + +## Generating documentation +To generate documentation, the process is now integrated into the `build-module.ps1` script. If you don't want to run this process as part of `build-module.ps1`, you can provide the `-NoDocs` switch. If you want to run documentation generation after the build process, you may still run the `generate-help.ps1` script. Overall, the process will look at the documentation comments in the generated and custom cmdlets and types, and create `.md` files into the `docs` folder. Additionally, this pulls in any examples from the `examples` folder and adds them to the generated help markdown documents. To read more about examples, look at the [README.md](examples/README.md) in the `examples` folder. To read more about documentation, look at the [README.md](docs/README.md) in the `docs` folder. + +## Testing `Az.HealthDeid` +To test the cmdlets, we use [Pester](https://github.com/pester/Pester). Tests scripts (`.ps1`) should be added to the `test` folder. To execute the Pester tests, run the `test-module.ps1` script. This will run all tests in `playback` mode within the `test` folder. To read more about testing cmdlets, look at the [README.md](examples/README.md) in the `examples` folder. + +## Packing `Az.HealthDeid` +To pack `Az.HealthDeid` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://learn.microsoft.com/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team. + +## Module Script Details +There are multiple scripts created for performing different actions for developing `Az.HealthDeid`. +- `build-module.ps1` + - Builds the module DLL (`./bin/Az.HealthDeid.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `./Az.HealthDeid.psd1` with Azure profile information. + - **Parameters**: [`Switch` parameters] + - `-Run`: After building, creates an isolated PowerShell session and loads `Az.HealthDeid`. + - `-Test`: After building, runs the `Pester` tests defined in the `test` folder. + - `-Docs`: After building, generates the Markdown documents for the modules into the `docs` folder. + - `-Pack`: After building, packages the module into a `.nupkg`. + - `-Code`: After building, opens a VSCode window with the module's directory and runs (see `-Run`) the module. + - `-Release`: Builds the module in `Release` configuration (as opposed to `Debug` configuration). + - `-NoDocs`: Supresses writing the documentation markdown files as part of the cmdlet exporting process. + - `-Debugger`: Used when attaching the debugger in Visual Studio to the PowerShell session, and running the build process without recompiling the DLL. This suppresses running the script as an isolated process. +- `run-module.ps1` + - Creates an isolated PowerShell session and loads `Az.HealthDeid` into the session. + - Same as `-Run` in `build-module.ps1`. + - **Parameters**: [`Switch` parameters] + - `-Code`: Opens a VSCode window with the module's directory. + - Same as `-Code` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. +- `test-module.ps1` + - Runs the `Pester` tests defined in the `test` folder. + - Same as `-Test` in `build-module.ps1`. +- `pack-module.ps1` + - Packages the module into a `.nupkg` for distribution. + - Same as `-Pack` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. + - This process is now integrated into `build-module.ps1` automatically. To disable, use `-NoDocs` when running `build-module.ps1`. +- `export-surface.ps1` + - Generates Markdown documents for both the cmdlet surface and the model (class) surface of the module. + - These files are placed into the `resources` folder. + - Used for investigating the surface of your module. These are *not* documentation for distribution. +- `check-dependencies.ps1` + - Used in `run-module.ps1` and `test-module.ps1` to verify dependent modules are available to run those tasks. + - It will download local (within the module's directory structure) versions of those modules as needed. + - This script *does not* need to be ran by-hand. \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/resources/README.md b/src/HealthDeid/HealthDeid.Autorest/resources/README.md new file mode 100644 index 000000000000..736492341e3d --- /dev/null +++ b/src/HealthDeid/HealthDeid.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/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Recording.json b/src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Recording.json new file mode 100644 index 000000000000..942b0a4b3556 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Recording.json @@ -0,0 +1,225 @@ +{ + "Get-AzHealthDeidService+[NoContext]+List+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "22" ], + "x-ms-client-request-id": [ "c51b1c4a-b32d-455e-ba07-200a968b49ca" ], + "CommandName": [ "Get-AzHealthDeidService" ], + "FullCommandName": [ "Get-AzHealthDeidService_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "1209bb30-9aab-47bf-a2f6-900ece44cb95", "7dfce0b9-f07a-4460-9603-ba2d00abf7e3", "01c32af2-6804-45ae-8f98-02ca043d4721", "1b7f286e-def4-43d2-a534-c812f9aea302", "ba25878d-e705-4350-8dff-1f32e21e5a5b", "4653ae2d-7208-4426-bc73-d0f07cd0020d", "dfe0199f-d818-4ace-8f83-e379d2ee6ab5", "e14b4466-d3dd-4309-9b18-3e587401fc7a" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "c1b02ce7-64da-4ec0-afae-8cb95076f792" ], + "x-ms-correlation-request-id": [ "c1b02ce7-64da-4ec0-afae-8cb95076f792" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205304Z:c1b02ce7-64da-4ec0-afae-8cb95076f792" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AFEF5D8F77904B2F844840C2409290CC Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:03Z" ], + "Date": [ "Mon, 21 Oct 2024 20:53:04 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "443361" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8b3445a3-66e1-4f46-b\",\"name\":\"Test8b3445a3-66e1-4f46-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T15:44:03.6480108Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T15:44:03.6480108Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h7b4hxehbchtf2at.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5cf9363c-c402-4651-9\",\"name\":\"Test5cf9363c-c402-4651-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T15:54:03.5592076Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T15:54:03.5592076Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8cfd3dpe0hgdhev.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test67777892-f34f-42a1-a\",\"name\":\"Test67777892-f34f-42a1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T16:54:03.7993255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T16:54:03.7993255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b2a5frcdaph0endu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6c3a47dc-3080-403f-a\",\"name\":\"Test6c3a47dc-3080-403f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T17:04:04.4150641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T17:04:04.4150641Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b0dhe5cgctagemez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa5ecd3c1-ec0f-4876-9\",\"name\":\"Testa5ecd3c1-ec0f-4876-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T18:35:19.7507449Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:49:57.6127233Z\"},\"identity\":{\"principalId\":\"f346e0d5-5aa4-4f16-aa68-42934e5de67c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fwdwg7ecd8b3hqbb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test33b3e1ec-6107-4e50-8\",\"name\":\"Test33b3e1ec-6107-4e50-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T21:24:04.8223969Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T21:24:04.8223969Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hjh3d0g8g4fka9h7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a5392dd-790e-4ce2-b\",\"name\":\"Test7a5392dd-790e-4ce2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T21:34:04.5725778Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T21:34:04.5725778Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3gffebcfwegbrhu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf463ecca-53a7-4f6a-a\",\"name\":\"Testf463ecca-53a7-4f6a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T22:34:04.5563856Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T22:34:04.5563856Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bvhzb3g3g6guc4es.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test465ab8ce-688b-4413-9\",\"name\":\"Test465ab8ce-688b-4413-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T23:05:19.2592465Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:49:59.5223636Z\"},\"identity\":{\"principalId\":\"0bc19699-0f82-474b-b0fb-3324c24d77be\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://drh2agfyefczfthm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e7fba18-0942-4233-a\",\"name\":\"Test5e7fba18-0942-4233-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T06:24:06.2187878Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T06:24:06.2187878Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0fvchf7b5echzd6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9650ee05-5865-4343-b\",\"name\":\"Test9650ee05-5865-4343-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T07:24:05.6036751Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T07:24:05.6036751Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f5f6g6gadxcyfac5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test56f0398b-ce2e-4ba6-a\",\"name\":\"Test56f0398b-ce2e-4ba6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T20:44:07.732736Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T20:44:07.732736Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bjbmaff9bngfbjg2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdd9de45f-94f7-4721-b\",\"name\":\"Testdd9de45f-94f7-4721-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T00:55:23.5509592Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:28.5078351Z\"},\"identity\":{\"principalId\":\"f3cedb7e-8fd9-4917-a0ad-508c36399bff\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g5c4ghgjajcsffdy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbae1b7b5-fbbe-4243-a\",\"name\":\"Testbae1b7b5-fbbe-4243-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T09:55:24.5542831Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:30.2158476Z\"},\"identity\":{\"principalId\":\"fa466f94-3dbe-488f-9908-1ae510fa0718\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://btdgfgffeqf8hfam.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadd5435b-cc26-43fb-b\",\"name\":\"Testadd5435b-cc26-43fb-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T11:05:25.7167001Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:30.8115536Z\"},\"identity\":{\"principalId\":\"a3c8a647-185b-4fc2-8e87-770db3561e77\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5fac3e7gvbrbre5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8314a48b-97b3-4e9a-8\",\"name\":\"Test8314a48b-97b3-4e9a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T12:05:26.1936541Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:31.3584383Z\"},\"identity\":{\"principalId\":\"588de316-33ff-4914-a47a-9152e514e4d2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dfhucwhnhwh9ggbj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1a4ed21-cd5e-4948-a\",\"name\":\"Teste1a4ed21-cd5e-4948-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T06:55:34.9426332Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:33.6608297Z\"},\"identity\":{\"principalId\":\"00c399d8-7a5a-4508-a85e-da88a67acabf\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c8dyegbgbvcrhzht.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testeb4614b8-1a4e-4d05-9\",\"name\":\"Testeb4614b8-1a4e-4d05-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T07:05:34.7114373Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:34.2817688Z\"},\"identity\":{\"principalId\":\"4be5647d-80af-4044-b75e-04fa2da36c13\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aub2c8gec4aphphs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test593259f4-40e6-458a-8\",\"name\":\"Test593259f4-40e6-458a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T07:34:19.7404327Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T07:34:19.7404327Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bte2c9c8bzgsbfcs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test32674fcc-1bbc-42b9-a\",\"name\":\"Test32674fcc-1bbc-42b9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T08:44:20.0737467Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T08:44:20.0737467Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7d4c5fpdbcqfee0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa56e8022-df18-4406-a\",\"name\":\"Testa56e8022-df18-4406-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T09:25:35.0244097Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:34.6914264Z\"},\"identity\":{\"principalId\":\"d40d6dd4-3ee7-47cc-a1df-5e843dff46c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huh5e2bja7b4hvdt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb9987768-d6b1-45d2-a\",\"name\":\"Testb9987768-d6b1-45d2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T10:14:20.2693472Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T10:14:20.2693472Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d2ceg2drf4ambea0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf209e3a0-c445-4f53-b\",\"name\":\"Testf209e3a0-c445-4f53-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T10:54:20.2592306Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T10:54:20.2592306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://exgyc5hrdeg8b0ca.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste83299b4-3af3-46d4-b\",\"name\":\"Teste83299b4-3af3-46d4-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T11:25:36.4872367Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:39.8407735Z\"},\"identity\":{\"principalId\":\"a88238d9-d06f-4a91-9629-75db4e9aede9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0cwerffhpatb7aa.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test548883fc-610e-42a0-b\",\"name\":\"Test548883fc-610e-42a0-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T14:45:35.6917131Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:40.4624112Z\"},\"identity\":{\"principalId\":\"a227c313-5fbf-4510-8ea5-28be7d26425c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkh5e5a0cbg5cah9.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoneastus\",\"name\":\"jovinsoneastus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T16:21:32.2088677Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T00:03:41.9236289Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a9dua3ezhee5bahz.api.eus001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.Network/privateEndpoints/jovinsoneastys-pl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoneastus/privateEndpointConnections/jovinsoneastys-pl.0715aad2-a357-49ab-9909-c383bb40227d\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testeuspl\",\"name\":\"testeuspl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T17:05:34.7131699Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-28T17:05:34.7131699Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f2hbb3cucbddf8aq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testeuspl/privateEndpointConnections/petest.3e208034-9539-4be2-ad91-3bd069acae2d\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/petest\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg_dev_leakassab/providers/microsoft.healthdataaiservices/deidservices/deid-leakassab\",\"name\":\"deid-leakassab\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"leakassab@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T23:48:44.2725718Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:41.0083465Z\"},\"identity\":{\"principalId\":\"71b89795-6f5b-4903-b422-bab5e5f00d92\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfdsagcygshmehgu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test346052ed-6f6d-4b33-9\",\"name\":\"Test346052ed-6f6d-4b33-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T02:15:37.3172628Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:41.6262298Z\"},\"identity\":{\"principalId\":\"79aa25ec-b034-4b94-b017-6f05cbeee79f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gzf9d0araqh8ethr.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test38a886c3-2c32-415a-8\",\"name\":\"Test38a886c3-2c32-415a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T02:44:22.3535798Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T02:44:22.3535798Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bxcmdwakd7e7amb3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa03107f2-b261-4205-a\",\"name\":\"Testa03107f2-b261-4205-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T03:15:37.2240475Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:42.120944Z\"},\"identity\":{\"principalId\":\"a7352424-7276-492e-a536-ba8da71f93c7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://czaeekhjbegkbpc4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test77c49e23-6752-4c01-8\",\"name\":\"Test77c49e23-6752-4c01-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T06:45:39.1518773Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:42.6853523Z\"},\"identity\":{\"principalId\":\"856eb24c-d56f-425e-8f30-325db7e44891\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fuh0dwceauavetcm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb1361529-e78c-493f-a\",\"name\":\"Testb1361529-e78c-493f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T07:14:21.9690027Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T07:14:21.9690027Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ceeud9e5e6cnhhg6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0d42fb2-8f09-4b56-8\",\"name\":\"Testb0d42fb2-8f09-4b56-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T09:34:22.9446904Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T09:34:22.9446904Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gthcf0ccf8abaug3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test50226ab8-4a1b-41a4-a\",\"name\":\"Test50226ab8-4a1b-41a4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T09:55:39.5586516Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:43.1935443Z\"},\"identity\":{\"principalId\":\"e523578b-c28b-479b-8982-dd6eab50a128\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cphhf7bcg0hgfyg5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testda699e13-07bf-4a2f-8\",\"name\":\"Testda699e13-07bf-4a2f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T11:05:39.0788447Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:43.7351515Z\"},\"identity\":{\"principalId\":\"6e9d8013-482e-4992-b7d1-5d3bc0620c0e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfb2dbh3ghgjf9du.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd5d747c3-4c6d-4b15-b\",\"name\":\"Testd5d747c3-4c6d-4b15-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T14:04:23.8875945Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T14:04:23.8875945Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buateag2cjhfd2bw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.HealthDataAIServices/DeidServices/testing\",\"name\":\"testing\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"msoennichsen@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-29T22:10:02.2149644Z\",\"lastModifiedBy\":\"msoennichsen@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-29T22:10:02.2149644Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://akbcbhd4gpg8h5au.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc27dd89d-23d9-4a3c-9\",\"name\":\"Testc27dd89d-23d9-4a3c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T01:14:24.8592454Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T01:14:24.8592454Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fta2epatd3f4edez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ac675c0-e685-4299-9\",\"name\":\"Test5ac675c0-e685-4299-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T02:14:25.1933926Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T02:14:25.1933926Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3c9f7bjcud9e5ej.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testafe81e7c-7562-42ca-a\",\"name\":\"Testafe81e7c-7562-42ca-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T02:35:41.7566493Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:44.3316408Z\"},\"identity\":{\"principalId\":\"36af6e12-6c87-4b5b-af8e-c39ed6770d3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dedbcng9cpakfraf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92a71375-aaf6-49e3-b\",\"name\":\"Test92a71375-aaf6-49e3-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T07:54:25.6861814Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T07:54:25.6861814Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g4hzcqa4gmbvcdbx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test58bfd760-aa80-4662-a\",\"name\":\"Test58bfd760-aa80-4662-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T08:05:41.0908656Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:44.7808303Z\"},\"identity\":{\"principalId\":\"c0776d81-7979-4cc7-8d3d-281c6ac53d09\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g3bpbegcedggb5g9.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3520cf4b-8f9e-4a29-9\",\"name\":\"Test3520cf4b-8f9e-4a29-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T11:14:26.0450757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T11:14:26.0450757Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f7a8cfgxevcvgdde.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa525cb10-6ce0-4db0-a\",\"name\":\"Testa525cb10-6ce0-4db0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T11:34:29.647141Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-31T11:34:29.647141Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e5ejebe3h0a6bbgk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test76d1ddd8-dfba-4f18-a\",\"name\":\"Test76d1ddd8-dfba-4f18-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T12:35:45.3195802Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:52.7162847Z\"},\"identity\":{\"principalId\":\"a994b509-4be4-478d-a5f3-b5c931117bda\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://asgycvf0d4fnanh3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf243d998-0518-41c2-a\",\"name\":\"Testf243d998-0518-41c2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T14:45:46.3399087Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:53.378961Z\"},\"identity\":{\"principalId\":\"79acc55a-8910-447e-9ca4-7bb7245c4b7a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hud9ekavapf3fwet.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9b988de0-5d15-499d-b\",\"name\":\"Test9b988de0-5d15-499d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T21:35:46.652731Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:53.973208Z\"},\"identity\":{\"principalId\":\"4dc65534-be35-4dce-b14a-becd8eae7e45\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c2ecgfbvcec4h8h2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcea94dc1-27af-4ad2-b\",\"name\":\"Testcea94dc1-27af-4ad2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T21:44:31.3114152Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-31T21:44:31.3114152Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7g6hfhshac7ewfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test418fe284-34c6-4a5c-9\",\"name\":\"Test418fe284-34c6-4a5c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T01:46:20.8617847Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T01:46:20.8617847Z\"},\"identity\":{\"principalId\":\"2847d5db-8407-4666-a2b5-ca5e27ea985b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aedda6aeazemepcj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2dec70a3-a4c4-4883-b\",\"name\":\"Test2dec70a3-a4c4-4883-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T04:55:05.9148319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T04:55:05.9148319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adhcg7bvb2h0d9hn.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test25769ffe-af47-45e0-9\",\"name\":\"Test25769ffe-af47-45e0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T04:56:22.1680743Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T04:56:22.1680743Z\"},\"identity\":{\"principalId\":\"31ff749c-ccc2-4906-ba3e-130dc99dc112\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a6fkftadd6cngpgt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb770ec70-1ff0-400b-b\",\"name\":\"Testb770ec70-1ff0-400b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T05:05:06.2580805Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T05:05:06.2580805Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fqfdcwa8bdg9dpcf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa801711d-f24d-4021-9\",\"name\":\"Testa801711d-f24d-4021-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-11T08:21:51.2658018Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-11T08:21:51.2658018Z\"},\"identity\":{\"principalId\":\"4c0557c9-ac85-4a1e-a3b2-da80eaf232d0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hqfcebgqb2a9dpaj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d288a28-4ed9-4177-b\",\"name\":\"Test5d288a28-4ed9-4177-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-17T18:15:30.2225705Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-17T18:15:30.2225705Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b8erb8byenfrg3fz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0917\",\"name\":\"test0917\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-17T18:20:24.8225773Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-17T18:20:24.8225773Z\"},\"identity\":{\"principalId\":\"4356292b-b98b-4d57-8fb8-8a149f31076a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fzasaceeanhedmhx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste3bb74fd-54a0-43db-a\",\"name\":\"Teste3bb74fd-54a0-43db-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T03:05:30.9577748Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T03:05:30.9577748Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ctdkachwcxaaf3bq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test915bd3e8-6945-4cf7-8\",\"name\":\"Test915bd3e8-6945-4cf7-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T06:16:46.6190316Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T06:16:46.6190316Z\"},\"identity\":{\"principalId\":\"0f63741b-9549-4df4-bdb5-e5aea428c470\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fqd2e8d8gqabc9ea.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd2c2822f-0379-4665-9\",\"name\":\"Testd2c2822f-0379-4665-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-19T14:15:38.3720649Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T14:15:38.3720649Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g0dya4hgc5gdfvcy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8d133811-e76b-4db9-a\",\"name\":\"Test8d133811-e76b-4db9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-23T15:17:06.0218185Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-23T15:17:06.0218185Z\"},\"identity\":{\"principalId\":\"750ef212-1043-4b5c-bf84-cdffced37da4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efhngqgcgcaca6bk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4308f593-0f10-4553-a\",\"name\":\"Test4308f593-0f10-4553-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:22:54.5595634Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:22:54.5595634Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://arezb5craxe6gbha.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9e73f0f6-7db9-4ac8-9\",\"name\":\"Test9e73f0f6-7db9-4ac8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:24:08.8116625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:24:08.8116625Z\"},\"identity\":{\"principalId\":\"7cf3259b-a8ea-4c3e-8886-28ac2a046be7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hdevcghfgedmfyfe.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test89c36db5-af20-49a1-8\",\"name\":\"Test89c36db5-af20-49a1-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:44:07.7172255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:44:07.7172255Z\"},\"identity\":{\"principalId\":\"a3c355dd-459a-4f7c-8775-e4690538aaac\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fea5gcgecue6g3eb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf4d421c7-8c39-4e7b-8\",\"name\":\"Testf4d421c7-8c39-4e7b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:54:08.5925421Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:54:08.5925421Z\"},\"identity\":{\"principalId\":\"feace456-c589-4ab9-9354-0d5b73a7b17d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bndjbyg2a9deaefs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc83ede2e-21ee-4098-b\",\"name\":\"Testc83ede2e-21ee-4098-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:55:51.8042721Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:55:51.8042721Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a8b0bcaee6c3ekhd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test580f898a-49e6-4ff2-9\",\"name\":\"Test580f898a-49e6-4ff2-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:02:53.9674657Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:02:53.9674657Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eyacejfbanfqejgg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfc4c3949-7578-44b6-9\",\"name\":\"Testfc4c3949-7578-44b6-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:04:08.4179249Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:04:08.4179249Z\"},\"identity\":{\"principalId\":\"dbe1c3c1-b6ce-4650-a8c1-aabe45ccbfe1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dgbab5dehqayd0h8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3c33ceb3-6fca-4d3a-b\",\"name\":\"Test3c33ceb3-6fca-4d3a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:05:52.384128Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:05:52.384128Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fvczdgczfqa5aeag.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5f3cb0e3-53e6-48dc-8\",\"name\":\"Test5f3cb0e3-53e6-48dc-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:07:07.8721977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:07:07.8721977Z\"},\"identity\":{\"principalId\":\"81cfff8e-9467-4bb1-84da-ab882a3f819f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://e6chhmbmg4eqd2d2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf779332-9182-4e44-a\",\"name\":\"Testbf779332-9182-4e44-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:12:54.595405Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:12:54.595405Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ethsbae5hxgpe0az.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd347078c-4992-4218-a\",\"name\":\"Testd347078c-4992-4218-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:14:07.8532725Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:14:07.8532725Z\"},\"identity\":{\"principalId\":\"144f9b3e-dff6-4024-9e79-5661e70dd81f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzg3gjgccsenbab6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test479c1eff-43d1-46b6-8\",\"name\":\"Test479c1eff-43d1-46b6-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:17:08.0531881Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:17:08.0531881Z\"},\"identity\":{\"principalId\":\"f1d7c7d9-5c01-4235-9dbb-c6b8c7d24658\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fcevhcb3f9d2ddgz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb315f477-17f3-491c-8\",\"name\":\"Testb315f477-17f3-491c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:22:53.4588323Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:22:53.4588323Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dqhncmdqf7caaaeq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test42b4dfeb-3aa6-455a-8\",\"name\":\"Test42b4dfeb-3aa6-455a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:25:52.0604626Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:25:52.0604626Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h7dpa5hyegbrc9es.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9690c89a-8bb1-4dfb-a\",\"name\":\"Test9690c89a-8bb1-4dfb-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:32:53.5686881Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:32:53.5686881Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aycwfzfydhh3azh2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f470d36-ec33-42b7-a\",\"name\":\"Test7f470d36-ec33-42b7-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:35:51.8058708Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:35:51.8058708Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g0cgfgc7ajdaeeef.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6fff934d-605e-4df6-b\",\"name\":\"Test6fff934d-605e-4df6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:42:53.1345757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:42:53.1345757Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hgdsdhefdudhg3cx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa3d8495-f018-480b-9\",\"name\":\"Testfa3d8495-f018-480b-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:44:08.2153383Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:44:08.2153383Z\"},\"identity\":{\"principalId\":\"6ab384d2-5ecf-4d7e-8598-6ca18fa0e1ec\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://esdsg3fbcbbfg7eg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test70c4c87b-aa55-4528-a\",\"name\":\"Test70c4c87b-aa55-4528-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:55:52.1460493Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:55:52.1460493Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://abd9hefeeca0b4a7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdbdfed87-3b68-4092-8\",\"name\":\"Testdbdfed87-3b68-4092-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:57:07.3436085Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:57:07.3436085Z\"},\"identity\":{\"principalId\":\"9274a384-e27d-42e2-8c3c-a6b85fee897a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hjf7e8ghc5c3guh4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8f048f59-8d6b-4e09-8\",\"name\":\"Test8f048f59-8d6b-4e09-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:02:54.3896474Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:02:54.3896474Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h9facdephsg3etcu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa33d7162-26cf-422e-b\",\"name\":\"Testa33d7162-26cf-422e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:05:51.6715709Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:05:51.6715709Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a4eqd2dadmebgmcn.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test31ca4d54-68b3-4a53-8\",\"name\":\"Test31ca4d54-68b3-4a53-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:05:53.5889723Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:05:53.5889723Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eecgcye8a5fte3af.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc4df9124-1da8-44e8-b\",\"name\":\"Testc4df9124-1da8-44e8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:15:51.8454271Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:15:51.8454271Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://etdfbqcef6gtcnct.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb3b5cd63-4870-4711-9\",\"name\":\"Testb3b5cd63-4870-4711-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:47:07.0907309Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:47:07.0907309Z\"},\"identity\":{\"principalId\":\"a5b99819-de66-4d2a-8ec4-cd3a7dab813d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0b8g9f7gyd5aubk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8698c1bd-6daa-40c0-8\",\"name\":\"Test8698c1bd-6daa-40c0-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:02:53.7813795Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:02:53.7813795Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ehcnazchgcejhucc.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste0da86bb-bc73-456d-a\",\"name\":\"Teste0da86bb-bc73-456d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T13:07:07.5268999Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T13:07:07.5268999Z\"},\"identity\":{\"principalId\":\"014d266c-4c77-43c7-8af5-7c190456ad31\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://h3breuehdxdabdgz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2da15c47-fdf2-42d0-b\",\"name\":\"Test2da15c47-fdf2-42d0-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-26T18:06:02.4375998Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-26T18:06:02.4375998Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://guenekcyena4dgdj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus-pl\",\"name\":\"syntheticseus-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T21:07:59.6551376Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:07:59.6551376Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hra8hkghcjdvanhy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus-pl/privateEndpointConnections/pe-syntheticseus-pl.3ded7c36-1c24-4765-8320-386c4c1ef3fc\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticseus-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr-01/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdreus01\",\"name\":\"cchaobcdreus01\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-03T18:18:45.0275266Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T18:18:45.0275266Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dxdkg5c0gaaag9c0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testpldisabled\",\"name\":\"testpldisabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-14T19:14:19.2824911Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-14T19:14:19.2824911Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test57710f9d-f0b3-4825-b\",\"name\":\"Test57710f9d-f0b3-4825-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-15T15:19:34.4884593Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-15T15:19:34.4884593Z\"},\"identity\":{\"principalId\":\"6a073cf8-347c-432b-94f5-e66f942fd249\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ahh8gygufpand7ct.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/candelete\",\"name\":\"candelete\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-20T05:16:20.3981244Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-20T05:16:20.3981244Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aybraqbjhfbgf6e3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/azpwsh\",\"name\":\"azpwsh\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-20T05:57:23.0922259Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-20T05:57:23.0922259Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3c3dxdqaeendndf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus\",\"name\":\"syntheticseus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:05:54.1278213Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:07:22.2279447Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dharbharavdsaect.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa26b3347-fa92-4dbc-9\",\"name\":\"Testa26b3347-fa92-4dbc-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T01:43:57.0170716Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:51.2617536Z\"},\"identity\":{\"principalId\":\"8f264d85-9a0d-4f1e-8e5d-65a179941829\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://btgbgpg7czgmhydb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test785e9304-f25e-4ef8-b\",\"name\":\"Test785e9304-f25e-4ef8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T02:02:41.7866369Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T02:02:41.7866369Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://axehbdaedxdbcrdw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdfced180-6f55-40bf-8\",\"name\":\"Testdfced180-6f55-40bf-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T02:33:56.987299Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:52.3889988Z\"},\"identity\":{\"principalId\":\"86a5eafb-8cd1-4c7c-9ea3-786d969482fd\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e9daexfebhg3awgv.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test09019f67-5489-41cf-9\",\"name\":\"Test09019f67-5489-41cf-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T16:14:00.1910381Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:53.0058222Z\"},\"identity\":{\"principalId\":\"fcff4d9f-0be8-45b0-8c32-8feb0fd4dd0a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gjfmhxhcavc2bagu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste25a76cb-f142-42b9-8\",\"name\":\"Teste25a76cb-f142-42b9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T16:52:45.3134693Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T16:52:45.3134693Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adgxf8bcdqadcphz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d76b4cf-7662-4bfd-a\",\"name\":\"Test5d76b4cf-7662-4bfd-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T18:24:00.2605741Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:53.7145581Z\"},\"identity\":{\"principalId\":\"f6a4961f-4565-4387-8f6d-1de64ebe1924\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d4dccwevcddnewak.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testabcd2e92-de6e-4453-b\",\"name\":\"Testabcd2e92-de6e-4453-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T20:12:46.2080512Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T20:12:46.2080512Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g8degxd9exb0eccy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8277e68d-5264-4742-a\",\"name\":\"Test8277e68d-5264-4742-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T23:32:46.7822366Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T23:32:46.7822366Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://acbkajdkaaa9csbp.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6940a271-18eb-46d9-b\",\"name\":\"Test6940a271-18eb-46d9-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T02:44:02.4536637Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:54.3429847Z\"},\"identity\":{\"principalId\":\"a05f7ebe-35c3-4ac7-900c-d84c83d85ae0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcbtc0cza4cjdub4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2dc1139f-08b1-49cb-8\",\"name\":\"Test2dc1139f-08b1-49cb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T02:52:47.3669747Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-04T02:52:47.3669747Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cvfuagbhgkbahkfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2a5bd28-7de5-4204-8\",\"name\":\"Teste2a5bd28-7de5-4204-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T07:02:48.3732468Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-04T07:02:48.3732468Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hyc9aqb4btfrhphj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5871834c-b18c-4c28-b\",\"name\":\"Test5871834c-b18c-4c28-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T15:24:05.5915367Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:54.9737949Z\"},\"identity\":{\"principalId\":\"238e4836-9705-4c7d-9fc8-c18ba6a86dea\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8erbbe3bvg2bycq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-gthomasdeiddev009/providers/microsoft.healthdataaiservices/deidservices/gthomas-cli-deid-service\",\"name\":\"gthomas-cli-deid-service\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-06T17:57:32.8272399Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:00.4954843Z\"},\"identity\":{\"principalId\":\"4021988e-4656-4cd3-8207-93cf69cd9af4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5b9gjffeue5f0eb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-gthomasdeiddev009/providers/microsoft.healthdataaiservices/deidservices/gthomas-cli-deid\",\"name\":\"gthomas-cli-deid\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-06T20:14:51.7160954Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:01.3263731Z\"},\"identity\":{\"principalId\":\"39f2cf09-9ce0-4812-aa46-acc21f4b78be\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cng4c0budjaxcwfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd32cc208-760b-4361-b\",\"name\":\"Testd32cc208-760b-4361-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T09:53:04.2088507Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T09:53:04.2088507Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eggyg0c7bkckebdd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste76a072c-38bd-4c00-9\",\"name\":\"Teste76a072c-38bd-4c00-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T00:03:08.0003517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-08T00:03:08.0003517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fyerexethjbke0hh.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c03d46a-5afe-4a6c-a\",\"name\":\"Test4c03d46a-5afe-4a6c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T01:34:23.6364624Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:02.0555503Z\"},\"identity\":{\"principalId\":\"b37a7246-13d6-4d6d-96b2-624304918700\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a5bvgzg5hvdwcqcb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75f6cd6b-8cd0-483a-9\",\"name\":\"Test75f6cd6b-8cd0-483a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T03:23:08.1359355Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-08T03:23:08.1359355Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ayhfdff0fbccgpez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test48cb195e-2818-482a-a\",\"name\":\"Test48cb195e-2818-482a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T14:24:24.9025185Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:03.7572074Z\"},\"identity\":{\"principalId\":\"338328fc-7114-45ca-93c7-06cce1975d26\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ffh3b8gkh6gkb0f3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eus\",\"name\":\"plval0809eus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T18:32:09.6710255Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T18:32:09.6710255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://byfzdrh2fzddawe4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eus/privateEndpointConnections/peeus.2f055527-a9dd-4f2d-96a5-1373a0d1b334\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/peeus\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eus/privateEndpointConnections/peeustest.e73a3939-52d0-45d8-ab1b-8f5908c57705\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/peeustest\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eusv2\",\"name\":\"plval0809eusv2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:11:20.7050619Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:11:20.7050619Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deb7esd6bshyfkab.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eastus\",\"name\":\"plval0809eastus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T23:36:27.7953632Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T00:46:17.1865837Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bwbje2h0dqenfdan.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/eus0813en\",\"name\":\"eus0813en\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T17:27:27.981602Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-13T17:27:27.981602Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gqcudhaqfdb6huf4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0813eus\",\"name\":\"test0813eus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T22:03:12.6968366Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:46.1199566Z\"},\"identity\":{\"principalId\":\"e5c625b6-3ed8-49bd-ba34-b555e9030396\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g9a8f6a2g0fchzg4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0813\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Please approve my connection, thanks.\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0813eus/privateEndpointConnections/peeus0813.1162b02a-9511-4b71-a699-ef0f86782e70\"}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3fb04bac-8558-4c25-b\",\"name\":\"Test3fb04bac-8558-4c25-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-14T13:13:30.6451301Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-14T13:13:30.6451301Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dxd5hyg5gwgxf2cb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53c865a8-e209-49c6-b\",\"name\":\"Test53c865a8-e209-49c6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-14T16:55:47.7698702Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:47.8011606Z\"},\"identity\":{\"principalId\":\"c4cc8613-9007-435e-875f-d0de4165e0cf\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buf2f5bwarexgab5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Tested082d56-35dc-4aaf-8\",\"name\":\"Tested082d56-35dc-4aaf-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-16T00:44:49.8086187Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:48.7331827Z\"},\"identity\":{\"principalId\":\"7b7eb0b3-8581-4f6b-b69c-5270d674a2d4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dzg3gcaxdehjdrf6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc35e49b5-9c9f-45fb-8\",\"name\":\"Testc35e49b5-9c9f-45fb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-17T07:53:38.1009037Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-17T07:53:38.1009037Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gyabe9cbdkafepbb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7001a4b4-d6ae-4cb7-9\",\"name\":\"Test7001a4b4-d6ae-4cb7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-17T18:44:55.1906374Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:29.2220736Z\"},\"identity\":{\"principalId\":\"c27ac38d-22df-4086-9c49-8da20aa3d4b8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hde2aahffxgjavev.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9febe45f-f0f6-4b5b-a\",\"name\":\"Test9febe45f-f0f6-4b5b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-18T08:26:28.0625812Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:30.1418071Z\"},\"identity\":{\"principalId\":\"5d7cc055-b1bd-4a1b-a69e-9e37bed09c0b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fpasb5dmc0b3dvav.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test52b0b8e4-2690-4e9f-b\",\"name\":\"Test52b0b8e4-2690-4e9f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-20T16:03:52.0012532Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-20T16:03:52.0012532Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bgcweza3gsgmexhp.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test647418db-81d2-4c7a-9\",\"name\":\"Test647418db-81d2-4c7a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-20T22:43:52.3271505Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-20T22:43:52.3271505Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ede6egawbbg2gxba.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2e43b94b-5314-4805-8\",\"name\":\"Test2e43b94b-5314-4805-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T07:43:53.7556068Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-21T07:43:53.7556068Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aeeuhscmg3bsaxh8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9bec478f-3021-4b84-8\",\"name\":\"Test9bec478f-3021-4b84-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T09:05:09.7723564Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:33.6388298Z\"},\"identity\":{\"principalId\":\"ebb69717-c03f-4122-b350-f7f64a9456c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5f9ftgrbrcna5bm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8ed7114a-21bc-4837-8\",\"name\":\"Test8ed7114a-21bc-4837-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T11:15:09.4360491Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:34.4435565Z\"},\"identity\":{\"principalId\":\"b411d1ba-6bef-4508-b37e-00c5724948c3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gjbbgyhrddcmf3a8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4a94a19d-db3c-4b73-b\",\"name\":\"Test4a94a19d-db3c-4b73-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T13:25:09.3167565Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:35.50707Z\"},\"identity\":{\"principalId\":\"55c9788d-3a37-445f-aa2e-312bbb238258\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmawb5f6a3cdedf0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff4de099-42ae-4de3-9\",\"name\":\"Testff4de099-42ae-4de3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T16:55:11.1451351Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:36.3035088Z\"},\"identity\":{\"principalId\":\"d78f5778-7478-4ef4-a336-4c444ca3c936\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bae9apctcgd6fkag.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d52f902-5d97-45a6-a\",\"name\":\"Test5d52f902-5d97-45a6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T19:05:10.3089733Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:37.1029164Z\"},\"identity\":{\"principalId\":\"d13bbdf8-abaa-4663-88ee-3a7df2991df7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g6d4d3d7adfgb0cg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9104eab-d7c1-498b-b\",\"name\":\"Teste9104eab-d7c1-498b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T20:15:11.3046245Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:37.8939846Z\"},\"identity\":{\"principalId\":\"bdffe26d-6146-41f3-a010-b413c4ae14bb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b3hafmfgdje6e4cz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa3a325cd-276e-4b92-8\",\"name\":\"Testa3a325cd-276e-4b92-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T23:35:11.6873742Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:38.6439936Z\"},\"identity\":{\"principalId\":\"df9b6981-a613-4bfd-8c0b-6befa05c8aeb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cmh4hkd3hbdtecby.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test99312e4a-5283-4b4f-9\",\"name\":\"Test99312e4a-5283-4b4f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T02:55:10.6907352Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:01.061706Z\"},\"identity\":{\"principalId\":\"84026cb9-2bc7-44f6-9535-5ba3bd414d22\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gqc3b3d9dtcrejck.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea0405f4-fc15-4804-9\",\"name\":\"Testea0405f4-fc15-4804-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T06:15:11.7914388Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:01.7780035Z\"},\"identity\":{\"principalId\":\"0a3f366a-1924-4c57-889c-47c6e0e1a645\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ceeqbrdngzasb3gt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test57d01c2f-2309-4eaf-9\",\"name\":\"Test57d01c2f-2309-4eaf-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T10:45:12.083484Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:02.5239668Z\"},\"identity\":{\"principalId\":\"64c13767-e12f-4537-8391-d472a05082ca\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hke0hec8czd9asaw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf9d8a5f2-a2e6-40fe-b\",\"name\":\"Testf9d8a5f2-a2e6-40fe-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T14:25:12.9031661Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:03.2141795Z\"},\"identity\":{\"principalId\":\"a819b10e-88c7-4cb4-90a6-dbfe0253cb1d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bfhnbehdbpbragd5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5060aa6f-91bb-4664-9\",\"name\":\"Test5060aa6f-91bb-4664-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T22:45:14.4852819Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:05.4870227Z\"},\"identity\":{\"principalId\":\"11c2b2bc-c186-4916-a09b-18266819e2df\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cta8hkdnaehhb6ep.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcacc3fae-e5bf-4530-9\",\"name\":\"Testcacc3fae-e5bf-4530-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T09:15:14.2287089Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:06.2202225Z\"},\"identity\":{\"principalId\":\"d426f26f-a521-4d41-a045-cd783378e16c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d3gsbmccgpe2fabk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3633c48b-89b3-4406-8\",\"name\":\"Test3633c48b-89b3-4406-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T12:03:59.4224525Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-23T12:03:59.4224525Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a7hdevhmcycsh8cs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test91544ec5-3197-45b4-a\",\"name\":\"Test91544ec5-3197-45b4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T13:35:14.3210489Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:07.2072031Z\"},\"identity\":{\"principalId\":\"7831cc56-7ef4-4ce8-a1b7-fed9b0283197\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a2gua7ezcjb2gygz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testpleus2\",\"name\":\"testpleus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-01T06:38:59.6953715Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-01T06:38:59.6953715Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqdhdmhbdthab7du.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testpleus2/privateEndpointConnections/testpleus2-pe.e75a5e32-6543-4ec9-923d-b198008afbb2\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpleus2-pe\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a238827-6e2d-4496-8\",\"name\":\"Test7a238827-6e2d-4496-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T05:52:32.6163166Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T05:52:32.6163166Z\"},\"identity\":{\"principalId\":\"affee168-6f02-44f3-a3f8-c7a8292d142c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f8e0cjc6g6fcb6cx.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7606a1e1-905d-4b0c-b\",\"name\":\"Test7606a1e1-905d-4b0c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:10:07.4109967Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:10:07.4109967Z\"},\"identity\":{\"principalId\":\"d05def33-e601-48fd-a1a1-876314f1b1eb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fxb6gbhuejcscngc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcca612a4-b8f9-4062-a\",\"name\":\"Testcca612a4-b8f9-4062-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:21:20.3297431Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:21:20.3297431Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h2guhdhyg8h6h0da.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3bb3b22-387c-4665-9\",\"name\":\"Testf3bb3b22-387c-4665-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:31:20.367346Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:31:20.367346Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ckbsd4d3aaa0gmar.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7b6b6a45-cb81-4584-a\",\"name\":\"Test7b6b6a45-cb81-4584-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:38:53.3883786Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:38:53.3883786Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eva6gfdhetczfpft.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa825b64d-c278-4662-9\",\"name\":\"Testa825b64d-c278-4662-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:41:20.7574131Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:41:20.7574131Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hkhebcf4exenbkch.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test39d47bea-ada0-4625-8\",\"name\":\"Test39d47bea-ada0-4625-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:48:52.5953641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:48:52.5953641Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://byecg3cqgqdwcucd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test35886f50-4409-4d8c-b\",\"name\":\"Test35886f50-4409-4d8c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:52:32.9705776Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:52:32.9705776Z\"},\"identity\":{\"principalId\":\"9de84e1a-023a-4c72-9c46-02bab1cb1a7b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://azaah7ewd8czevhr.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9acbc1dc-3c29-495d-9\",\"name\":\"Test9acbc1dc-3c29-495d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:58:51.7648163Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:58:51.7648163Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://crenathdd9dqhbfb.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test333d3d33-d78e-475d-a\",\"name\":\"Test333d3d33-d78e-475d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:01:21.2447245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:01:21.2447245Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bbdgh4ethyhfbkba.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaaaf5fef-ef54-4b58-b\",\"name\":\"Testaaaf5fef-ef54-4b58-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:02:32.8710898Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:02:32.8710898Z\"},\"identity\":{\"principalId\":\"32147ee8-9d84-4320-bcbc-f2d217483ab0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a0g9hpcca0cvh9hu.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdc05c024-5ec2-4e47-9\",\"name\":\"Testdc05c024-5ec2-4e47-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:08:51.6459348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:08:51.6459348Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4hbe9ehe8d2dsh7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6bbc85f2-daed-4c3e-a\",\"name\":\"Test6bbc85f2-daed-4c3e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:11:20.9880638Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:11:20.9880638Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f3dqgzexg5bgaafg.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4c6a9ee-9023-4f58-a\",\"name\":\"Testd4c6a9ee-9023-4f58-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:12:33.973674Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:12:33.973674Z\"},\"identity\":{\"principalId\":\"d6dc4169-9664-4686-869c-a781977e76e1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://add3cqarc5dfh3ek.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1c8fb03-cffe-4d3b-8\",\"name\":\"Teste1c8fb03-cffe-4d3b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:21:21.3138133Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:21:21.3138133Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e9gaaqfva0ejhcbp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb7f12c69-ab20-45cc-a\",\"name\":\"Testb7f12c69-ab20-45cc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:28:52.59113Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:28:52.59113Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://g6f5gqgnh5d3azfg.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf0af8275-b36e-404b-a\",\"name\":\"Testf0af8275-b36e-404b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:31:20.577251Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:31:20.577251Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc60001bf-59e2-44da-8\",\"name\":\"Testc60001bf-59e2-44da-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:32:32.8926146Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:32:32.8926146Z\"},\"identity\":{\"principalId\":\"6e6234c2-f52d-4a5a-a467-ab50a9f7dea6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://crawg5gzafgne4ct.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test917a6607-34e1-4504-8\",\"name\":\"Test917a6607-34e1-4504-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:38:52.4924081Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:38:52.4924081Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e6b6c4ecdrgdaycj.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde5239a3-9848-435e-9\",\"name\":\"Testde5239a3-9848-435e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:51:21.6090854Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:51:21.6090854Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a9cbgnacfhcuf0aj.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2f76d8c1-e606-4aa0-9\",\"name\":\"Test2f76d8c1-e606-4aa0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:08:52.5343498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:08:52.5343498Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eedffagyg2b5fscx.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf861c4c6-45e7-4705-9\",\"name\":\"Testf861c4c6-45e7-4705-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:12:33.027495Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:12:33.027495Z\"},\"identity\":{\"principalId\":\"59aa473b-b49a-450a-8f93-4a82ffbc5e42\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hufcd6gdaqhgfjbp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9bd0646-3594-40ad-9\",\"name\":\"Teste9bd0646-3594-40ad-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:21:20.967923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:21:20.967923Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://crgsaee9dmb2f8g7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test77ad27d9-b285-4645-b\",\"name\":\"Test77ad27d9-b285-4645-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:22:33.6184753Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:22:33.6184753Z\"},\"identity\":{\"principalId\":\"1ab7d7ac-d5b3-40da-94a5-0aaf73b5e234\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfb6eqb7encnfjcw.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf288367-c5e9-42a9-9\",\"name\":\"Testbf288367-c5e9-42a9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:42:33.867541Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:42:33.867541Z\"},\"identity\":{\"principalId\":\"bd57709f-80f2-4084-9eca-c40a441055ad\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://cwdyg9ewc2ehgqdc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test403e02f9-aad8-4c29-a\",\"name\":\"Test403e02f9-aad8-4c29-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:12:34.1020629Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:12:34.1020629Z\"},\"identity\":{\"principalId\":\"c136cdff-faa6-4142-b418-98d7f73783f4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fyh0dghwcufrckd7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd2e5c89f-aca2-4ad3-8\",\"name\":\"Testd2e5c89f-aca2-4ad3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:21:22.8481879Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:21:22.8481879Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://ghdgaycteadaeshn.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea3b2f2c-dbf4-4c35-8\",\"name\":\"Testea3b2f2c-dbf4-4c35-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:11:21.7332385Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:11:21.7332385Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b7dmcgbva7h8dphw.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test83a231ca-ab94-4079-b\",\"name\":\"Test83a231ca-ab94-4079-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T18:42:37.4122264Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T18:42:37.4122264Z\"},\"identity\":{\"principalId\":\"b74e64a9-ae66-4211-ac6a-f78b419aa85c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c8ebhughecajcnfa.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test55be8efc-3cef-458a-a\",\"name\":\"Test55be8efc-3cef-458a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T19:01:24.4218521Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T19:01:24.4218521Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"publicNetworkAccess\":\"Enabled\",\"serviceUrl\":\"https://gug6c3b3cja3ang9.api.eus2001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemo\",\"name\":\"deiddemo\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-29T14:59:09.2833612Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T14:06:00.1344203Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4fzdeh9h2bkbphy.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/pedeid\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemo/privateEndpointConnections/pedeid.dd94e33d-9a4d-417b-b321-16878cd1b816\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2-pl\",\"name\":\"syntheticseus2-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T11:23:55.4578505Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:23:55.4578505Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adcxf8grb0fsehgv.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2-pl/privateEndpointConnections/pe-syntheticseus2-pl.9f6cefb9-7c29-4a1a-bfe2-c6f9b45a8958\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticseus2-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemopl\",\"name\":\"deiddemopl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T14:06:54.3350826Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T14:13:25.7051097Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h5dyh3d6dfazbgbe.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testnew1\",\"name\":\"testnew1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T15:15:58.8797652Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T15:26:23.7886016Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4cyfpe8gaguf2fc.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid1010\",\"name\":\"testdeid1010\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T16:38:20.6279051Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T16:54:43.8855843Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7d4hneycjd3fxc4.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/testdeidpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid1010/privateEndpointConnections/testdeidpl.975be0eb-b434-4f9a-adc4-9da4211b22a5\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d820961-6742-4bca-8\",\"name\":\"Test5d820961-6742-4bca-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-12T10:35:28.8213204Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-12T10:35:28.8213204Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f6g2h3cqa4gwcng2.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService2\",\"name\":\"azpwshDeidService2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T00:01:06.069132Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T05:46:45.1524668Z\"},\"identity\":{\"principalId\":\"1185f660-6621-4417-b51b-5ca4dc9e5fb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4cag7feawaubgbv.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService\",\"name\":\"myHealthDeidService\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T05:26:15.4607741Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T18:56:12.1361396Z\"},\"identity\":{\"principalId\":\"efab95dd-6969-4c43-bd96-4126dc372bfa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8bxaqamerbxd9a3.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:48:23.0398549Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"name\":\"qv4mlb\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:49:55.5396861Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:49:55.5396861Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://csepa9hngpaqfgaq.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"name\":\"9nbgfp\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:51:28.3911208Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:51:28.3911208Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bfcjhrceffcaeyby.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2\",\"name\":\"syntheticseus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:55:33.1324351Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:23:31.958195Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://acacfme2a4h6h0dp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eastus2\",\"name\":\"plval0809eastus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:39:21.8715941Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:39:21.8715941Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hphrenced8dweqf3.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eastus2/privateEndpointConnections/pl-eus2.a9aa0d96-3c8e-45bc-900a-7ef1da6280e0\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-eus2\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/deid0808v1\",\"name\":\"deid0808v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-01T18:36:16.9529026Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-01T18:36:16.9529026Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deid0808v1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1234\",\"name\":\"test1234\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-05T14:18:26.977372Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-05T14:18:26.977372Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1234.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/acs-test-jelinga/providers/Microsoft.HealthDataAIServices/DeidServices/jeltest1\",\"name\":\"jeltest1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"jelinga@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-06T17:35:23.2544311Z\",\"lastModifiedBy\":\"jelinga@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-06T17:35:23.2544311Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://jeltest1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testing\",\"name\":\"testing\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T19:32:32.3182808Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T19:32:32.3182808Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testing.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testwus2\",\"name\":\"testwus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T20:40:09.8352514Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T20:40:09.8352514Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testwus2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2\",\"name\":\"syntheticswus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T17:01:59.8699199Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T12:23:59.4845851Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9b5eaetb4ded8g2.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwus2pltest\",\"name\":\"deidwus2pltest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-08T21:51:51.3282527Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T23:49:24.9683938Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a5czemgacnf6dmg4.api.wus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/deidwus2pltest/privateEndpointConnections/testpl.becb48c9-d25b-4b42-9bb6-1595592be238\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testplwus2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwus2pltest/privateEndpointConnections/testplwus2.4f763525-af2f-4457-9109-2c55402a9c6d\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809westus2\",\"name\":\"plval0809westus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:40:46.5060336Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:40:46.5060336Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ddekf6b7h2h6hsgr.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809westus2/privateEndpointConnections/pewus2.0e2bf50a-b519-4a0e-9e1d-7c058a3b9b44\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pewus2\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf5ec6c2-28ab-4c5a-a\",\"name\":\"Testbf5ec6c2-28ab-4c5a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-02T01:53:40.3484055Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-02T01:53:40.3484055Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hmb4crh3ached4dv.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/SurrogationEvaluation\",\"name\":\"SurrogationEvaluation\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-20T00:23:08.2211657Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-20T00:23:08.2211657Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g4cpgmhehnc7gjh6.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test36b129dc-998b-4906-a\",\"name\":\"Test36b129dc-998b-4906-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:17:18.3194741Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:17:18.3194741Z\"},\"identity\":{\"principalId\":\"cded9449-05df-42cf-9257-119ceb611cf4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e8gjbscaffarewbs.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfac44423-d1b5-4803-a\",\"name\":\"Testfac44423-d1b5-4803-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:36:03.5111718Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:36:03.5111718Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dnf0emb0hkhwajey.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdcaa7561-a42b-4e98-9\",\"name\":\"Testdcaa7561-a42b-4e98-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:38:24.7013615Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:38:24.7013615Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cqh8gfbkbdc3c8bv.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd9909ef5-4fd7-42a1-9\",\"name\":\"Testd9909ef5-4fd7-42a1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:39:39.4185713Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:39:39.4185713Z\"},\"identity\":{\"principalId\":\"33a1d02c-b99e-4aeb-ab9a-df83df95ff57\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dgd7gqfxdaasetfb.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4291045e-4527-4836-8\",\"name\":\"Test4291045e-4527-4836-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:48:23.6745275Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:48:23.6745275Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://angvd3e6gndgdbc8.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6ef1d88b-8d0e-4375-a\",\"name\":\"Test6ef1d88b-8d0e-4375-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:49:39.6414876Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:49:39.6414876Z\"},\"identity\":{\"principalId\":\"cc21a847-f146-454e-be9c-9260e8977330\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hac7g5a4fkaab8bs.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test55bd2f0c-9e17-4558-9\",\"name\":\"Test55bd2f0c-9e17-4558-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:06:04.3485395Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:06:04.3485395Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hybuaxahhudjc0aw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5a5c16bc-ec62-443f-8\",\"name\":\"Test5a5c16bc-ec62-443f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:08:24.5208047Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:08:24.5208047Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gjamehdmccgcftbe.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa160d233-592e-4d08-8\",\"name\":\"Testa160d233-592e-4d08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:17:18.0309089Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:17:18.0309089Z\"},\"identity\":{\"principalId\":\"829edba6-5590-4e74-b1bd-6aaac07a8bee\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dncbhyatb5c9cnfb.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdf830dd3-3716-4d7e-a\",\"name\":\"Testdf830dd3-3716-4d7e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:18:24.1497699Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:18:24.1497699Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bvenfufhdzbfd7df.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test536584e5-fcd7-4877-a\",\"name\":\"Test536584e5-fcd7-4877-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:27:19.1482143Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:27:19.1482143Z\"},\"identity\":{\"principalId\":\"0b9fc245-a89c-4604-9842-f204bdfd9cb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a8hgcygbdphwd3ff.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test73e9ef3a-3d41-4066-8\",\"name\":\"Test73e9ef3a-3d41-4066-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:29:39.5433918Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:29:39.5433918Z\"},\"identity\":{\"principalId\":\"06f69a4a-81ab-4c17-bd53-e86616eb65df\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://are4bna2abazczfu.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f2d7905-3532-45fd-9\",\"name\":\"Test7f2d7905-3532-45fd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:36:04.1258754Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:36:04.1258754Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eqcne5dkc3aqexgk.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test624145e5-acfa-4dc1-a\",\"name\":\"Test624145e5-acfa-4dc1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:38:24.7118392Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:38:24.7118392Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bfcghcgbbuf6bec5.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc171c4c5-35bd-462c-9\",\"name\":\"Testc171c4c5-35bd-462c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:46:03.4772408Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:46:03.4772408Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dnbteha3d5bsceck.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcff71431-5673-4d08-9\",\"name\":\"Testcff71431-5673-4d08-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:47:18.8657333Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:47:18.8657333Z\"},\"identity\":{\"principalId\":\"4224fac9-a7b4-4b37-bcf4-8221f82815ce\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d6fgcahnheccd4b7.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test256acb69-630c-4d44-b\",\"name\":\"Test256acb69-630c-4d44-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:56:03.9963176Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:56:03.9963176Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://e6a3c9eyc4c0gtbw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fe8493d-1144-4f66-8\",\"name\":\"Test5fe8493d-1144-4f66-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:57:18.6911923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:57:18.6911923Z\"},\"identity\":{\"principalId\":\"d97a598d-afe4-4488-98d2-828d0428e14e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fdfaeuf0c8dmgcek.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste669edcf-6036-4acd-9\",\"name\":\"Teste669edcf-6036-4acd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:59:39.4011211Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:59:39.4011211Z\"},\"identity\":{\"principalId\":\"5675b15d-6160-4c64-8c99-a2a41498d572\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4dfd0b2haduedee.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test771d44f5-8697-4f7f-8\",\"name\":\"Test771d44f5-8697-4f7f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:07:18.5389813Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:07:18.5389813Z\"},\"identity\":{\"principalId\":\"2ad513ea-bb34-423a-9a6f-11604ce9cd8b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fta0f0bee9achmga.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test68d2f5db-be6d-455e-8\",\"name\":\"Test68d2f5db-be6d-455e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:17:20.0477674Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:17:20.0477674Z\"},\"identity\":{\"principalId\":\"25ffe56d-762b-4e3a-81d3-f1e573719575\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gda6d6fffmh5evdf.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc100f616-a532-4b16-9\",\"name\":\"Testc100f616-a532-4b16-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:18:24.543296Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:18:24.543296Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hwech0gmfthwhnfe.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa9299dc-0e5a-4523-8\",\"name\":\"Testfa9299dc-0e5a-4523-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:38:24.5783436Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:38:24.5783436Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://acfzhkacepgxbvcc.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcb520941-f24d-4ba0-a\",\"name\":\"Testcb520941-f24d-4ba0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:48:24.4358381Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:48:24.4358381Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hcgzcua5fwcfbkfc.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test0315c35e-b890-4131-b\",\"name\":\"Test0315c35e-b890-4131-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:58:24.493337Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:58:24.493337Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e2dvgfggevg3cmbq.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c1072f2-e8f5-4a88-8\",\"name\":\"Test4c1072f2-e8f5-4a88-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:59:40.407495Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:59:40.407495Z\"},\"identity\":{\"principalId\":\"4ee4df82-1686-4274-be13-d4c812fdcdf6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gdd4g2c8hcerggg7.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test90624075-28a0-4403-9\",\"name\":\"Test90624075-28a0-4403-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:48:26.0857525Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:48:26.0857525Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hhhdgrbte7djcwfw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test97d3f18b-35a1-4d88-9\",\"name\":\"Test97d3f18b-35a1-4d88-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:08:25.4729145Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:08:25.4729145Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dbhmhwf8e3bxhkda.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf7b5c1f1-8d28-401b-8\",\"name\":\"Testf7b5c1f1-8d28-401b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:59:41.3246256Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:59:41.3246256Z\"},\"identity\":{\"principalId\":\"63080029-d803-41a8-8b17-fc5f4628733f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://esb9gyc6b6bggkab.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ccbdf7b-6386-497d-9\",\"name\":\"Test5ccbdf7b-6386-497d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T18:48:29.4451958Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T18:48:29.4451958Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gyaaa9ccewbufbdr.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9c2aee80-9f8c-4e02-9\",\"name\":\"Test9c2aee80-9f8c-4e02-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-01T05:10:37.8467255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-01T05:10:37.8467255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hdb5aadkgcdnbhca.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2-pl\",\"name\":\"syntheticswus2-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"West US 2\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T12:24:16.9151724Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T12:24:16.9151724Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a7e3gqa5aphna7gj.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2-pl/privateEndpointConnections/pe-syntheticswus2-pl.902e448d-d4f9-407d-84dd-43dfd39ea931\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticswus2-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdrwus2\",\"name\":\"cchaobcdrwus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T23:31:26.2023911Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T00:24:14.4086951Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huf7dhadcnfkcder.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr-01/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdrwus201\",\"name\":\"cchaobcdrwus201\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-03T18:30:18.1995159Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T18:51:33.2139805Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hxh6gjdpdqd0h8ht.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test87a60ffd-1515-4d9d-9\",\"name\":\"Test87a60ffd-1515-4d9d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T17:56:29.1915531Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T17:56:29.1915531Z\"},\"identity\":{\"principalId\":\"a9e462a7-c9a3-4098-b684-a6ec5d720e33\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3gwhvfbejewbaey.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdb56e032-8366-4ab0-9\",\"name\":\"Testdb56e032-8366-4ab0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:06:12.9109253Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:06:12.9109253Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h2cmh0bzhtceb5g8.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e62d26f-d3c9-4a5f-b\",\"name\":\"Test5e62d26f-d3c9-4a5f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:11:19.6377483Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:11:19.6377483Z\"},\"identity\":{\"principalId\":\"d02f320a-9e35-4bf6-9f83-3f58fccd0bd9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b5byb3fsagazdtdr.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd3471136-2a74-49d9-8\",\"name\":\"Testd3471136-2a74-49d9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:20:03.5304574Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:20:03.5304574Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fuhea2bnh5facfg9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test979861da-4a10-45c9-a\",\"name\":\"Test979861da-4a10-45c9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:37:29.2072828Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:37:29.2072828Z\"},\"identity\":{\"principalId\":\"114172e0-db70-4371-9439-e93aaa97fdf3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://afhmdze3b8fca3a3.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Tested2e1ea5-f21f-4765-a\",\"name\":\"Tested2e1ea5-f21f-4765-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:46:13.0992052Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:46:13.0992052Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c5a9c7b4gffga2dj.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb58a1f89-fa7b-4f78-9\",\"name\":\"Testb58a1f89-fa7b-4f78-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:56:12.6778103Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:56:12.6778103Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://brd2bwafeth9a6fe.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7afdb4a5-227a-420b-a\",\"name\":\"Test7afdb4a5-227a-420b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:00:04.3892096Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:00:04.3892096Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ddhkgaa2a0fyd5eb.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test36d17348-5ce9-442a-9\",\"name\":\"Test36d17348-5ce9-442a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:07:28.2530398Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:07:28.2530398Z\"},\"identity\":{\"principalId\":\"8f06d417-b86a-492d-8f44-4a68c3ea0f3e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c5bsbjecdud6a4g9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test963e45f8-88ed-48aa-9\",\"name\":\"Test963e45f8-88ed-48aa-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:11:18.9114737Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:11:18.9114737Z\"},\"identity\":{\"principalId\":\"29848f7d-72bf-475a-917f-3d5918d388c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://g7gjbcapg2g2dycg.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fb1df8f-ee79-4954-a\",\"name\":\"Test5fb1df8f-ee79-4954-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:20:04.1374266Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:20:04.1374266Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://erg4gudbd9cvgydy.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4138b447-9f36-4cd6-9\",\"name\":\"Test4138b447-9f36-4cd6-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:21:19.5376965Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:21:19.5376965Z\"},\"identity\":{\"principalId\":\"6f921209-ce71-474b-a035-a8a2e3aae061\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0d3exdqfkb9abe9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test06d60cb1-40fe-4c30-8\",\"name\":\"Test06d60cb1-40fe-4c30-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:36:13.8248579Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:36:13.8248579Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f0dcathpaphscyc2.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3bca3559-91fb-404a-9\",\"name\":\"Test3bca3559-91fb-404a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:37:29.2955986Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:37:29.2955986Z\"},\"identity\":{\"principalId\":\"3d8c4d46-2769-4b99-a014-0a718f583aa3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://b8ctbshzetayd3ft.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9fd01eb7-b73f-4877-9\",\"name\":\"Test9fd01eb7-b73f-4877-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:40:04.0888992Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:40:04.0888992Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fvc9axgcarfnhfhw.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa2b57e59-9c40-4518-8\",\"name\":\"Testa2b57e59-9c40-4518-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:41:18.9983689Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:41:18.9983689Z\"},\"identity\":{\"principalId\":\"c7d574b1-0e0d-46fd-99c4-24a9cec4bbf4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fecjdxe6ara9hnd6.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc2e708c7-f442-4524-b\",\"name\":\"Testc2e708c7-f442-4524-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:46:13.5523727Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:46:13.5523727Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpfyasdmg9h2dkaq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd3885190-6372-4d11-b\",\"name\":\"Testd3885190-6372-4d11-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:47:29.5420829Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:47:29.5420829Z\"},\"identity\":{\"principalId\":\"332b92cd-d20d-45e6-854e-7a4dc2163d01\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://achmguevddg4d3fb.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa9d8a749-101b-4830-9\",\"name\":\"Testa9d8a749-101b-4830-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:50:04.1460196Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:50:04.1460196Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gzg3b3bkf2fafcgz.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test81afdc34-0624-43d8-b\",\"name\":\"Test81afdc34-0624-43d8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:51:19.7435069Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:51:19.7435069Z\"},\"identity\":{\"principalId\":\"7781e2b0-117e-464e-ac50-ab50801ddd13\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ezcdfwcnf2b8gkgy.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a2de449-b8bb-4f5d-9\",\"name\":\"Test7a2de449-b8bb-4f5d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:00:04.1448641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:00:04.1448641Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dua4ftbnghe5hccx.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3b3deeec-2bd1-4338-9\",\"name\":\"Test3b3deeec-2bd1-4338-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:01:19.156135Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:01:19.156135Z\"},\"identity\":{\"principalId\":\"1a05e0a1-5420-4c6d-bfcd-b5c34b9cc3e3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dbgtfbdqbmachcfp.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d3f5139-899c-4ad8-b\",\"name\":\"Test6d3f5139-899c-4ad8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:06:14.3521856Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:06:14.3521856Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gyajfshhepg5fda9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb66a51f0-2f5f-4f7d-b\",\"name\":\"Testb66a51f0-2f5f-4f7d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:31:19.5013391Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:31:19.5013391Z\"},\"identity\":{\"principalId\":\"9fd977d6-ae79-45fe-8b0e-6949377f06de\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://befdcneggka9azby.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd342b3ce-0618-4a94-a\",\"name\":\"Testd342b3ce-0618-4a94-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:46:14.7890365Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:46:14.7890365Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://d4g3byczgweue9cv.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff6faf74-32f3-40d9-9\",\"name\":\"Testff6faf74-32f3-40d9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:41:21.3401212Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:41:21.3401212Z\"},\"identity\":{\"principalId\":\"d4b736b1-980e-4610-97a5-f82d88dd96b1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dsbsgscjecd3dpck.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb90b744-f99a-414f-9\",\"name\":\"Testfb90b744-f99a-414f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T20:20:10.9313978Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T20:20:10.9313978Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bcf6d3hwgacsh0cq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3-pl\",\"name\":\"syntheticswus3-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"West US 3\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T13:53:11.6681304Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T13:53:11.6681304Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ehckb3ascab6atck.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3-pl/privateEndpointConnections/pe-syntheticswus3-pl.e37e9c53-5e6b-4d0d-9710-c9369dacd752\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticswus3-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test0d18c1c4-0e0e-4421-9\",\"name\":\"Test0d18c1c4-0e0e-4421-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-18T01:02:26.4437619Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-18T01:02:26.4437619Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cddheze2fbfge3d7.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa51c0868-e25e-4d1f-9\",\"name\":\"Testa51c0868-e25e-4d1f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-21T20:52:50.2795544Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-21T20:52:50.2795544Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dyatbaffc3eydjcq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testae94fdea-b480-4d08-a\",\"name\":\"Testae94fdea-b480-4d08-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-21T20:52:50.2648591Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-21T20:52:50.2648591Z\"},\"identity\":{\"principalId\":\"955f4f1b-b786-447e-9185-852cd3503594\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bddgg2g6b7hfefeq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3\",\"name\":\"syntheticswus3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:04:34.2050842Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T13:52:47.5867912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkckd4ebcgbmgddm.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809westus3\",\"name\":\"plval0809westus3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:41:35.2370207Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:41:35.2370207Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8h8g5dgead8fafn.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809westus3/privateEndpointConnections/pewus3.c4731e71-797c-445a-942d-2a54ab0f9059\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pewus3\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa64e0ba-6a8b-4210-b\",\"name\":\"Testfa64e0ba-6a8b-4210-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-13T14:58:51.554396Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-04T00:49:24.6575074Z\"},\"identity\":{\"principalId\":\"b6c8a87e-5a3e-4566-8639-e2bf010bdfa0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gmfwdpfcdscbaxg4.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb860af0a-22f8-442c-a\",\"name\":\"Testb860af0a-22f8-442c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-16T16:09:26.8553498Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-04T00:49:25.8089517Z\"},\"identity\":{\"principalId\":\"5f598bf2-d3bc-40ac-87ff-7c99cfa102ff\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://end7hse3d6bxemb0.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test835e6f9e-482b-4126-a\",\"name\":\"Test835e6f9e-482b-4126-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:00:52.8581939Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:00:52.8581939Z\"},\"identity\":{\"principalId\":\"e26205d5-7db9-472d-9e93-8042167d53da\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://djf7ggf9cdfyaxet.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdf17a0d8-5393-47bc-8\",\"name\":\"Testdf17a0d8-5393-47bc-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:13:40.1538332Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:13:40.1538332Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://axd0b4e9exapfkdj.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test64ddb767-0544-4d0e-b\",\"name\":\"Test64ddb767-0544-4d0e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:14:55.515111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:14:55.515111Z\"},\"identity\":{\"principalId\":\"12dcfc5f-550c-42f7-8655-731601f1c872\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c2epb3a9cvgzc2dz.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdbb96996-4064-4b2c-b\",\"name\":\"Testdbb96996-4064-4b2c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:20:52.855045Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:20:52.855045Z\"},\"identity\":{\"principalId\":\"8ec6bafe-4f3d-4e0b-8ad7-1dd911952e79\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e3hpb5h3emfscsav.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test87067302-e75f-412b-a\",\"name\":\"Test87067302-e75f-412b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:30:53.137443Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:30:53.137443Z\"},\"identity\":{\"principalId\":\"e234a940-2c5b-48bb-bd76-046d2f5bf162\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cngrhee2ddeqb7d6.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6079f216-75ad-4807-8\",\"name\":\"Test6079f216-75ad-4807-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:34:55.2619318Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:34:55.2619318Z\"},\"identity\":{\"principalId\":\"40c21f10-09cc-436c-b8fb-bf5b6cbde257\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gxawccgqedefd5bz.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test98b66745-fa73-42ae-8\",\"name\":\"Test98b66745-fa73-42ae-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:49:38.5842804Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:49:38.5842804Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d6etc4e9fkg9c6bt.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd87ed11b-f543-47f4-a\",\"name\":\"Testd87ed11b-f543-47f4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:54:54.9133622Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:54:54.9133622Z\"},\"identity\":{\"principalId\":\"f483e661-4f30-4f0b-a239-c07e866d1c06\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c7b6dkdthng0ffe0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf962794b-b861-48b8-a\",\"name\":\"Testf962794b-b861-48b8-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:00:53.1913114Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:00:53.1913114Z\"},\"identity\":{\"principalId\":\"8c8774d0-afec-42cb-b15e-c9751b327c95\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3auawambdcndgab.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4c7d4f6-1b17-4919-9\",\"name\":\"Testd4c7d4f6-1b17-4919-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:03:40.031421Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:03:40.031421Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adapeadeh4fhbbe3.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde2bb4c7-d950-4156-b\",\"name\":\"Testde2bb4c7-d950-4156-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:04:55.4828172Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:04:55.4828172Z\"},\"identity\":{\"principalId\":\"70dc411b-2da7-4b2a-b672-ec14c4dcdb58\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://erabddfdbqdphtcq.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2f3ef70d-bbd8-4547-b\",\"name\":\"Test2f3ef70d-bbd8-4547-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:10:53.3178724Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:10:53.3178724Z\"},\"identity\":{\"principalId\":\"54cde060-817f-480c-b5b8-f735a6c98d27\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3bvcjede0c0eje8.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test62b5305e-0158-41d2-8\",\"name\":\"Test62b5305e-0158-41d2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:13:40.0241864Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:13:40.0241864Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bvapashwgeerg3ad.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testba61348d-39b0-4458-b\",\"name\":\"Testba61348d-39b0-4458-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:20:52.8874317Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:20:52.8874317Z\"},\"identity\":{\"principalId\":\"916a0fec-134a-49c8-99e8-656570d19d32\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://geb8fmegauahasex.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7c1eb0f1-5cf4-4b2b-8\",\"name\":\"Test7c1eb0f1-5cf4-4b2b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:23:39.4653136Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:23:39.4653136Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://evd4b5h5b9h9d4g7.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste66688e5-30ad-4da0-8\",\"name\":\"Teste66688e5-30ad-4da0-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:29:37.9191976Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:29:37.9191976Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gfbhh9gjfza0cmb0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test388ef07d-ebba-4cbb-9\",\"name\":\"Test388ef07d-ebba-4cbb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:30:53.3380706Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:30:53.3380706Z\"},\"identity\":{\"principalId\":\"f9901763-b133-48fd-9971-57a9fe1990fa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hug3daccfvchhjej.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2489dec-8eb2-487e-b\",\"name\":\"Teste2489dec-8eb2-487e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:34:56.0937298Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:34:56.0937298Z\"},\"identity\":{\"principalId\":\"e756ec96-5c3f-4aca-b504-bbe39d02401c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hpchd2cvb6aafgfm.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf930485f-a694-4f71-9\",\"name\":\"Testf930485f-a694-4f71-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:39:38.5278598Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:39:38.5278598Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5fsfme2ede6hafr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53b65792-50fb-47b0-9\",\"name\":\"Test53b65792-50fb-47b0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:49:38.5256918Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:49:38.5256918Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gha7d2gje8gzfzca.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3b6bac20-f252-4b90-8\",\"name\":\"Test3b6bac20-f252-4b90-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:53:40.387144Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:53:40.387144Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a9g7aagjcrc6bye8.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd68b15cf-11dd-4fb6-a\",\"name\":\"Testd68b15cf-11dd-4fb6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:54:56.9183271Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:54:56.9183271Z\"},\"identity\":{\"principalId\":\"c12e2bea-3dfc-4261-aa49-3349944720f4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://chfxh9g2h6hch9eh.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6b99468d-dfab-4506-8\",\"name\":\"Test6b99468d-dfab-4506-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:59:37.8801423Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:59:37.8801423Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dyg4aeb4bfbka8f5.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test56d2ded4-38ef-4399-8\",\"name\":\"Test56d2ded4-38ef-4399-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:04:56.2874705Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:04:56.2874705Z\"},\"identity\":{\"principalId\":\"a05fbbb2-41e6-468e-bfa4-90b07108d44a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d8c4dth7fqcubucd.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfdb6bf0b-cee6-4962-8\",\"name\":\"Testfdb6bf0b-cee6-4962-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:09:38.541977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:09:38.541977Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://cpfqf5gpcpc5g0gb.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde617916-0f51-4953-a\",\"name\":\"Testde617916-0f51-4953-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:19:39.2824636Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:19:39.2824636Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bhhfevb7bzeqc0ap.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff4b7b89-5ebc-4fa4-a\",\"name\":\"Testff4b7b89-5ebc-4fa4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:20:53.2834288Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:20:53.2834288Z\"},\"identity\":{\"principalId\":\"46a5e6ca-9620-4cfa-b75d-3da7f4aaa9fa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b2f2erbfd8agchfh.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e979e6a-6f32-4ea2-b\",\"name\":\"Test5e979e6a-6f32-4ea2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:49:37.8357616Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:49:37.8357616Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d8cbf2dnheb6fuek.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb5148255-04b2-40e7-b\",\"name\":\"Testb5148255-04b2-40e7-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:59:38.54155Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:59:38.54155Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fdgrd6hscyhmb9cg.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3ff5ca4-b08e-4c7d-9\",\"name\":\"Testf3ff5ca4-b08e-4c7d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:40:53.4438821Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:40:53.4438821Z\"},\"identity\":{\"principalId\":\"9ef2437c-88af-4fc1-bdfd-807bb787bc80\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://duavc4dpaegra0gj.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2f2ff72-6b64-4f93-8\",\"name\":\"Teste2f2ff72-6b64-4f93-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:43:40.6249534Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:43:40.6249534Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://avemb2d5hnhmd9bb.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2fbf6574-c44d-4f1c-8\",\"name\":\"Test2fbf6574-c44d-4f1c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:44:56.527973Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:44:56.527973Z\"},\"identity\":{\"principalId\":\"240fedc2-4b7a-4f13-ba9d-480fdbd3a295\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fxbvhsamcvhthgc2.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0ad5360-2b93-4652-b\",\"name\":\"Testb0ad5360-2b93-4652-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:40:54.1467031Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:40:54.1467031Z\"},\"identity\":{\"principalId\":\"5feda2fe-9e96-4b0b-aa4e-7b5a21efbcaa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ghftcybbaefhfwep.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test894b7ab4-49ac-4f0a-9\",\"name\":\"Test894b7ab4-49ac-4f0a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:10:54.9420866Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:10:54.9420866Z\"},\"identity\":{\"principalId\":\"fa14ce0c-7b7e-4f8a-931b-5711dfbfa02f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hkh4aea8bpahhng9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4d628f6e-45c2-4334-8\",\"name\":\"Test4d628f6e-45c2-4334-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:20:56.3876235Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:20:56.3876235Z\"},\"identity\":{\"principalId\":\"b762a1f0-82a6-427e-97e6-8b637186af93\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c0fzbgg6e5grdce3.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste85a7926-1e1e-4de1-a\",\"name\":\"Teste85a7926-1e1e-4de1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:30:56.1343757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:30:56.1343757Z\"},\"identity\":{\"principalId\":\"a0da35ad-1636-43df-ad61-5643e62da9a3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e2bmfmdggea3bha0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbbc2a5ee-d452-4b63-8\",\"name\":\"Testbbc2a5ee-d452-4b63-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T16:43:43.1433326Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T16:43:43.1433326Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gqawdge2drbea6dr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa413c93e-30f9-4a96-8\",\"name\":\"Testa413c93e-30f9-4a96-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T17:59:42.0147642Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T17:59:42.0147642Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gmhuf7f2bmfxg4h9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test34f2e583-6e88-4822-9\",\"name\":\"Test34f2e583-6e88-4822-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T19:49:42.4645046Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T19:49:42.4645046Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dac0f9g6cuggdgdu.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus-pl\",\"name\":\"syntheticsscus-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"South Central US\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T21:17:55.1121961Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:17:55.1121961Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://czhdhshwfwchaxgk.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus-pl/privateEndpointConnections/pe-syntheticsscus-pl.b34b2b66-e7a7-420b-a9cd-17ba357a4917\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticsscus-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus\",\"name\":\"syntheticsscus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:06:27.9308928Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:17:38.3043211Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b3dchyfbd9c5f7d9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809scus\",\"name\":\"plval0809scus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:42:27.6946016Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-06T05:59:41.3984427Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f8ajedhjefaef7et.api.scus001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-scus\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809scus/privateEndpointConnections/pl-scus.9d739708-ca0b-4377-b992-aa12a78a59e4\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchao1214cac\",\"name\":\"testcchao1214cac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-14T22:15:16.7509833Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-14T22:15:16.7509833Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchao1214cac.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac\",\"name\":\"syntheticscac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T19:46:51.7616163Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:21:41.4155723Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticscac.api.cac001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscac\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac/privateEndpointConnections/pe-syntheticscac.350ccd7c-2652-4c8e-8da4-ac955a9da7ae\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/cac001test\",\"name\":\"cac001test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T20:40:25.9724565Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-21T20:40:25.9724565Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cac001test.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/testcchao1214\",\"name\":\"testcchao1214\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-14T20:34:56.1958631Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-14T20:34:56.1958631Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchao1214.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe141ff5-16a5-4d1a-8\",\"name\":\"Testbe141ff5-16a5-4d1a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:48:23.7560316Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:48:23.7560316Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbe141ff5-16a5-4d1a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb812004a-e516-47d7-9\",\"name\":\"Testb812004a-e516-47d7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T05:58:52.4766857Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T05:58:52.4766857Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb812004a-e516-47d7-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testee94f615-81d5-4516-b\",\"name\":\"Testee94f615-81d5-4516-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:08:23.3555244Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:08:23.3555244Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testee94f615-81d5-4516-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfc5814e5-2798-48b6-a\",\"name\":\"Testfc5814e5-2798-48b6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T08:08:51.8209589Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T08:08:51.8209589Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfc5814e5-2798-48b6-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfd7fbf70-6cbf-4b4a-8\",\"name\":\"Testfd7fbf70-6cbf-4b4a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T12:38:24.31318Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T12:38:24.31318Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfd7fbf70-6cbf-4b4a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadde277e-ccb3-471b-b\",\"name\":\"Testadde277e-ccb3-471b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T16:38:24.5291319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T16:38:24.5291319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testadde277e-ccb3-471b-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc37d9ddb-102f-4a1e-a\",\"name\":\"Testc37d9ddb-102f-4a1e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:58:52.8819245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:58:52.8819245Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc37d9ddb-102f-4a1e-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe524207-9bee-4eeb-8\",\"name\":\"Testbe524207-9bee-4eeb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:48:52.0938714Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:48:52.0938714Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbe524207-9bee-4eeb-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfe40715a-b9b6-438a-9\",\"name\":\"Testfe40715a-b9b6-438a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:38:53.1112198Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:38:53.1112198Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfe40715a-b9b6-438a-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste93d760d-e861-4f8a-b\",\"name\":\"Teste93d760d-e861-4f8a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:48:52.8765576Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:48:52.8765576Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste93d760d-e861-4f8a-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbde92518-4561-4272-b\",\"name\":\"Testbde92518-4561-4272-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T05:48:24.9302907Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T05:48:24.9302907Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbde92518-4561-4272-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9ab90f7-ead2-4a22-a\",\"name\":\"Teste9ab90f7-ead2-4a22-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T08:48:24.8275683Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T08:48:24.8275683Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste9ab90f7-ead2-4a22-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb96faeb2-c7a8-4fb6-8\",\"name\":\"Testb96faeb2-c7a8-4fb6-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T08:48:52.2765884Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T08:48:52.2765884Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb96faeb2-c7a8-4fb6-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb5e1d8f-5a10-4f3d-b\",\"name\":\"Testfb5e1d8f-5a10-4f3d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:08:24.6121269Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:08:24.6121269Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfb5e1d8f-5a10-4f3d-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc37ecb64-bee9-48c4-8\",\"name\":\"Testc37ecb64-bee9-48c4-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:18:53.0484634Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:18:53.0484634Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc37ecb64-bee9-48c4-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea87009e-cd5f-434a-8\",\"name\":\"Testea87009e-cd5f-434a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:28:24.9152706Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:28:24.9152706Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testea87009e-cd5f-434a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste72d78f2-0c81-47e2-9\",\"name\":\"Teste72d78f2-0c81-47e2-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T14:48:53.4841049Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T14:48:53.4841049Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste72d78f2-0c81-47e2-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbec339eb-b20e-4e71-b\",\"name\":\"Testbec339eb-b20e-4e71-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T18:28:25.0354485Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T18:28:25.0354485Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbec339eb-b20e-4e71-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3cad9ac-ca11-4d7f-b\",\"name\":\"Testf3cad9ac-ca11-4d7f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T23:08:24.6260425Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T23:08:24.6260425Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf3cad9ac-ca11-4d7f-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9a0e6f6-8315-4f4e-a\",\"name\":\"Teste9a0e6f6-8315-4f4e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T17:19:54.9641644Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T17:19:54.9641644Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvgzgtcyb0f0bcbr.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/c052301\",\"name\":\"c052301\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-23T21:50:04.9325652Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-23T21:50:04.9325652Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cuh0cya8geb3e5er.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test74a6af4b-e408-4a48-b\",\"name\":\"Test74a6af4b-e408-4a48-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-08T12:24:51.824032Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-08T12:24:51.824032Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://awhcasf8c9defuex.api.cac001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/contoso\",\"name\":\"contoso\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-11T01:15:32.4282974Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-16T01:24:44.0721271Z\"},\"identity\":{\"principalId\":\"bb138c5e-1f10-4af5-8f8c-b5900ee6c028\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d0gufsabftehaafy.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd00ec2e0-d149-486c-8\",\"name\":\"Testd00ec2e0-d149-486c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-14T19:56:59.5837521Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-14T19:56:59.5837521Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hwcaakcmc5b0gqfu.api.cac001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75c4f4f7-e747-40d7-b\",\"name\":\"Test75c4f4f7-e747-40d7-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-23T09:19:32.7259893Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-23T09:19:32.7259893Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hgcxhrf6cvgzgvbk.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoncac\",\"name\":\"jovinsoncac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T00:33:24.6944776Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T18:44:08.4356876Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d0bfayg0ezfnhchn.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7376b54d-00bb-404a-a\",\"name\":\"Test7376b54d-00bb-404a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-10T05:21:32.7798717Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-10T05:21:32.7798717Z\"},\"identity\":{\"principalId\":\"462a8c95-b62b-4eda-9347-fea1340533fc\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac2\",\"name\":\"plval0809cac2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T18:18:27.2675958Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T18:18:27.2675958Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ajgqfsf9a8dgfvbc.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac2/privateEndpointConnections/testcac.b6b70409-687b-4feb-8e1b-9b0c00232a13\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testcac\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cac0813\",\"name\":\"cac0813\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T23:52:55.8307582Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-13T23:52:55.8307582Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8gnakgpd7ghdmd3.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cac0813/privateEndpointConnections/pl-in-wus2-for-cac.063e5043-24ca-487c-ad39-cc26aa507a42\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-in-wus2-for-cac\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac\",\"name\":\"plval0809cac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:43:37.8772867Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T01:29:19.7481984Z\"},\"identity\":{\"principalId\":\"d52e151e-d189-4586-8a21-3c6d6b82608b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoodeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-asmahmoodeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h3bvakc4esfwhudx.api.cac001.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/plval0809cac/privateEndpointConnections/testmove.a9247899-9665-43d8-accb-3b5bd8f51977\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testmove\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test38aa4849-70f1-457f-9\",\"name\":\"Test38aa4849-70f1-457f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-27T04:02:53.1118952Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-27T04:02:53.1118952Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f9fme8cffdgyh8dq.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac-pl\",\"name\":\"syntheticscac-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"Canada Central\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T20:21:54.6470188Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:21:54.6470188Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://guewfrfee0bth4bq.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac-pl/privateEndpointConnections/pe-syntheticscac-pl.fbc886dc-b7a0-4c9d-ad6d-ab497de44e33\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscac-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fc7b202-806d-41fc-a\",\"name\":\"Test5fc7b202-806d-41fc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-21T20:52:59.1012277Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-21T20:52:59.1012277Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"serviceUrl\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks-pl\",\"name\":\"syntheticsuks-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"UK South\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T11:41:59.3973637Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:41:59.3973637Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fwhydne8fdbrfrg7.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks-pl/privateEndpointConnections/pe-syntheticsuks-pl.ae3f666c-dce1-4e29-8dc6-6f7005c4be59\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticsuks-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test50da495d-d139-4adb-9\",\"name\":\"Test50da495d-d139-4adb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-09T15:30:21.7885277Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-09T15:30:21.7885277Z\"},\"identity\":{\"principalId\":\"17cde715-3f38-4979-b34a-9b118e239f5d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcgpfrfbd9a0hrhz.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test10a21a5e-f0f5-4167-a\",\"name\":\"Test10a21a5e-f0f5-4167-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-09T18:19:30.3378838Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-09T18:19:30.3378838Z\"},\"identity\":{\"principalId\":\"9bfce899-2b8e-4c56-aa44-cb7087d29eeb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cmfggnf6ahbedcg3.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6edfe863-0bd7-40d2-b\",\"name\":\"Test6edfe863-0bd7-40d2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-19T00:34:18.8578543Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T00:34:18.8578543Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a2azawg2hxh6bwf7.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeiduks022601\",\"name\":\"testdeiduks022601\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-02-26T03:21:53.3851448Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-02-26T03:21:53.3851448Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeiduks022601.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks\",\"name\":\"syntheticsuks\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-02-26T17:46:58.9333107Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:41:45.7581489Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticsuks.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3d88a515-d60b-4703-a\",\"name\":\"Test3d88a515-d60b-4703-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T00:20:52.4814496Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T00:20:52.4814496Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3d88a515-d60b-4703-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ba1db05-66af-48ba-a\",\"name\":\"Test5ba1db05-66af-48ba-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:09:09.8063221Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:09:09.8063221Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5ba1db05-66af-48ba-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf18e9bc0-59be-4369-a\",\"name\":\"Testf18e9bc0-59be-4369-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:50:52.7531111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:50:52.7531111Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf18e9bc0-59be-4369-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste4c0a9ae-e437-4e53-8\",\"name\":\"Teste4c0a9ae-e437-4e53-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T03:40:52.9722546Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T03:40:52.9722546Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste4c0a9ae-e437-4e53-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92f14301-de10-485d-8\",\"name\":\"Test92f14301-de10-485d-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:19:09.9377812Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:19:09.9377812Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test92f14301-de10-485d-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test67f1b55a-e123-411f-9\",\"name\":\"Test67f1b55a-e123-411f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:40:53.8336883Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:40:53.8336883Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test67f1b55a-e123-411f-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test80fc6be1-06ed-4f72-b\",\"name\":\"Test80fc6be1-06ed-4f72-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:09:10.0735771Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:09:10.0735771Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test80fc6be1-06ed-4f72-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d69a0eb-c729-4a0c-8\",\"name\":\"Test6d69a0eb-c729-4a0c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:10:54.531239Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:10:54.531239Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test6d69a0eb-c729-4a0c-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8e3398a8-6bc2-42c3-9\",\"name\":\"Test8e3398a8-6bc2-42c3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:20:55.315193Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:20:55.315193Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test8e3398a8-6bc2-42c3-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf8b49b46-e5c2-4c94-b\",\"name\":\"Testf8b49b46-e5c2-4c94-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:40:55.2306005Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:40:55.2306005Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf8b49b46-e5c2-4c94-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c8394b6-3dc3-4140-9\",\"name\":\"Test4c8394b6-3dc3-4140-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T08:09:10.5504903Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T08:09:10.5504903Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test4c8394b6-3dc3-4140-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4b02e0b7-6770-433e-b\",\"name\":\"Test4b02e0b7-6770-433e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:19:10.6554416Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:19:10.6554416Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test4b02e0b7-6770-433e-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ec15027-e591-4627-9\",\"name\":\"Test5ec15027-e591-4627-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:20:56.2812694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:20:56.2812694Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5ec15027-e591-4627-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test39c6475a-f8e4-4af6-a\",\"name\":\"Test39c6475a-f8e4-4af6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:50:56.3741348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:50:56.3741348Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test39c6475a-f8e4-4af6-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc8ad4567-533a-4ce8-9\",\"name\":\"Testc8ad4567-533a-4ce8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T13:29:10.5194548Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T13:29:10.5194548Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc8ad4567-533a-4ce8-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa3b87661-7164-420b-a\",\"name\":\"Testa3b87661-7164-420b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T14:29:11.0114811Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T14:29:11.0114811Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testa3b87661-7164-420b-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb1f5a668-d4bf-46c0-a\",\"name\":\"Testb1f5a668-d4bf-46c0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T16:10:58.9386977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T16:10:58.9386977Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb1f5a668-d4bf-46c0-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaf570861-5083-4b08-8\",\"name\":\"Testaf570861-5083-4b08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T17:10:59.5199062Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T17:10:59.5199062Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testaf570861-5083-4b08-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf9809517-bd2a-4a85-a\",\"name\":\"Testf9809517-bd2a-4a85-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T18:21:00.1198972Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T18:21:00.1198972Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf9809517-bd2a-4a85-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testceb3c51e-c97e-4036-a\",\"name\":\"Testceb3c51e-c97e-4036-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T18:51:00.9735653Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T18:51:00.9735653Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testceb3c51e-c97e-4036-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test41e236dc-2118-4148-b\",\"name\":\"Test41e236dc-2118-4148-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T20:19:10.7686625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T20:19:10.7686625Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test41e236dc-2118-4148-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test42c68520-0d29-4fda-9\",\"name\":\"Test42c68520-0d29-4fda-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T20:39:10.6042131Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T20:39:10.6042131Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test42c68520-0d29-4fda-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5f0f9b1b-e3f6-4543-b\",\"name\":\"Test5f0f9b1b-e3f6-4543-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T21:01:01.2975633Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T21:01:01.2975633Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5f0f9b1b-e3f6-4543-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9b9a0260-5400-4dd1-9\",\"name\":\"Test9b9a0260-5400-4dd1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T21:21:00.992689Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T21:21:00.992689Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test9b9a0260-5400-4dd1-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc5af0427-b99b-41bb-8\",\"name\":\"Testc5af0427-b99b-41bb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:29:11.3443757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:29:11.3443757Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc5af0427-b99b-41bb-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcf8556e6-f2a0-4b12-b\",\"name\":\"Testcf8556e6-f2a0-4b12-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:31:01.9937927Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:31:01.9937927Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testcf8556e6-f2a0-4b12-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd6c86137-5f31-4b4f-a\",\"name\":\"Testd6c86137-5f31-4b4f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T23:21:02.5314215Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T23:21:02.5314215Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testd6c86137-5f31-4b4f-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test746d3a9e-cf75-4eab-b\",\"name\":\"Test746d3a9e-cf75-4eab-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:19:10.8767157Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:19:10.8767157Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test746d3a9e-cf75-4eab-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test45a63904-b7fc-41ac-8\",\"name\":\"Test45a63904-b7fc-41ac-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:29:10.9908989Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:29:10.9908989Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test45a63904-b7fc-41ac-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa37ff03f-594e-4639-9\",\"name\":\"Testa37ff03f-594e-4639-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T01:11:03.4663176Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T01:11:03.4663176Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testa37ff03f-594e-4639-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3d03640f-d1d3-46de-9\",\"name\":\"Test3d03640f-d1d3-46de-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:39:10.8625319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:39:10.8625319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3d03640f-d1d3-46de-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test591ad95a-c223-4b08-8\",\"name\":\"Test591ad95a-c223-4b08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:41:04.1150678Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:41:04.1150678Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test591ad95a-c223-4b08-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5dcea7f4-d323-45a9-b\",\"name\":\"Test5dcea7f4-d323-45a9-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T03:29:11.4528903Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T03:29:11.4528903Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5dcea7f4-d323-45a9-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92cfa1b9-9151-4b89-8\",\"name\":\"Test92cfa1b9-9151-4b89-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T04:51:05.074173Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T04:51:05.074173Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test92cfa1b9-9151-4b89-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test95987d55-100c-43d8-8\",\"name\":\"Test95987d55-100c-43d8-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T05:31:05.7753462Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T05:31:05.7753462Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test95987d55-100c-43d8-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste5dfad94-0de5-455c-a\",\"name\":\"Teste5dfad94-0de5-455c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T06:29:11.6867739Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T06:29:11.6867739Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste5dfad94-0de5-455c-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9a4d97b4-d5f3-42e4-a\",\"name\":\"Test9a4d97b4-d5f3-42e4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T07:09:11.8674261Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T07:09:11.8674261Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test9a4d97b4-d5f3-42e4-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc3805fea-9033-4b98-8\",\"name\":\"Testc3805fea-9033-4b98-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:31:07.5462811Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:31:07.5462811Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc3805fea-9033-4b98-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7125cf10-0ac8-4bf9-a\",\"name\":\"Test7125cf10-0ac8-4bf9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:41:08.3309937Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:41:08.3309937Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test7125cf10-0ac8-4bf9-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d26c847-6613-40f2-8\",\"name\":\"Test5d26c847-6613-40f2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:49:11.7472977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:49:11.7472977Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5d26c847-6613-40f2-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3f4bf4b0-ba09-480e-a\",\"name\":\"Test3f4bf4b0-ba09-480e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T13:49:11.9394943Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T13:49:11.9394943Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3f4bf4b0-ba09-480e-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc501e94f-d1e5-41c2-8\",\"name\":\"Testc501e94f-d1e5-41c2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T14:41:08.9028567Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T14:41:08.9028567Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc501e94f-d1e5-41c2-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc76a0899-5149-4990-9\",\"name\":\"Testc76a0899-5149-4990-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-03T09:43:58.6456183Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-03T09:43:58.6456183Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmdea3e3e4fuexd6.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9edb5065-a37f-4251-9\",\"name\":\"Test9edb5065-a37f-4251-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-03T12:03:58.2570665Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-03T12:03:58.2570665Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eaaaaze7hmawb6dz.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test537b661d-5b25-4b05-a\",\"name\":\"Test537b661d-5b25-4b05-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-09T11:35:15.9950351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-09T11:35:15.9950351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ftcyfjasg0cyhuac.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test58fb831b-3206-4d1c-8\",\"name\":\"Test58fb831b-3206-4d1c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-09T13:55:16.6422517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-09T13:55:16.6422517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gpfdghashmfqevgm.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test78efa6a0-01f3-4805-a\",\"name\":\"Test78efa6a0-01f3-4805-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T07:54:14.6339935Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T07:54:14.6339935Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvc8dbhqf7cxd8c9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfcc689cc-63de-4471-8\",\"name\":\"Testfcc689cc-63de-4471-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-15T10:24:17.1738232Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-15T10:24:17.1738232Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d4aycyfehvhbfqcs.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa59884e6-b0f3-4768-9\",\"name\":\"Testa59884e6-b0f3-4768-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-22T15:38:28.3543348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-22T15:38:28.3543348Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b3chdfdqe3dph4he.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.HealthDataAIServices/deidServices/deidService756\",\"name\":\"deidService756\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-29T18:57:54.0556359Z\",\"lastModifiedBy\":\"gthomas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-29T18:57:54.0556359Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dndqcbaxfngdh3be.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.HealthDataAIServices/deidServices/deidService756/privateEndpointConnections/deid-pe-6242.f8d562cf-4796-40df-84a1-e911f4cf8119\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.Network/privateEndpoints/deid-pe-6242\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"SDK test\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6c445d05-8a04-40d1-9\",\"name\":\"Test6c445d05-8a04-40d1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T20:18:08.8233351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T20:18:08.8233351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9fme0cmfycxcyda.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test667df1aa-2ea2-4184-9\",\"name\":\"Test667df1aa-2ea2-4184-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T20:24:41.4000305Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T20:24:41.4000305Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huchfaeuhrhuf3bu.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd42eca40-d463-41f3-9\",\"name\":\"Testd42eca40-d463-41f3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T21:26:50.9377625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T21:26:50.9377625Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bkbvcmbkcraecyfw.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8aa6c493-0cc1-4566-9\",\"name\":\"Test8aa6c493-0cc1-4566-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T22:29:21.7100366Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T19:32:08.0474887Z\"},\"identity\":{\"principalId\":\"0d71e7bd-429f-4c3c-82a6-3852d3b8e3a5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aybnbyavd2ejhzfd.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3e530210-4444-43a1-9\",\"name\":\"Test3e530210-4444-43a1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T10:56:57.0258009Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T10:56:57.0258009Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fwfch8gde3gvbwhz.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa8051ac4-966b-4183-8\",\"name\":\"Testa8051ac4-966b-4183-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T17:13:31.2614966Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T17:13:31.2614966Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://d7cwffedg0d2a5a6.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test40eea777-40b0-4680-b\",\"name\":\"Test40eea777-40b0-4680-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-09T07:53:34.2437985Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-09T07:53:34.2437985Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://byg5frajbxhfdcf6.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809\",\"name\":\"plval0809\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T17:33:06.4759332Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-12T19:22:00.4727578Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d9dfeaajhcafe7aw.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809/privateEndpointConnections/pl-uks.024e1c37-90f0-4d5e-8d16-8801adc29384\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-uks\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809dis2\",\"name\":\"plval0809dis2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:09:47.4289174Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:27:25.7954862Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://avesemfzbecrdjc4.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809dis2/privateEndpointConnections/plval0809dis2-pe.f950a94c-5b4b-4a31-bdee-e459f933aea9\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/plval0809dis2-pe\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsonuks\",\"name\":\"jovinsonuks\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-15T16:09:58.6334969Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-15T16:09:58.6334969Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dhdqagccangwhcdk.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test\",\"name\":\"test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T20:05:42.8384639Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T20:05:42.8384639Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0926v1\",\"name\":\"test0926v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T02:45:59.3438672Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T02:45:59.3438672Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0926v1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0926v2\",\"name\":\"test0926v2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T02:47:31.7472967Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T02:47:31.7472967Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0926v2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0927\",\"name\":\"test0927\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T16:46:05.2162306Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T16:46:05.2162306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0927.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0928\",\"name\":\"test0928\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-28T17:38:42.3842671Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-28T17:38:42.3842671Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0928.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0928v2\",\"name\":\"test0928v2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-28T17:57:11.4511743Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-28T17:57:11.4511743Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0928v2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1002\",\"name\":\"test1002\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-02T13:13:48.4976059Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-02T13:13:48.4976059Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1002.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test123\",\"name\":\"test123\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-03T20:40:59.3297043Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-03T20:40:59.3297043Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test123.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1\",\"name\":\"test1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-26T20:24:59.1914056Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-26T20:25:37.9297376Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchaoeus2euap1207\",\"name\":\"testcchaoeus2euap1207\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-07T21:59:57.2279724Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-07T21:59:57.2279724Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchaoeus2euap1207.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchaoeuap1212\",\"name\":\"testcchaoeuap1212\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-12T18:33:15.9987695Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-12T18:33:15.9987695Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchaoeuap1212.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny\",\"name\":\"syntheticscny\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T19:45:57.5795884Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:16:39.1087058Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticscny.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscny\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny/privateEndpointConnections/pe-syntheticscny.9884c0cc-4d3b-43ae-a149-b37abf040780\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/deid0921\",\"name\":\"deid0921\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-21T22:11:25.2178241Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-21T22:11:25.2178241Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deid0921.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanistesting2024\",\"name\":\"daszanistesting2024\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-03T16:17:22.3144659Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-03T16:17:22.3144659Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanistesting2024.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis202402\",\"name\":\"daszanis202402\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-03T18:11:45.7645355Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-03T18:11:45.7645355Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanis202402.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240404\",\"name\":\"testdeid20240404\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-04T21:33:53.4405002Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-04T21:33:53.4405002Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeid20240404.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240405\",\"name\":\"testdeid20240405\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-05T17:21:33.6289145Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-05T17:21:33.6289145Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeid20240405.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test689709c7-09b1-47ca-8\",\"name\":\"Test689709c7-09b1-47ca-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-12T23:56:49.2787259Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-12T23:56:49.2787259Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test689709c7-09b1-47ca-8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test773f4669-3a29-49fc-a\",\"name\":\"Test773f4669-3a29-49fc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:06:49.801438Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:06:49.801438Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test773f4669-3a29-49fc-a.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb939892-2d36-4af1-b\",\"name\":\"Testfb939892-2d36-4af1-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:55:16.2530902Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:55:16.2530902Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfb939892-2d36-4af1-b.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test636a77c6-bb93-4c48-9\",\"name\":\"Test636a77c6-bb93-4c48-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:56:49.9404785Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:56:49.9404785Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test636a77c6-bb93-4c48-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc469c263-d5cf-48a9-9\",\"name\":\"Testc469c263-d5cf-48a9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:55:16.4535138Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:55:16.4535138Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc469c263-d5cf-48a9-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testeabc36c7-733c-4eb8-a\",\"name\":\"Testeabc36c7-733c-4eb8-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:56:50.448085Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:56:50.448085Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testeabc36c7-733c-4eb8-a.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testec267f69-a8bf-4575-8\",\"name\":\"Testec267f69-a8bf-4575-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:05:17.4033647Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:05:17.4033647Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testec267f69-a8bf-4575-8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test86a1c01e-27ca-4506-9\",\"name\":\"Test86a1c01e-27ca-4506-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-16T18:46:56.1179547Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-16T18:46:56.1179547Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test86a1c01e-27ca-4506-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240416\",\"name\":\"daszanis20240416\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-16T20:36:46.8661158Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-16T20:36:46.8661158Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanis20240416.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/c041601\",\"name\":\"c041601\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-17T00:47:59.1402568Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-15T00:45:17.1793437Z\"},\"identity\":{\"principalId\":\"6e539289-0cfc-471c-9bcb-cbc69a2cee57\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gwfqcrezeqafatg4.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd7b005bb-5337-42a9-8\",\"name\":\"Testd7b005bb-5337-42a9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T00:56:03.5007718Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T00:56:03.5007718Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b5gvggdnd6btcrf4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3abb1b75-72ca-4dc3-9\",\"name\":\"Test3abb1b75-72ca-4dc3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:06:55.6174028Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:06:55.6174028Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://htaacnh7dndrffgt.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbfdd288c-7fea-48ec-9\",\"name\":\"Testbfdd288c-7fea-48ec-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:36:55.8693213Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:36:55.8693213Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g3bra2a4bfbzhwh4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5dcc63e3-df2e-4516-9\",\"name\":\"Test5dcc63e3-df2e-4516-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:46:55.7630063Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:46:55.7630063Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzb4ftfmcqg7cahr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test789c6bc9-679b-46ff-a\",\"name\":\"Test789c6bc9-679b-46ff-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T08:26:06.1766861Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T08:26:06.1766861Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dzc8h7hehfhze6ey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa6980ee4-2421-497e-9\",\"name\":\"Testa6980ee4-2421-497e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T14:26:55.3211498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T14:26:55.3211498Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpfmddfnd6c7d0ff.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53bbe941-ecf8-4e64-8\",\"name\":\"Test53bbe941-ecf8-4e64-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T17:46:12.2182371Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T17:46:12.2182371Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bjfmhzh8anhuacge.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test60cbbac8-cf49-46cd-a\",\"name\":\"Test60cbbac8-cf49-46cd-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T01:16:55.472584Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T01:16:55.472584Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hpe8hrhfd0f0bugm.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9ef5b7ba-12f1-451e-8\",\"name\":\"Test9ef5b7ba-12f1-451e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T05:46:17.5183098Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T05:46:17.5183098Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cxhah8g2ezexa9c3.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test684f4d00-b1d3-418b-b\",\"name\":\"Test684f4d00-b1d3-418b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T06:16:56.4082904Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T06:16:56.4082904Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b2hdb3gtb7edawe4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf66e2fb8-fe37-464c-a\",\"name\":\"Testf66e2fb8-fe37-464c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T12:56:55.427874Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T12:56:55.427874Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dvf0dufdbud8g7ec.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa69c6c6a-1c54-43a7-9\",\"name\":\"Testa69c6c6a-1c54-43a7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T15:26:56.3308432Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T15:26:56.3308432Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hahca8czaahfayeb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/c041801\",\"name\":\"c041801\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-18T19:34:43.4241066Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-18T19:34:43.4241066Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hshae9gwhudke2bd.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0419\",\"name\":\"test0419\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-19T16:55:49.9694669Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-19T16:55:49.9694669Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efhwdwdkdxhzd3cr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0423\",\"name\":\"test0423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T18:48:50.4444369Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cwg6c8hnamdfd2fw.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240423\",\"name\":\"daszanis20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T20:16:50.967515Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T20:16:50.967515Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aygfhrgyf3dddwd4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanisstringtest\",\"name\":\"daszanisstringtest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T20:48:07.9822169Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T20:48:07.9822169Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3eqhthegcbebda8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwithtags20240423\",\"name\":\"deidwithtags20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"test\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T21:25:59.6619497Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T21:26:34.327989Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fhfga7e0fkhgcqc0.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/danitagtest20240423\",\"name\":\"danitagtest20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"NonProd\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T22:19:45.4929556Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T22:19:45.4929556Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dbhmh3anfxgwddey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test774a83ad-b850-4275-a\",\"name\":\"Test774a83ad-b850-4275-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-25T16:07:44.1772498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-25T16:07:44.1772498Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gshxbph2gnh6bect.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240425\",\"name\":\"daszanis20240425\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-25T17:52:29.0785344Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-25T17:52:29.0785344Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hubfd9fxc4btcybf.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6dc7b759-44c6-40bb-a\",\"name\":\"Test6dc7b759-44c6-40bb-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-26T00:37:48.5866059Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-26T00:37:48.5866059Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkg0gmedgtfcaaba.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240430\",\"name\":\"testdeid20240430\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"prod\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-30T22:59:53.7170445Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-30T22:59:53.7170445Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dtbafdemctajayg8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoo-deid/providers/Microsoft.HealthDataAIServices/DeidServices/testresource\",\"name\":\"testresource\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-09T04:00:42.7519139Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-09T04:00:42.7519139Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hzaxc2cmgnh4fpcz.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8c26233c-3784-4c58-9\",\"name\":\"Test8c26233c-3784-4c58-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-13T07:38:19.1922537Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-13T07:38:19.1922537Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a4cwbhcsf4dqcbdb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3cd577fe-ccf5-47bd-9\",\"name\":\"Test3cd577fe-ccf5-47bd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T18:40:35.8341966Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T18:40:35.8341966Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aka6fgfcdcdjgqcp.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadeb2e2d-3427-4166-a\",\"name\":\"Testadeb2e2d-3427-4166-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-15T00:58:27.3004666Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-15T00:58:27.3004666Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bvdtcuagdsbkabcr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test600d8e71-b5c7-414a-b\",\"name\":\"Test600d8e71-b5c7-414a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T17:20:56.3643351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T17:20:56.3643351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gtd0g3d0hpf0cqau.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6a3294b5-2a1e-4504-9\",\"name\":\"Test6a3294b5-2a1e-4504-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T19:20:58.1160517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T19:20:58.1160517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dba6b5hxdwadf7ah.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3845680e-e8ad-45e7-8\",\"name\":\"Test3845680e-e8ad-45e7-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T21:51:33.7943111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T21:51:33.7943111Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c32fecf-8010-484f-a\",\"name\":\"Test4c32fecf-8010-484f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T21:54:45.3278696Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T21:54:45.3278696Z\"},\"identity\":{\"principalId\":\"e8302371-66e9-425c-87bf-3c8f0d76ad47\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfe015d69-5e8e-4db9-9\",\"name\":\"Testfe015d69-5e8e-4db9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T01:11:02.9479853Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T01:11:02.9479853Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://anc8cbgmgzdreuey.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test51eb2ea0-227c-4a00-8\",\"name\":\"Test51eb2ea0-227c-4a00-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T01:28:31.9856996Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T01:28:31.9856996Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fjfkeqgvahfndzeh.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7783075a-2910-462c-b\",\"name\":\"Test7783075a-2910-462c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T02:08:32.7778744Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T02:08:32.7778744Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hgc0ead5htc3e6fp.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3af887a9-3bc4-41cd-8\",\"name\":\"Test3af887a9-3bc4-41cd-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T18:51:11.6799956Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T18:51:11.6799956Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daf7ejf0bnehbjc7.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9c0b39d6-d6aa-475f-9\",\"name\":\"Test9c0b39d6-d6aa-475f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-18T04:28:33.9687313Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-18T04:28:33.9687313Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gxh8acacatddbdcd.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9dbf2336-b2ec-4338-b\",\"name\":\"Test9dbf2336-b2ec-4338-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-22T05:31:32.0845694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-22T05:31:32.0845694Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://chfudxeygvc7dxau.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522\",\"name\":\"daszanis20240522\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T20:49:06.0137785Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T20:49:06.0137785Z\"},\"identity\":{\"principalId\":\"8110cbfe-f3ad-4a49-997b-d4eb60ddee10\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-dogfood/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-prtl-storagedogfood\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cpfbe0buawc9ftcr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste0dc89e3-c33e-4ae3-a\",\"name\":\"Teste0dc89e3-c33e-4ae3-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-22T20:59:13.3299697Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-22T20:59:13.3299697Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fbcadra9e5c8embk.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522test\",\"name\":\"daszanis20240522test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T21:36:43.3944001Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T21:36:43.3944001Z\"},\"identity\":{\"principalId\":\"9b38fc08-1656-443d-8821-d4c7d94ee1f0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-deid-test\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcbjdwagemhfg5an.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522nomi\",\"name\":\"daszanis20240522nomi\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T21:40:05.1624641Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T21:40:42.4963112Z\"},\"identity\":{\"principalId\":\"7feeda4e-c86d-4b99-a042-36c343485c8f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hybhfjg9avchasbw.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf90a630b-a35d-4f9b-a\",\"name\":\"Testf90a630b-a35d-4f9b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-23T18:46:45.7957393Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-23T18:46:45.7957393Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://csh6hza0gdf2d0dj.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testca65b6d3-2a97-48cf-a\",\"name\":\"Testca65b6d3-2a97-48cf-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-23T18:51:40.8224467Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-23T18:51:40.8224467Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://apf5cvckc2dqh2cg.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaab13d0d-8125-49de-9\",\"name\":\"Testaab13d0d-8125-49de-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-26T21:42:21.8688923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-26T21:42:21.8688923Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a9ckf5dddcc7h4fb.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test827e783b-9474-4462-9\",\"name\":\"Test827e783b-9474-4462-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-28T18:50:04.3557874Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-28T18:50:04.3557874Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvdkfqeye2hjgcaq.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdd829060-0f10-41fd-8\",\"name\":\"Testdd829060-0f10-41fd-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T19:41:38.6128968Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T19:41:38.6128968Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf809b7a-8c49-44eb-9\",\"name\":\"Testbf809b7a-8c49-44eb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T20:33:58.7936914Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T20:33:58.7936914Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d161887-93d9-4323-b\",\"name\":\"Test6d161887-93d9-4323-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T21:51:38.5411648Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T21:51:38.5411648Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test891681e9-196d-40ae-9\",\"name\":\"Test891681e9-196d-40ae-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T22:31:38.6737266Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T22:31:38.6737266Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test89d7cdb6-6940-42ed-a\",\"name\":\"Test89d7cdb6-6940-42ed-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T22:51:39.0104824Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T22:51:39.0104824Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb2891ee5-e88b-43ac-8\",\"name\":\"Testb2891ee5-e88b-43ac-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T23:11:39.1197957Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T23:11:39.1197957Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test80079631-0116-43da-9\",\"name\":\"Test80079631-0116-43da-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T23:31:39.090987Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T23:31:39.090987Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6ba2a676-2516-4029-b\",\"name\":\"Test6ba2a676-2516-4029-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T00:03:59.7132209Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T00:03:59.7132209Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4f69f23-cb37-4705-b\",\"name\":\"Testd4f69f23-cb37-4705-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T01:43:59.5879161Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T01:43:59.5879161Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3374b9b3-03d4-4ee3-8\",\"name\":\"Test3374b9b3-03d4-4ee3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:25:15.2694455Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:25:15.2694455Z\"},\"identity\":{\"principalId\":\"2fb528ba-b590-4e27-94e8-39661649c648\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcd109a6d-d21f-4c30-9\",\"name\":\"Testcd109a6d-d21f-4c30-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:31:38.9365402Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:31:38.9365402Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdb7bce88-b82f-4ec7-9\",\"name\":\"Testdb7bce88-b82f-4ec7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:41:39.530014Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:41:39.530014Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test347eea87-86a1-4c6e-8\",\"name\":\"Test347eea87-86a1-4c6e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T03:31:38.9037178Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T03:31:38.9037178Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test753a4b03-f443-4738-8\",\"name\":\"Test753a4b03-f443-4738-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T03:51:39.1294278Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T03:51:39.1294278Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7c255c37-cbb6-455b-9\",\"name\":\"Test7c255c37-cbb6-455b-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T04:22:54.0101005Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T04:22:54.0101005Z\"},\"identity\":{\"principalId\":\"bea96f89-2aae-4568-b0d6-ff627c028de9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4b0c1b40-3c3a-4041-9\",\"name\":\"Test4b0c1b40-3c3a-4041-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T05:14:00.4477353Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T05:14:00.4477353Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe23f1c8-b066-4bfd-b\",\"name\":\"Testbe23f1c8-b066-4bfd-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T05:21:39.3794908Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T05:21:39.3794908Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test533d1087-fa1a-4d48-8\",\"name\":\"Test533d1087-fa1a-4d48-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T06:11:39.0430579Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T06:11:39.0430579Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test31016491-cc34-48ee-8\",\"name\":\"Test31016491-cc34-48ee-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T06:31:39.5467214Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T06:31:39.5467214Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb7034b34-8ba1-44cc-a\",\"name\":\"Testb7034b34-8ba1-44cc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:02:54.7424212Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:02:54.7424212Z\"},\"identity\":{\"principalId\":\"cffe13e0-04d4-4265-aad7-edec13a5c537\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testac380ad3-9242-4958-8\",\"name\":\"Testac380ad3-9242-4958-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:21:39.7639298Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:21:39.7639298Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test71fac46b-5c7f-420d-9\",\"name\":\"Test71fac46b-5c7f-420d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:54:00.6689223Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:54:00.6689223Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0d61a64-d510-4ef9-a\",\"name\":\"Testb0d61a64-d510-4ef9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:11:39.8407325Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:11:39.8407325Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test86c726fa-48a5-4a5a-a\",\"name\":\"Test86c726fa-48a5-4a5a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:24:02.0222694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:24:02.0222694Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5980e2bd-03d4-4565-9\",\"name\":\"Test5980e2bd-03d4-4565-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:51:39.9126155Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:51:39.9126155Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste043c2f4-882f-4552-b\",\"name\":\"Teste043c2f4-882f-4552-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:01:39.6096595Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:01:39.6096595Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75c11604-1975-45f8-9\",\"name\":\"Test75c11604-1975-45f8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:24:01.2383064Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:24:01.2383064Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaa6f6641-9ed9-43be-9\",\"name\":\"Testaa6f6641-9ed9-43be-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:45:16.617112Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:45:16.617112Z\"},\"identity\":{\"principalId\":\"0745d086-db0e-4fb1-95f0-8aebd32ba241\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7198b83b-6b3a-4dc3-8\",\"name\":\"Test7198b83b-6b3a-4dc3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T10:05:16.8085486Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T10:05:16.8085486Z\"},\"identity\":{\"principalId\":\"e03c7b85-3cc7-42b3-9da7-22dfbbfeaada\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4030ec65-8515-4a0d-a\",\"name\":\"Test4030ec65-8515-4a0d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T10:12:54.6732148Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T10:12:54.6732148Z\"},\"identity\":{\"principalId\":\"fa1d7f60-3a49-4b2a-bad8-28375a528cb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcafc9570-2b83-4cce-8\",\"name\":\"Testcafc9570-2b83-4cce-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:01:40.8270471Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:01:40.8270471Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2df465b-b2ac-496d-b\",\"name\":\"Teste2df465b-b2ac-496d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:11:39.8547744Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:11:39.8547744Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test76e0e1c1-d5c5-4938-8\",\"name\":\"Test76e0e1c1-d5c5-4938-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:21:39.6737222Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:21:39.6737222Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf11e191c-b75b-4123-8\",\"name\":\"Testf11e191c-b75b-4123-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T12:54:01.7129779Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T12:54:01.7129779Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc54697fe-46d1-4bb5-a\",\"name\":\"Testc54697fe-46d1-4bb5-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T14:32:54.5977307Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T14:32:54.5977307Z\"},\"identity\":{\"principalId\":\"902b6500-529a-4a15-a5a8-e726a7bb0eb1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf4e0b6d9-697d-4ad6-b\",\"name\":\"Testf4e0b6d9-697d-4ad6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:21:40.1775459Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:21:40.1775459Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdfbed109-a6c5-480a-b\",\"name\":\"Testdfbed109-a6c5-480a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:31:40.9668291Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:31:40.9668291Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb5b31ad2-6791-42b0-9\",\"name\":\"Testb5b31ad2-6791-42b0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:32:55.160759Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:32:55.160759Z\"},\"identity\":{\"principalId\":\"1bbba220-ae0c-4bfd-952c-f941a0937249\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcc3925b2-3a24-4ce5-8\",\"name\":\"Testcc3925b2-3a24-4ce5-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T16:24:02.9486206Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T16:24:02.9486206Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc2e2ef11-b48e-4722-a\",\"name\":\"Testc2e2ef11-b48e-4722-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T18:12:55.747161Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T18:12:55.747161Z\"},\"identity\":{\"principalId\":\"d21101cd-e5c4-4d45-98d9-8846b3d99eab\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf93ad24-0371-4edc-a\",\"name\":\"Testbf93ad24-0371-4edc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T18:21:40.4476683Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T18:21:40.4476683Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf04bf269-e865-4f9f-8\",\"name\":\"Testf04bf269-e865-4f9f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T19:05:18.7879983Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T19:05:18.7879983Z\"},\"identity\":{\"principalId\":\"6a131146-4e94-453b-abcb-2bc7c24e5f37\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaa56ce54-d5e3-49a4-a\",\"name\":\"Testaa56ce54-d5e3-49a4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T20:32:55.8138899Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T20:32:55.8138899Z\"},\"identity\":{\"principalId\":\"5b0586b9-fe11-4d77-ab7a-84e05ea69656\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfde27719-7f42-4eb3-9\",\"name\":\"Testfde27719-7f42-4eb3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T20:41:40.2770381Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T20:41:40.2770381Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbb708d2c-7750-490e-9\",\"name\":\"Testbb708d2c-7750-490e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T21:01:40.4120533Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T21:01:40.4120533Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9f7bb514-95da-4805-b\",\"name\":\"Test9f7bb514-95da-4805-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T21:11:39.7696278Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T21:11:39.7696278Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl\",\"name\":\"deidServiceTestPl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"tag1\":\"newtag\"},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-03T21:34:12.3839943Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-03T21:34:12.3839943Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://erhdhgfdc7gfbnha.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl/privateEndpointConnections/newPL.205ebeb8-8c5e-4a53-af5e-65a8b1742b6d\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/newPL\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl/privateEndpointConnections/deidprivend.f9aba2fb-1155-47fa-9340-fe3e400bfdb2\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/deidprivend\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/testPL\",\"name\":\"testPL\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-10T21:12:59.6131826Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-10T21:12:59.6131826Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fjbkh4cqdpe8hwet.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/sysAssignedId\",\"name\":\"sysAssignedId\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"tag1\":\"newtag\"},\"systemData\":{\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-13T17:37:14.3387424Z\"},\"identity\":{\"principalId\":\"9a1d969f-e6a8-49b4-8b7e-a5433995abb2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hvadefchfua6ftev.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6321f916-25fb-4fc8-8\",\"name\":\"Test6321f916-25fb-4fc8-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-21T16:40:05.0949754Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-21T16:40:05.0949754Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bdawgsb7hrbbe6bn.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test541e6e55-704c-44f2-a\",\"name\":\"Test541e6e55-704c-44f2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-22T03:20:10.7601885Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-22T03:20:10.7601885Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f6akaxfpafdxh0ar.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testPL2\",\"name\":\"testPL2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-24T19:33:59.0327006Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-24T19:33:59.0327006Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://avazb0ghcmcgakb2.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testPL2/privateEndpointConnections/deidPrivateEndpoint321.96cf71d4-af45-45be-96f2-3d8fc595ca36\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/deidPrivateEndpoint321\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved by johndoe@company.com\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste7a29369-726b-4c84-a\",\"name\":\"Teste7a29369-726b-4c84-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-25T21:20:06.3244568Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-25T21:20:06.3244568Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c8dagne0d5emhya9.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f29e51f-926a-4677-9\",\"name\":\"Test7f29e51f-926a-4677-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-25T21:20:30.3680815Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-25T21:20:30.3680815Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hnaze8acb6dvhndg.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testDeidPlManual\",\"name\":\"testDeidPlManual\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-15T22:24:50.2812382Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-15T22:24:50.2812382Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzcqfdgrfkg2huhw.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled\",\"name\":\"pltestdisabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T19:16:27.8732354Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fzesd4dfenh6bsd9.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe770d1b-6980-4e18-9\",\"name\":\"Testbe770d1b-6980-4e18-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-17T20:23:18.4418245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-17T20:23:18.4418245Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fad7bjbneth9gzdf.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testcny002\",\"name\":\"testcny002\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-17T21:09:44.1667859Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T21:09:44.1667859Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efbedbeebubfdebs.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test84095079-4b98-4ec9-9\",\"name\":\"Test84095079-4b98-4ec9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-17T21:46:16.0393478Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-17T21:46:16.0393478Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4a5c3deevd3ezf4.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testdeidplauto2\",\"name\":\"testdeidplauto2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-17T22:29:37.8729156Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T22:29:37.8729156Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buf4cndqfaesgtcg.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testdeidplauto2/privateEndpointConnections/newPLManualTest123.e6577b74-5744-4234-8cf6-111c19d4057e\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/newPLManualTest123\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled2\",\"name\":\"pltestdisabled2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T00:28:31.2703799Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T00:28:31.2703799Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dycxeub6gfbcbzas.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled3\",\"name\":\"pltestdisabled3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T04:35:01.0885005Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T04:35:01.0885005Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c5cne0gtaxc2dzcx.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestenabled\",\"name\":\"pltestenabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T04:35:32.6234762Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T04:53:43.2223465Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gja2azg9bkcmbkgv.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste433caae-9c9b-4c16-b\",\"name\":\"Teste433caae-9c9b-4c16-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T14:37:31.2052991Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:14.3152293Z\"},\"identity\":{\"principalId\":\"1e798ce0-7a7a-4ee3-aa8f-7fc9bb9f707f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9h7b5a2ewg6e5du.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test91886748-2f52-447d-9\",\"name\":\"Test91886748-2f52-447d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T16:26:16.5199502Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-18T16:26:16.5199502Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hqg6h7cqecc0f2fy.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-sdk-dev-gthomas/providers/microsoft.healthdataaiservices/deidservices/deid-sdk-dev-gthomas-eup\",\"name\":\"deid-sdk-dev-gthomas-eup\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T17:13:41.2375465Z\",\"lastModifiedBy\":\"gthomas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-24T23:57:18.5416697Z\"},\"identity\":{\"principalId\":\"0129a479-6294-4906-9e12-2e9e05dbefb7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dpg2gkb3a2bkfwg3.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testda62732d-0828-4397-b\",\"name\":\"Testda62732d-0828-4397-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T22:17:32.6395661Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:15.9234672Z\"},\"identity\":{\"principalId\":\"ed6bad84-1d9b-43b8-a161-1919e5dc00ed\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmavgea3baddhrgq.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cnydisableddelete\",\"name\":\"cnydisableddelete\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T01:08:30.63945Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T02:27:24.6559072Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hterfhf2e5aebfgx.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cny002alexa\",\"name\":\"cny002alexa\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T04:45:26.5402585Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T04:45:26.5402585Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d6a3cpanhvekf7d2.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cny002alexaenabled\",\"name\":\"cny002alexaenabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T05:04:17.5859606Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T05:05:37.6592602Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h2egckfgfpaaeqba.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6875fb8c-481b-44fb-b\",\"name\":\"Test6875fb8c-481b-44fb-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-19T18:07:33.8763819Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:16.6336799Z\"},\"identity\":{\"principalId\":\"41d0b01d-da21-42e0-952b-6d9008ea5bab\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gecxhydbh2cnerdb.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0722\",\"name\":\"test0722\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-22T13:19:49.4618059Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-23T21:20:04.7661563Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8f6c9axgyanfdaj.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0722/privateEndpointConnections/test0722pl.72fabf6a-01c1-4911-88f5-a96420ceb718\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0722pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1a880c9-e1d7-414e-8\",\"name\":\"Teste1a880c9-e1d7-414e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-23T02:15:13.2322497Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-23T02:15:13.2322497Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fnhza2e9avd8htep.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa073patch\",\"name\":\"alexa073patch\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-23T18:38:37.804077Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:29:08.1219026Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqadfygeagdkhygp.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0723\",\"name\":\"test0723\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-23T21:36:14.4676287Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-23T22:14:49.0339527Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brg9dsapavg2c6dk.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0723/privateEndpointConnections/test0723pl.3de8fd1e-d76f-4286-b90e-e4a75d9be521\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0723pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0725\",\"name\":\"test0725\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-25T21:35:17.4224809Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T22:50:45.2266916Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e5apabg2hnche4bv.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0725auto\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0725/privateEndpointConnections/test0725auto.99c3fb28-c9c2-4764-9754-962a5661c1ff\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0725manual\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0725/privateEndpointConnections/test0725manual.71316cb7-8f96-4078-8b93-1a55acc21f85\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725\",\"name\":\"alexa0725\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-25T23:54:40.0387919Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-25T23:55:33.4079214Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dvc4gmgpfdctc0c3.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725again2\",\"name\":\"alexa0725again2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-26T00:20:50.7189692Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:27:38.3288062Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g7d4e7hpdza2hgca.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725again3\",\"name\":\"alexa0725again3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-26T00:43:08.1376806Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:44:02.8776556Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h5emfaatg3bfefaz.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0729\",\"name\":\"test0729\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-29T13:30:21.5934928Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-16T20:47:56.5044908Z\"},\"identity\":{\"principalId\":\"075c8b2d-a1e2-4948-b9bd-56ae75b0072c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpf6cvhzh7g0h0dj.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0729v1\",\"name\":\"test0729v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T00:22:08.4404723Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-30T16:38:50.1818986Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://and2dtdxgnfcedd0.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/privateendpoint2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0729v1/privateEndpointConnections/privateendpoint2.ffc3ed5a-0f5b-4cd5-acc7-5d417356a16f\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0730v1\",\"name\":\"test0730v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T16:39:22.9446072Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-05T23:04:28.1814769Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ezcfh6hpdjf4e6as.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0730v1/privateEndpointConnections/test0806.e9cd3a40-e666-4c80-9aea-3d514c9c2bd3\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/test0806\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"}}}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0730demo\",\"name\":\"test0730demo\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T17:14:54.7706591Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-30T17:14:54.7706591Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c6czgkabb6gnh7d9.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801all\",\"name\":\"test0801all\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T00:09:57.9314888Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T00:07:40.714Z\"},\"identity\":{\"principalId\":\"4e596332-04f0-4743-95bf-e9c6ce3c76c0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://arh2bwaaeqewehhx.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801public\",\"name\":\"test0801public\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T00:58:54.8826933Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T00:07:41.903045Z\"},\"identity\":{\"principalId\":\"c6048863-1678-4608-a185-1e2bf49d250e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmdtg3dag0axaxfe.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801deid\",\"name\":\"test0801deid\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T12:24:14.486183Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T18:57:54.0730875Z\"},\"identity\":{\"principalId\":\"38185316-41b3-4dac-b0d9-b19efdb3be99\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoodeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-asmahmoodeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f9dybbdshvend4dz.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809euap\",\"name\":\"plval0809euap\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T21:43:51.418236Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-28T16:50:02.1741996Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eseebtd3ajaxgxh4.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-euap2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809euap/privateEndpointConnections/pl-euap2.f110014f-e8aa-4917-8663-e2e618c52017\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0809\",\"name\":\"alexa0809\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:46:47.3233012Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:46:47.3233012Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvffgqfecnhgaxef.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/alexa0809/privateEndpointConnections/peeuap.5f1a0318-ddf4-40f8-85b8-ce58ee5e85f7\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeuap\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0809/privateEndpointConnections/peeus0814manual.aeec8437-917c-470b-b148-b344a67efab9\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0814manual\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"approved pe\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/alexa0809/privateEndpointConnections/testpecrossregion.c8058284-0f31-4dd2-838d-7b966c490e9b\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpecrossregion\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814\",\"name\":\"test0814\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-14T20:14:19.4225466Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-30T20:20:46.1466584Z\"},\"identity\":{\"principalId\":\"5d8d9efd-4649-47d5-8a41-46df205b6a9d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvbhevf3bwfkg8h7.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0814manual2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/peeus0814manual2.c199e81e-9008-4e36-b847-ba1d0e98a57d\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testpe2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/testpe2.28ca2e9a-5e25-4870-b7af-5529c50605cb\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"reject\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/testpl.068fad0b-c8ac-40d7-a0fb-dccebc629644\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/pev2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814/privateEndpointConnections/pev2.d875c1a8-f613-49da-ab46-16eaf0b79ba2\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/private-endpoint\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814/privateEndpointConnections/private-endpoint.3db275cc-6678-4cde-824f-0cae45812cc7\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/demo0815auto\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/demo0815auto.f290340a-f490-4c8f-b4b7-90b76afe1e12\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/demo0815manual\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/demo0815manual.c5c54b02-454f-43ea-8e56-0f054096a405\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.HealthDataAIServices/DeidServices/msoenntest\",\"name\":\"msoenntest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"msoennichsen@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-19T18:51:13.8508128Z\",\"lastModifiedBy\":\"msoennichsen@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T18:57:11.3280852Z\"},\"identity\":{\"principalId\":\"84bdc5ea-f750-44d4-9b6d-bd2af1d6eb37\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-msoennicdeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5ffdxhkg7aua4g0.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/SwaggerResource\",\"name\":\"SwaggerResource\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-24T21:05:12.2878593Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-24T21:05:12.2878593Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gch5gycpe2f6apbb.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny-pl\",\"name\":\"syntheticscny-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T20:16:50.9705435Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:16:50.9705435Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aab7gvc5hkh6ejhz.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny-pl/privateEndpointConnections/pe-syntheticscny-pl.f8e97798-4c5b-406f-8c4e-692bc6413fa1\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscny-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuap1\",\"name\":\"testeuap1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-15T21:47:03.1351325Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-15T21:47:03.1351325Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuapfix\",\"name\":\"testeuapfix\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-16T00:04:52.5975153Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-16T00:04:52.5975153Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e0h7f9cycfhwevg6.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuapfix/privateEndpointConnections/plfix.031101be-b2b3-4373-921d-4b0c25d3e530\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/plfix\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/test1015\",\"name\":\"test1015\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-16T00:09:04.4778867Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-16T00:09:04.4778867Z\"},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/deid-identity\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://atahbsdcdnahhveq.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}]}", + "isContentBase64": false + } + }, + "Get-AzHealthDeidService+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "23" ], + "x-ms-client-request-id": [ "a03f0bc3-7d36-455b-8790-bdf40fa9218a" ], + "CommandName": [ "Get-AzHealthDeidService" ], + "FullCommandName": [ "Get-AzHealthDeidService_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101b602-0000-0800-0000-6716bdc20000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "f5a08480-5c54-475c-adc9-852f363b5c6c" ], + "x-ms-correlation-request-id": [ "e8f54ca3-534d-4440-b833-80749f28d4e5" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205305Z:e8f54ca3-534d-4440-b833-80749f28d4e5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B23D89A2F6144AFCB2EC020CAEEE6F26 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:05Z" ], + "Date": [ "Mon, 21 Oct 2024 20:53:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Get-AzHealthDeidService+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "24" ], + "x-ms-client-request-id": [ "1534c649-eb35-4d21-bfa4-4cc9763d666e" ], + "CommandName": [ "Get-AzHealthDeidService" ], + "FullCommandName": [ "Get-AzHealthDeidService_List1" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "32126b0b-e26e-4306-a2ba-c70e5fd45ef5" ], + "x-ms-correlation-request-id": [ "a6ff4b29-7179-4b20-8d7f-c511eb497bb1" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205305Z:a6ff4b29-7179-4b20-8d7f-c511eb497bb1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BCBBF28A8532473683DAC539A55D9EF8 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:05Z" ], + "Date": [ "Mon, 21 Oct 2024 20:53:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "2567" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:48:23.0398549Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"name\":\"qv4mlb\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:49:55.5396861Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:49:55.5396861Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://csepa9hngpaqfgaq.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"name\":\"9nbgfp\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:51:28.3911208Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:51:28.3911208Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bfcjhrceffcaeyby.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}]}", + "isContentBase64": false + } + }, + "Get-AzHealthDeidService+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "25" ], + "x-ms-client-request-id": [ "1a401825-9c8d-47e3-b781-503819356b49" ], + "CommandName": [ "Get-AzHealthDeidService" ], + "FullCommandName": [ "Get-AzHealthDeidService_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101b602-0000-0800-0000-6716bdc20000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "17e6fe53-a574-4954-8ea0-4b77398fa91c" ], + "x-ms-correlation-request-id": [ "e9328c7f-facf-4e56-8574-01b650374f6e" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205306Z:e9328c7f-facf-4e56-8574-01b650374f6e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 80F367B0EF374E66B06523BC6F742E1C Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:05Z" ], + "Date": [ "Mon, 21 Oct 2024 20:53:05 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Get-AzHealthDeidService+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "26" ], + "x-ms-client-request-id": [ "6166d2d6-e452-4a0a-9a9b-6d88b86bb8df" ], + "CommandName": [ "Get-AzHealthDeidService" ], + "FullCommandName": [ "Get-AzHealthDeidService_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101b602-0000-0800-0000-6716bdc20000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "b97dd59b-56e1-4e00-bee4-bdb5ae6fabaf" ], + "x-ms-correlation-request-id": [ "9f0823f4-639a-453d-abdd-0e2608968d1b" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205306Z:9f0823f4-639a-453d-abdd-0e2608968d1b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 32569489D5F54AFBBBBFE6840A51885B Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:06Z" ], + "Date": [ "Mon, 21 Oct 2024 20:53:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Tests.ps1 b/src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Tests.ps1 new file mode 100644 index 000000000000..6133005c26fe --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Tests.ps1 @@ -0,0 +1,48 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Get-AzHealthDeidService')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzHealthDeidService.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Get-AzHealthDeidService' { + It 'List' { + { + $config = Get-AzHealthDeidService + $config.Count | Should -BeGreaterThan 0 + } | Should -Not -Throw + } + + It 'Get' { + { + $config = Get-AzHealthDeidService -Name $env.deidServiceName -ResourceGroupName $env.resourceGroupName + $config.Name | Should -Be $env.deidServiceName + } | Should -Not -Throw + } + + It 'List1' { + { + $config = Get-AzHealthDeidService -ResourceGroupName $env.resourceGroupName + $config.Count | Should -BeGreaterThan 0 + $config[0].Name | Should -Not -BeNullOrEmpty + $config[0].ResourceGroupName | Should -Be $env.resourceGroupName + } | Should -Not -Throw + } + + It 'GetViaIdentity' { + { + $config = Get-AzHealthDeidService -Name $env.deidServiceName -ResourceGroupName $env.resourceGroupName + $config2 = Get-AzHealthDeidService -InputObject $config + $config2.Name | Should -Be $env.deidServiceName + } | Should -Not -Throw + } +} diff --git a/src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Recording.json b/src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Recording.json new file mode 100644 index 000000000000..088e5a6afb8f --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Recording.json @@ -0,0 +1,662 @@ +{ + "New-AzHealthDeidService+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p?api-version=2024-02-28-preview", + "Content": "{\n \"location\": \"eastus2\"\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "27" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101733c-0000-0800-0000-6716bf370000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "5b575447-0ce1-4511-ae86-4e07c8274fc2" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "ac2a717e-95f1-4db6-ab1a-3fee4c8380f8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU" ], + "x-ms-request-id": [ "f7cbc851-822d-446b-8558-fb583a373736" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205311Z:ac2a717e-95f1-4db6-ab1a-3fee4c8380f8" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A6A75A66D1AE4715828B5BF1F5FFB6F5 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:09Z" ], + "Date": [ "Mon, 21 Oct 2024 20:53:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "528" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p\",\"name\":\"8gln5p\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:53:10.4165568Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:53:10.4165568Z\"},\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "28" ], + "x-ms-client-request-id": [ "c9373da6-5f72-43aa-9e94-f4ca06cd0414" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00ef17-0000-0800-0000-6716bf360000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "868d119e-0b0a-4863-9841-6e96f60125ee" ], + "x-ms-correlation-request-id": [ "bd7ca754-530f-4de4-9a26-1fcb7c6ce7e6" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205341Z:bd7ca754-530f-4de4-9a26-1fcb7c6ce7e6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 22E32639782A41F3AFCD8C8B9D515312 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:41Z" ], + "Date": [ "Mon, 21 Oct 2024 20:53:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"name\":\"f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:53:10.6398868Z\"}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "29" ], + "x-ms-client-request-id": [ "c9373da6-5f72-43aa-9e94-f4ca06cd0414" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00ef17-0000-0800-0000-6716bf360000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "d4b07aa8-9107-4fe4-81bb-751d8cf72a78" ], + "x-ms-correlation-request-id": [ "1d10ce61-74c9-43f9-8152-dc3d3db8c044" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205411Z:1d10ce61-74c9-43f9-8152-dc3d3db8c044" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A7303C52336F4268835C36D8D7B10F66 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:54:11Z" ], + "Date": [ "Mon, 21 Oct 2024 20:54:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"name\":\"f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:53:10.6398868Z\"}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "30" ], + "x-ms-client-request-id": [ "c9373da6-5f72-43aa-9e94-f4ca06cd0414" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a008024-0000-0800-0000-6716bf790000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "359be98d-55d2-479d-8372-4709a9bfa6f3" ], + "x-ms-correlation-request-id": [ "c41d4aa4-670c-47e6-8b39-2a03a632015d" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205441Z:c41d4aa4-670c-47e6-8b39-2a03a632015d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 46249490009B4F4A808009FAE132EBD5 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:54:41Z" ], + "Date": [ "Mon, 21 Oct 2024 20:54:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "634" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"name\":\"f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T20:53:10.6398868Z\",\"endTime\":\"2024-10-21T20:53:18.1414198Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p?api-version=2024-02-28-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "31" ], + "x-ms-client-request-id": [ "c9373da6-5f72-43aa-9e94-f4ca06cd0414" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101c03d-0000-0800-0000-6716bf3e0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "97dded7a-dbf4-458d-9618-5cd9f8aedcd5" ], + "x-ms-correlation-request-id": [ "5de8a69a-d626-4bb1-a15c-55ac7ce94429" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205442Z:5de8a69a-d626-4bb1-a15c-55ac7ce94429" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2A7554D1A20047E39B4879C4AE862A9C Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:54:41Z" ], + "Date": [ "Mon, 21 Oct 2024 20:54:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p\",\"name\":\"8gln5p\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:53:10.4165568Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:53:10.4165568Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cjh4dygfgkf3hube.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateViaJsonFilePath+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs?api-version=2024-02-28-preview", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "100" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101194a-0000-0800-0000-6716bf940000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "f600a6ec-b407-4d7f-8c25-73597a558053" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "7f29a5ed-4098-4247-8457-8efcfc5cfac1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ" ], + "x-ms-request-id": [ "e993ac4c-b531-442e-80cd-4af39dd4b914" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205444Z:7f29a5ed-4098-4247-8457-8efcfc5cfac1" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BE41C301BF3849AC8346DFB5B41387D2 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:54:42Z" ], + "Date": [ "Mon, 21 Oct 2024 20:54:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "560" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs\",\"name\":\"ci9tzs\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:54:43.4429743Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:54:43.4429743Z\"},\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "33" ], + "x-ms-client-request-id": [ "e0dbbf68-34cf-416e-b351-f9055209c460" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00eb28-0000-0800-0000-6716bf930000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "054fdc3a-6e2c-4de7-b6c5-671fd1bf20f3" ], + "x-ms-correlation-request-id": [ "275f3350-58a6-4e82-baad-f5c5690af7bf" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205514Z:275f3350-58a6-4e82-baad-f5c5690af7bf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FA0D232FF4C54C60969B9E38792403BD Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:55:14Z" ], + "Date": [ "Mon, 21 Oct 2024 20:55:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "572" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"name\":\"e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:54:43.711147Z\"}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "34" ], + "x-ms-client-request-id": [ "e0dbbf68-34cf-416e-b351-f9055209c460" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00eb28-0000-0800-0000-6716bf930000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "725529bd-9048-4fd0-aa95-d6dc40ac2c0b" ], + "x-ms-correlation-request-id": [ "05dac303-f301-45c6-b6f5-285cb0ec0c24" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205544Z:05dac303-f301-45c6-b6f5-285cb0ec0c24" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EC0B32850C1E4083A5D245986F30BB41 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:55:44Z" ], + "Date": [ "Mon, 21 Oct 2024 20:55:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "572" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"name\":\"e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:54:43.711147Z\"}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "35" ], + "x-ms-client-request-id": [ "e0dbbf68-34cf-416e-b351-f9055209c460" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a003a35-0000-0800-0000-6716bfd50000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "d79a298f-98fc-45e6-a353-4db8ee3871a7" ], + "x-ms-correlation-request-id": [ "1914fc23-bc99-4871-a4d9-d9bd98cd98e8" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205615Z:1914fc23-bc99-4871-a4d9-d9bd98cd98e8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AB90010817584266B577CDF71BE9FDB8 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:56:14Z" ], + "Date": [ "Mon, 21 Oct 2024 20:56:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "632" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"name\":\"e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T20:54:43.711147Z\",\"endTime\":\"2024-10-21T20:54:52.1793127Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs?api-version=2024-02-28-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "36" ], + "x-ms-client-request-id": [ "e0dbbf68-34cf-416e-b351-f9055209c460" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101224b-0000-0800-0000-6716bf9c0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "227435d5-ecb9-4e02-b40f-52f0a1947508" ], + "x-ms-correlation-request-id": [ "d3771740-6771-42f0-9d41-ab916a8653b8" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205615Z:d3771740-6771-42f0-9d41-ab916a8653b8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DCC6D21CE3D646958B1B7434DAA7C1D0 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:56:15Z" ], + "Date": [ "Mon, 21 Oct 2024 20:56:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "637" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs\",\"name\":\"ci9tzs\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:54:43.4429743Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:54:43.4429743Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ayg7cyfma0e8dzb7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateViaJsonString+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n?api-version=2024-02-28-preview", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "100" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"81016b58-0000-0800-0000-6716bff00000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "e1c959f5-692e-4a4f-834d-ef62d309d08c" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "c8cff6d2-b87c-49e2-b17a-62ad18261134" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM" ], + "x-ms-request-id": [ "7fd242b4-727b-443b-8389-5104730f36e2" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205617Z:c8cff6d2-b87c-49e2-b17a-62ad18261134" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8D8E0F2264A143A68CA3B1A6D57A17EF Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:56:15Z" ], + "Date": [ "Mon, 21 Oct 2024 20:56:16 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "560" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n\",\"name\":\"4tkz1n\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:56:16.2627394Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:56:16.2627394Z\"},\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "38" ], + "x-ms-client-request-id": [ "fc5a769a-cb90-4d50-861b-47c890446e0b" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00ff3a-0000-0800-0000-6716bff00000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "a891b5db-e4d9-417c-98c8-6d7d032c380d" ], + "x-ms-correlation-request-id": [ "2d67abfb-3255-4215-a704-b590da489361" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205647Z:2d67abfb-3255-4215-a704-b590da489361" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 85902484A4D345DABFF8BFDCA79BE113 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:56:47Z" ], + "Date": [ "Mon, 21 Oct 2024 20:56:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "573" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"name\":\"7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:56:16.4897232Z\"}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "39" ], + "x-ms-client-request-id": [ "fc5a769a-cb90-4d50-861b-47c890446e0b" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00ff3a-0000-0800-0000-6716bff00000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "31c0950e-0681-4746-a7ee-c79fbde6866e" ], + "x-ms-correlation-request-id": [ "be90ebbc-68f0-425e-8891-d338e0acde18" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205717Z:be90ebbc-68f0-425e-8891-d338e0acde18" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5E41F64E77FE465EA5F86D001AB6209F Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:57:17Z" ], + "Date": [ "Mon, 21 Oct 2024 20:57:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "573" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"name\":\"7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:56:16.4897232Z\"}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "40" ], + "x-ms-client-request-id": [ "fc5a769a-cb90-4d50-861b-47c890446e0b" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00c046-0000-0800-0000-6716c0320000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "5a522a96-6021-4b45-9320-352547e06258" ], + "x-ms-correlation-request-id": [ "9722b8a7-ef63-46a6-8394-754022878fb8" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205747Z:9722b8a7-ef63-46a6-8394-754022878fb8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1E1188E78A79449CAFAE8F671229EA00 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:57:47Z" ], + "Date": [ "Mon, 21 Oct 2024 20:57:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "633" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"name\":\"7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T20:56:16.4897232Z\",\"endTime\":\"2024-10-21T20:56:24.4303843Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "New-AzHealthDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n?api-version=2024-02-28-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "41" ], + "x-ms-client-request-id": [ "fc5a769a-cb90-4d50-861b-47c890446e0b" ], + "CommandName": [ "New-AzHealthDeidService" ], + "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101aa59-0000-0800-0000-6716bff80000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "81f0574f-7009-4b26-b2d1-19e724ac9775" ], + "x-ms-correlation-request-id": [ "77a1c616-331e-498d-b991-c7db8ba12ef5" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205748Z:77a1c616-331e-498d-b991-c7db8ba12ef5" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0E043BFC91504D26BF312D11927C1141 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:57:47Z" ], + "Date": [ "Mon, 21 Oct 2024 20:57:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "637" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n\",\"name\":\"4tkz1n\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:56:16.2627394Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:56:16.2627394Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9gnatbfdebhb8bm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Tests.ps1 b/src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Tests.ps1 new file mode 100644 index 000000000000..6894b43e35d4 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Tests.ps1 @@ -0,0 +1,42 @@ +if(($null -eq $TestName) -or ($TestName -contains 'New-AzHealthDeidService')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzHealthDeidService.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'New-AzHealthDeidService' { + It 'CreateExpanded' { + { + $config = New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests1 -Location $env.location + $config.Name | Should -Be $env.deidServiceToCreateInTests1 + $config.ProvisioningState | Should -Be "Succeeded" + } | Should -Not -Throw + } + + It 'CreateViaJsonFilePath' { + { + $config = New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests2 -JsonFilePath (Join-Path $PSScriptRoot '.\jsonConfigs\deidServiceJson.json') + $config.Name | Should -Be $env.deidServiceToCreateInTests2 + $config.ProvisioningState | Should -Be "Succeeded" + } | Should -Not -Throw + } + + It 'CreateViaJsonString' { + { + $jsonString = Get-Content -Path (Join-Path $PSScriptRoot '.\jsonConfigs\deidServiceJson.json') -Raw + $config = New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests3 -JsonString $jsonString + $config.Name | Should -Be $env.deidServiceToCreateInTests3 + $config.ProvisioningState | Should -Be "Succeeded" + } | Should -Not -Throw + } +} diff --git a/src/HealthDeid/HealthDeid.Autorest/test/README.md b/src/HealthDeid/HealthDeid.Autorest/test/README.md new file mode 100644 index 000000000000..1969200c6a09 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/README.md @@ -0,0 +1,17 @@ +# Test +This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `../custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: no + +## Details +We allow three testing modes: *live*, *record*, and *playback*. These can be selected using the `-Live`, `-Record`, and `-Playback` switches respectively on the `test-module.ps1` script. This script will run through any `.Tests.ps1` scripts in the `test` folder. If you choose the *record* mode, it will create a `.Recording.json` file of the REST calls between the client and server. Then, when you choose *playback* mode, it will use the `.Recording.json` file to mock the communication between server and client. The *live* mode runs the same as the *record* mode; however, it doesn't create the `.Recording.json` file. + +## Purpose +Custom cmdlets generally encompass additional functionality not described in the REST specification, or combines functionality generated from the REST spec. To validate this functionality continues to operate as intended, creating tests that can be ran and re-ran against custom cmdlets is part of the framework. + +## Usage +To execute tests, run the `test-module.ps1`. To write tests, [this example](https://github.com/pester/Pester/blob/8b9cf4248315e44f1ac6673be149f7e0d7f10466/Examples/Planets/Get-Planet.Tests.ps1#L1) from the Pester repository is very useful for getting started. \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Recording.json b/src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Recording.json new file mode 100644 index 000000000000..da65226e6c33 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Recording.json @@ -0,0 +1,726 @@ +{ + "Remove-AzHealthDeidService+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "42" ], + "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101a067-0000-0800-0000-6716c0500000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0" ], + "x-ms-request-id": [ "31caacbe-b25f-4cdc-94f3-a70acaf49a49" ], + "x-ms-correlation-request-id": [ "494405b0-9f94-4b49-83f7-cda44ac7c66c" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205752Z:494405b0-9f94-4b49-83f7-cda44ac7c66c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A88D3F0182B74DAABD674C9128603E96 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:57:51Z" ], + "Date": [ "Mon, 21 Oct 2024 20:57:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "bnVsbA==", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "43" ], + "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a008b4b-0000-0800-0000-6716c0500000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411029085137\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=lZ8TbnpTJqUbRUMoCM7zvaIlzWWnTU81eVmyO9Rt14aGCpPDibCMx5KrrGh4MDXO4OD7GsukmD5h62fkhFQJLsRYKeDEutt8FzR4sZ7Y45pbIxLSYY7t9_WviMnW5fm_tiHhMCEPMNmS_CmybKwDVFlZ6p9i9DWkfw7b8bM8tnz7xtBTNTB69fFSFybg6iKjdhQO5j4_Lx1r0I972kMDsq-5QMN-SXG7xdShCMlHpmxtShgGoHyLQfTWit16T4N2vNVbMIsea7YYNnQWl_C4h90DvSa9hltK5RfPbUMF-TxdHkRwCm8DmgqEQd7-BESs4PFUWmALbM-WRPADkXwvgg\u0026h=-LKAx2z_DLJLbIKtgSXBtxSjJzV6z9sdyKxD6uvomBo" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411029085137\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=lZ8TbnpTJqUbRUMoCM7zvaIlzWWnTU81eVmyO9Rt14aGCpPDibCMx5KrrGh4MDXO4OD7GsukmD5h62fkhFQJLsRYKeDEutt8FzR4sZ7Y45pbIxLSYY7t9_WviMnW5fm_tiHhMCEPMNmS_CmybKwDVFlZ6p9i9DWkfw7b8bM8tnz7xtBTNTB69fFSFybg6iKjdhQO5j4_Lx1r0I972kMDsq-5QMN-SXG7xdShCMlHpmxtShgGoHyLQfTWit16T4N2vNVbMIsea7YYNnQWl_C4h90DvSa9hltK5RfPbUMF-TxdHkRwCm8DmgqEQd7-BESs4PFUWmALbM-WRPADkXwvgg\u0026h=-LKAx2z_DLJLbIKtgSXBtxSjJzV6z9sdyKxD6uvomBo" ], + "x-ms-request-id": [ "551af41c-1315-4c62-88fa-01f1d452137d" ], + "x-ms-correlation-request-id": [ "04aa9b38-764a-4802-9d50-c7f8276077ce" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205822Z:04aa9b38-764a-4802-9d50-c7f8276077ce" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A639656679B84B4CB699703D24942189 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:58:22Z" ], + "Date": [ "Mon, 21 Oct 2024 20:58:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\"}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411029085137\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=lZ8TbnpTJqUbRUMoCM7zvaIlzWWnTU81eVmyO9Rt14aGCpPDibCMx5KrrGh4MDXO4OD7GsukmD5h62fkhFQJLsRYKeDEutt8FzR4sZ7Y45pbIxLSYY7t9_WviMnW5fm_tiHhMCEPMNmS_CmybKwDVFlZ6p9i9DWkfw7b8bM8tnz7xtBTNTB69fFSFybg6iKjdhQO5j4_Lx1r0I972kMDsq-5QMN-SXG7xdShCMlHpmxtShgGoHyLQfTWit16T4N2vNVbMIsea7YYNnQWl_C4h90DvSa9hltK5RfPbUMF-TxdHkRwCm8DmgqEQd7-BESs4PFUWmALbM-WRPADkXwvgg\u0026h=-LKAx2z_DLJLbIKtgSXBtxSjJzV6z9sdyKxD6uvomBo+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411029085137\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=lZ8TbnpTJqUbRUMoCM7zvaIlzWWnTU81eVmyO9Rt14aGCpPDibCMx5KrrGh4MDXO4OD7GsukmD5h62fkhFQJLsRYKeDEutt8FzR4sZ7Y45pbIxLSYY7t9_WviMnW5fm_tiHhMCEPMNmS_CmybKwDVFlZ6p9i9DWkfw7b8bM8tnz7xtBTNTB69fFSFybg6iKjdhQO5j4_Lx1r0I972kMDsq-5QMN-SXG7xdShCMlHpmxtShgGoHyLQfTWit16T4N2vNVbMIsea7YYNnQWl_C4h90DvSa9hltK5RfPbUMF-TxdHkRwCm8DmgqEQd7-BESs4PFUWmALbM-WRPADkXwvgg\u0026h=-LKAx2z_DLJLbIKtgSXBtxSjJzV6z9sdyKxD6uvomBo", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "44" ], + "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a008b4b-0000-0800-0000-6716c0500000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411331948252\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NBdSzC9rvhuC58IcRhH1QUtxIDNCsk2XYnWny4vms1iPQgBOOEyo9LC5VnYaQPqarEmWMUz0XN7bOSPft3HuK-xtbvlrWdS1WJS9GSWyadV02hEt5DU0mA5TADloKauVeqjlcvjQ3qp2YFV_sly6pDzbRl_xdAuJncpb0Lo4f3hPLgCD3ZX3MXZKxIw7-dmX36DJFy6vpmkPSvZ_bQ3BRSgAqyrGZXHnMulO17oPWr1u5SKeWOncdVJsac5IzClkW-W2EvV7tEPA-AnPA6V2RKeQClMxMa3wNRDlp2ijf8BPXt6ZBZFmPsgcI14GG9FmZNTfzj5AT1SZkyHsFgLMQ\u0026h=fK4qxCq6ORgEMpnkQqcBMwrEU2nNMLK0wk3pXqQqoRo" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411331792003\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=8CFyTQFL-Y_NEssq3yIuVahs5G3Sln6BPv2CbO9KfDYMk_Jri6S3ZqyBAzh2-OYpyog6tXYi2HASiCEO32ce3PJ3BDlIYZbQFyJO8FGBTydjN7zUoA3AdoYofj6ZoDuGBeuhI1S0TRCAhKDZgpaWdty7k-ZPHcsUhZPDJmSTp-4f9-4SVU8-UfGyPE9tV-dkznFw1cmhJl3-hJ4qXvf-k-OT1rTyg_k-Wn6TYH2NaTuEQyN8OUBvS9zOYwjYDAv5iH9eAsO9ol1K-yDsj0_kMP0KeDSzVxJ8e2Yopr6J0YgyzphaA3_tiNdW4DWhtXOJ2oa9FHyOBr5tzwdaAQuCWw\u0026h=GN3U-NryBOTeEuJ06y-g-sFymBA6FslDGB1DxxGXnKY" ], + "x-ms-request-id": [ "1a770749-adb4-415a-9dfb-af621de197da" ], + "x-ms-correlation-request-id": [ "6f651c54-9af7-43b8-a169-0ff0296177d1" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205853Z:6f651c54-9af7-43b8-a169-0ff0296177d1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 55DDB4F90114440386F32D3136836039 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:58:52Z" ], + "Date": [ "Mon, 21 Oct 2024 20:58:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\"}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411331792003\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=8CFyTQFL-Y_NEssq3yIuVahs5G3Sln6BPv2CbO9KfDYMk_Jri6S3ZqyBAzh2-OYpyog6tXYi2HASiCEO32ce3PJ3BDlIYZbQFyJO8FGBTydjN7zUoA3AdoYofj6ZoDuGBeuhI1S0TRCAhKDZgpaWdty7k-ZPHcsUhZPDJmSTp-4f9-4SVU8-UfGyPE9tV-dkznFw1cmhJl3-hJ4qXvf-k-OT1rTyg_k-Wn6TYH2NaTuEQyN8OUBvS9zOYwjYDAv5iH9eAsO9ol1K-yDsj0_kMP0KeDSzVxJ8e2Yopr6J0YgyzphaA3_tiNdW4DWhtXOJ2oa9FHyOBr5tzwdaAQuCWw\u0026h=GN3U-NryBOTeEuJ06y-g-sFymBA6FslDGB1DxxGXnKY+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411331792003\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=8CFyTQFL-Y_NEssq3yIuVahs5G3Sln6BPv2CbO9KfDYMk_Jri6S3ZqyBAzh2-OYpyog6tXYi2HASiCEO32ce3PJ3BDlIYZbQFyJO8FGBTydjN7zUoA3AdoYofj6ZoDuGBeuhI1S0TRCAhKDZgpaWdty7k-ZPHcsUhZPDJmSTp-4f9-4SVU8-UfGyPE9tV-dkznFw1cmhJl3-hJ4qXvf-k-OT1rTyg_k-Wn6TYH2NaTuEQyN8OUBvS9zOYwjYDAv5iH9eAsO9ol1K-yDsj0_kMP0KeDSzVxJ8e2Yopr6J0YgyzphaA3_tiNdW4DWhtXOJ2oa9FHyOBr5tzwdaAQuCWw\u0026h=GN3U-NryBOTeEuJ06y-g-sFymBA6FslDGB1DxxGXnKY", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "45" ], + "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a008b4b-0000-0800-0000-6716c0500000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411633588508\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=QV0pf77DVSSfVy-tjWD2vgrwsoxHWzz3Eo6Lj1ljzWlvx_HuKkVSKms7-P9hiJJ9sC4UDrEoqxivEb68cOi6pLXHISyoqHpBusF6Vqfm0eK4iJKcNoQyskHnlbWfZQCgfN9fo0O5ZZZ7qD0LEymepxwPR2eFbmTRlCExLDpNjVxqFsK4MVFK9UizighvjkUxK9S73TAyvv25CAWE0YBiEmXYKn7kHPduhFKSvr-OmLs0TMiAlReET5WokYc_YkFGjqahuYrSYqx9AClD520vCpYBsk-naqu0f14Nc7_AFpncV5lNltNCKFv9FiYILuYsANLelQnLXOMKa377NRa2IA\u0026h=mFngmvtvybtj_YgxL1VniWbQCbMUTZow92THQH3phIw" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411633588508\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=QV0pf77DVSSfVy-tjWD2vgrwsoxHWzz3Eo6Lj1ljzWlvx_HuKkVSKms7-P9hiJJ9sC4UDrEoqxivEb68cOi6pLXHISyoqHpBusF6Vqfm0eK4iJKcNoQyskHnlbWfZQCgfN9fo0O5ZZZ7qD0LEymepxwPR2eFbmTRlCExLDpNjVxqFsK4MVFK9UizighvjkUxK9S73TAyvv25CAWE0YBiEmXYKn7kHPduhFKSvr-OmLs0TMiAlReET5WokYc_YkFGjqahuYrSYqx9AClD520vCpYBsk-naqu0f14Nc7_AFpncV5lNltNCKFv9FiYILuYsANLelQnLXOMKa377NRa2IA\u0026h=mFngmvtvybtj_YgxL1VniWbQCbMUTZow92THQH3phIw" ], + "x-ms-request-id": [ "0dd9570f-cbf2-4bb0-bb46-fd9e307341da" ], + "x-ms-correlation-request-id": [ "89c1c3af-623e-4706-8f33-b046a719c2b7" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205923Z:89c1c3af-623e-4706-8f33-b046a719c2b7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C796E49F131341E29945F87C2CDFCC64 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:59:23Z" ], + "Date": [ "Mon, 21 Oct 2024 20:59:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\"}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411633588508\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=QV0pf77DVSSfVy-tjWD2vgrwsoxHWzz3Eo6Lj1ljzWlvx_HuKkVSKms7-P9hiJJ9sC4UDrEoqxivEb68cOi6pLXHISyoqHpBusF6Vqfm0eK4iJKcNoQyskHnlbWfZQCgfN9fo0O5ZZZ7qD0LEymepxwPR2eFbmTRlCExLDpNjVxqFsK4MVFK9UizighvjkUxK9S73TAyvv25CAWE0YBiEmXYKn7kHPduhFKSvr-OmLs0TMiAlReET5WokYc_YkFGjqahuYrSYqx9AClD520vCpYBsk-naqu0f14Nc7_AFpncV5lNltNCKFv9FiYILuYsANLelQnLXOMKa377NRa2IA\u0026h=mFngmvtvybtj_YgxL1VniWbQCbMUTZow92THQH3phIw+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411633588508\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=QV0pf77DVSSfVy-tjWD2vgrwsoxHWzz3Eo6Lj1ljzWlvx_HuKkVSKms7-P9hiJJ9sC4UDrEoqxivEb68cOi6pLXHISyoqHpBusF6Vqfm0eK4iJKcNoQyskHnlbWfZQCgfN9fo0O5ZZZ7qD0LEymepxwPR2eFbmTRlCExLDpNjVxqFsK4MVFK9UizighvjkUxK9S73TAyvv25CAWE0YBiEmXYKn7kHPduhFKSvr-OmLs0TMiAlReET5WokYc_YkFGjqahuYrSYqx9AClD520vCpYBsk-naqu0f14Nc7_AFpncV5lNltNCKFv9FiYILuYsANLelQnLXOMKa377NRa2IA\u0026h=mFngmvtvybtj_YgxL1VniWbQCbMUTZow92THQH3phIw", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "46" ], + "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a008b4b-0000-0800-0000-6716c0500000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411936761446\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=g_dPM0Q6qQOrm1FZSYwDJW9q_frcEU8WeLqsnmVLcvvK5HoEedAXTly6wZ4qxwSz_DV1gFdGuB1NeOiwn7KbH8fg2sR3Q7bvThzMkdUAXQiXB69jgISLWAFXTSJ5uMaeruUkyZrjL47Qq9rzEZb4wRLqtn-suf-vuNNOUsiiVW95SdG2ahj4hV8gMMGUfZ8cqlBIBD0iQTyI_-d6CQh-DP2tkLCwGIUD2eMh8sXak7vBXFVJl47bPPKpQOitIdwiCKwz6q5MFAneLtkmzxkhzdi22A6wK_DYwPgjasI0_3ko6PxNcZzA1XX1L8khPAUjMaL2R1d9qpIdU5LZv7XLZw\u0026h=qF91j5_S20jnUsOixO2SyfqSdxwQFuIpOk8ffzySyKA" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411936294408\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=L5SIqVPQ_DzcCouPUKqD38vNRqQHb185ONpqGeJ9sKs3RiFOVd6w0z6fF-aiQ9P4lYV5Ls0ctAZO3cP_SHYBdYCLO4P-pvCeNo78VCZx1pL69h9hF4JJqi5T13F7gXuR0KTe_31Sxy16o6WxgiHCFukQ7pHmY8YeovmDx_xhICjiLyS5WPMiYQuqTKU1k5G9B1rHckU8fH4KSsgCWQJ5uBbdDMTSrMSq2Nv5YIluWbBhHIpToBLLV6LkOYHmFCa71iZiXKYGPmQA38RSgjUhYQBgKML0GFcw-5D87H2KE4qACHa8RE8So25HIgWXI2WsbJS9PbPr7EAGsHQlE29CFw\u0026h=DC8JrY4C5PuUz3c4QLzlRW9a98p4s6rUgyjf-mdmCek" ], + "x-ms-request-id": [ "0ec3c54d-a69f-4a3e-b49c-d68353f21d4b" ], + "x-ms-correlation-request-id": [ "70327c88-663e-4dc8-a529-264d6a497eb8" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T205953Z:70327c88-663e-4dc8-a529-264d6a497eb8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: EED066B29D0B4855A2353B424C8EB91D Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:59:53Z" ], + "Date": [ "Mon, 21 Oct 2024 20:59:53 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\"}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411936294408\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=L5SIqVPQ_DzcCouPUKqD38vNRqQHb185ONpqGeJ9sKs3RiFOVd6w0z6fF-aiQ9P4lYV5Ls0ctAZO3cP_SHYBdYCLO4P-pvCeNo78VCZx1pL69h9hF4JJqi5T13F7gXuR0KTe_31Sxy16o6WxgiHCFukQ7pHmY8YeovmDx_xhICjiLyS5WPMiYQuqTKU1k5G9B1rHckU8fH4KSsgCWQJ5uBbdDMTSrMSq2Nv5YIluWbBhHIpToBLLV6LkOYHmFCa71iZiXKYGPmQA38RSgjUhYQBgKML0GFcw-5D87H2KE4qACHa8RE8So25HIgWXI2WsbJS9PbPr7EAGsHQlE29CFw\u0026h=DC8JrY4C5PuUz3c4QLzlRW9a98p4s6rUgyjf-mdmCek+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411936294408\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=L5SIqVPQ_DzcCouPUKqD38vNRqQHb185ONpqGeJ9sKs3RiFOVd6w0z6fF-aiQ9P4lYV5Ls0ctAZO3cP_SHYBdYCLO4P-pvCeNo78VCZx1pL69h9hF4JJqi5T13F7gXuR0KTe_31Sxy16o6WxgiHCFukQ7pHmY8YeovmDx_xhICjiLyS5WPMiYQuqTKU1k5G9B1rHckU8fH4KSsgCWQJ5uBbdDMTSrMSq2Nv5YIluWbBhHIpToBLLV6LkOYHmFCa71iZiXKYGPmQA38RSgjUhYQBgKML0GFcw-5D87H2KE4qACHa8RE8So25HIgWXI2WsbJS9PbPr7EAGsHQlE29CFw\u0026h=DC8JrY4C5PuUz3c4QLzlRW9a98p4s6rUgyjf-mdmCek", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "47" ], + "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00d664-0000-0800-0000-6716c0ce0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "031edb53-92f9-45f2-84e8-a7f5263abec3" ], + "x-ms-correlation-request-id": [ "1d93d829-bcd5-4a07-aa86-23e61f129a45" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210024Z:1d93d829-bcd5-4a07-aa86-23e61f129a45" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 283292D8AD544027B9621F0996ABB024 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:23Z" ], + "Date": [ "Mon, 21 Oct 2024 21:00:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "593" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "48" ], + "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00d664-0000-0800-0000-6716c0ce0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "fa41d9bc-0bed-4034-968b-59738909e863" ], + "x-ms-correlation-request-id": [ "6b289d72-e6d0-45a1-884c-a35920cc60aa" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210024Z:6b289d72-e6d0-45a1-884c-a35920cc60aa" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F08A82B8AA544DD08892D47F3AF188CA Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:24Z" ], + "Date": [ "Mon, 21 Oct 2024 21:00:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "593" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+DeleteNonexistent+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nonexistent?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nonexistent?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "49" ], + "x-ms-client-request-id": [ "0b5337ff-e0f5-41de-a13b-12cb5e6fec80" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 204, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-request-id": [ "5f0be9a3-c4a9-4a97-bbd0-3ecdff133ad1" ], + "x-ms-correlation-request-id": [ "5f0be9a3-c4a9-4a97-bbd0-3ecdff133ad1" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210024Z:5f0be9a3-c4a9-4a97-bbd0-3ecdff133ad1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 623D0086233441B2B02FFDA37C279C25 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:24Z" ], + "Date": [ "Mon, 21 Oct 2024 21:00:24 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "50" ], + "x-ms-client-request-id": [ "eb259b10-05b4-4c81-b7f6-b0dc62a34ab8" ], + "CommandName": [ "Get-AzHealthDeidService" ], + "FullCommandName": [ "Get-AzHealthDeidService_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101722d-0000-0800-0000-6716bed70000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "d5787545-7c9e-4e40-81d4-6985bffc545c" ], + "x-ms-correlation-request-id": [ "25f5c0d8-e26b-4daf-8c70-191f508cda9d" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210024Z:25f5c0d8-e26b-4daf-8c70-191f508cda9d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B252047502264B2597C3229C02BF30E9 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:24Z" ], + "Date": [ "Mon, 21 Oct 2024 21:00:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"name\":\"9nbgfp\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:51:28.3911208Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:51:28.3911208Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bfcjhrceffcaeyby.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp?api-version=2024-02-28-preview+2": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "51" ], + "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"81014b7e-0000-0800-0000-6716c0e90000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "798" ], + "x-ms-providerhub-traffic": [ "True" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8" ], + "x-ms-request-id": [ "2e6cf829-1505-4b6f-a800-b7fa3791c40c" ], + "x-ms-correlation-request-id": [ "108688c4-6860-48fb-8045-ffed1d2c053f" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11998" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210025Z:108688c4-6860-48fb-8045-ffed1d2c053f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FA4E2D8384124F92A54C0404D5DC529A Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:24Z" ], + "Date": [ "Mon, 21 Oct 2024 21:00:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "bnVsbA==", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "52" ], + "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a004169-0000-0800-0000-6716c0e90000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412561948258\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=RVII4loZeRCVztF4p3rrKk0XGJm8il6NfBbz0ZQJCVd27UPUTZhJYH09cZbyNw-Nsz3CT5V95QQ6Dm-YwNc5jVLaLJAPB2PL-ZyoCp8k-ygfxlnrUYMcgEdkEVzNaA3Q2CeNvvt5gl0-q1MiZmI24Sl4c7nBwVGd0VHC57B5PNt69MIxiGAgatXz9eFlNP68hC0tzeHYCqIIYiUTgG5kXxyv2z0k-5hitw59keuOVc_Xuz1tc9qCnCIz3ewY7AoQ55pu_t9FX1pbbXOj1ZA2GV0-b7cjqqzLOu-S8dOeyFP5MuuftxffdyEsLaPJgE4rozrjliXfCk357ZfMnvsvtQ\u0026h=neziMsI9H9H4YjAjJbrePNmIXmK5WSx5nW7-dgkdZoI" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412561791998\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=PJmN062EkUzLYpeXMi9Hu2vkCdpBQCpxxs9QsOy-5Yk1DVz4Vs6oe0Jew3CL5RqxlKDZc6N3J9ObSBTlMbesZxd64fTgKh8Q1TNRzFxr13IP1mkyneXf2aXdpVSvdG9psCeYn_NxOfcwtE75W4ak7MjVc5-8Wl0WCRdwJxDwNAxTxHfwyuSVAuz3sYqD0EgIuY7lg09-QDlxx_RI0cyv19OoL0LZonBF5MiQhR3kyrlXePeIJH4sWTGeC_JqK4Sy7r0V1T5iHZ5CtnUWMywfsXyFycGYhanagUQxUAQ69v3LIaXNaeu_1S-s2T16bcjE3OkZ6HNS0ltkQd-Jr5ONKg\u0026h=mzi9vfUnTnFh5bxJZz85yiPMqLP1sbuDfibFbIT6EgU" ], + "x-ms-request-id": [ "0a333944-84e7-4a60-891f-c0a86f906ee3" ], + "x-ms-correlation-request-id": [ "dff47f48-f98c-4bd1-a72a-64fd2947913a" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210056Z:dff47f48-f98c-4bd1-a72a-64fd2947913a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 526113D8D1EE4FDAA36B290D31721918 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:56Z" ], + "Date": [ "Mon, 21 Oct 2024 21:00:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\"}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412561791998\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=PJmN062EkUzLYpeXMi9Hu2vkCdpBQCpxxs9QsOy-5Yk1DVz4Vs6oe0Jew3CL5RqxlKDZc6N3J9ObSBTlMbesZxd64fTgKh8Q1TNRzFxr13IP1mkyneXf2aXdpVSvdG9psCeYn_NxOfcwtE75W4ak7MjVc5-8Wl0WCRdwJxDwNAxTxHfwyuSVAuz3sYqD0EgIuY7lg09-QDlxx_RI0cyv19OoL0LZonBF5MiQhR3kyrlXePeIJH4sWTGeC_JqK4Sy7r0V1T5iHZ5CtnUWMywfsXyFycGYhanagUQxUAQ69v3LIaXNaeu_1S-s2T16bcjE3OkZ6HNS0ltkQd-Jr5ONKg\u0026h=mzi9vfUnTnFh5bxJZz85yiPMqLP1sbuDfibFbIT6EgU+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412561791998\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=PJmN062EkUzLYpeXMi9Hu2vkCdpBQCpxxs9QsOy-5Yk1DVz4Vs6oe0Jew3CL5RqxlKDZc6N3J9ObSBTlMbesZxd64fTgKh8Q1TNRzFxr13IP1mkyneXf2aXdpVSvdG9psCeYn_NxOfcwtE75W4ak7MjVc5-8Wl0WCRdwJxDwNAxTxHfwyuSVAuz3sYqD0EgIuY7lg09-QDlxx_RI0cyv19OoL0LZonBF5MiQhR3kyrlXePeIJH4sWTGeC_JqK4Sy7r0V1T5iHZ5CtnUWMywfsXyFycGYhanagUQxUAQ69v3LIaXNaeu_1S-s2T16bcjE3OkZ6HNS0ltkQd-Jr5ONKg\u0026h=mzi9vfUnTnFh5bxJZz85yiPMqLP1sbuDfibFbIT6EgU", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "53" ], + "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a004169-0000-0800-0000-6716c0e90000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412864758146\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=junkhdgJRH2pL5xYDtGbopJAPY2v1CV7N323_L-qsu-GP03nl85qNohcv0V3Sl2kTFMY-64iPd22x0a5wN8HAMTTV5WnCHIG1kkJQmq_D6pCQMbnb0u2tpw2FSpsqdjh5TUYkR6QhsslEuUZci4YLjkicY4D-67yBwescFGRyVxblJXVanJY0Yz8OIsMVu-XlnptilVufNnjaJDnUCcP1z5N0S3FAA4J4mEonniJaQt37saEXXtmF4mi5IQS-Xf5K_UQgZxq_-Ma92LssgIIwVPFKv58kW-TXZczCVZhMnLRas4OZzSD7etWR2daTK2Quk0hbPikANMg7WqK7BlDdg\u0026h=WN-JJLAKSg42Ghmz_1tCyriBmNIT-pIVz3Vze8OaO9c" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412864558199\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jmSPnmEZ46Y-ODc1FhZA78V54zH-JHOxAFCErfyaokimkBP6cpXkc9fhCD-yJQdHDbeC91gB2l1cvGTe-nIkbTX6CX3XKB03bSfftM7nKpS85b963GSRVteft07BHrSkFCZCRPvh_-l-cdPdx10LLqibxXWvtxYFLxNL29z18f51adroL_BYW3_9OV7LC17q6mjASVVbBJxuGE7fbakZaJ46iHUZ4UInfLMJMXyfPDSGg6dupSASYBnrnF3U3V_dEn8FOpsb8fSvqVJqe6NHF4-QA08_Ce5XiFiRzBC-hDrOtedjPGqbB32gi6Bte_6ovny2TRgo2vS5-vtGjBxfGA\u0026h=FzisbMXhfteCGAT_9n4ycqN0UrGHuWezLO4eKzGGr-I" ], + "x-ms-request-id": [ "2faca0e1-8c2f-486f-a2ea-3b34d46496f7" ], + "x-ms-correlation-request-id": [ "c69814e8-3f5f-43e8-b75f-9cf77986a246" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210126Z:c69814e8-3f5f-43e8-b75f-9cf77986a246" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FA981AF4426F40D7A18218166A90EAEE Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:01:26Z" ], + "Date": [ "Mon, 21 Oct 2024 21:01:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\"}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412864558199\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jmSPnmEZ46Y-ODc1FhZA78V54zH-JHOxAFCErfyaokimkBP6cpXkc9fhCD-yJQdHDbeC91gB2l1cvGTe-nIkbTX6CX3XKB03bSfftM7nKpS85b963GSRVteft07BHrSkFCZCRPvh_-l-cdPdx10LLqibxXWvtxYFLxNL29z18f51adroL_BYW3_9OV7LC17q6mjASVVbBJxuGE7fbakZaJ46iHUZ4UInfLMJMXyfPDSGg6dupSASYBnrnF3U3V_dEn8FOpsb8fSvqVJqe6NHF4-QA08_Ce5XiFiRzBC-hDrOtedjPGqbB32gi6Bte_6ovny2TRgo2vS5-vtGjBxfGA\u0026h=FzisbMXhfteCGAT_9n4ycqN0UrGHuWezLO4eKzGGr-I+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412864558199\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jmSPnmEZ46Y-ODc1FhZA78V54zH-JHOxAFCErfyaokimkBP6cpXkc9fhCD-yJQdHDbeC91gB2l1cvGTe-nIkbTX6CX3XKB03bSfftM7nKpS85b963GSRVteft07BHrSkFCZCRPvh_-l-cdPdx10LLqibxXWvtxYFLxNL29z18f51adroL_BYW3_9OV7LC17q6mjASVVbBJxuGE7fbakZaJ46iHUZ4UInfLMJMXyfPDSGg6dupSASYBnrnF3U3V_dEn8FOpsb8fSvqVJqe6NHF4-QA08_Ce5XiFiRzBC-hDrOtedjPGqbB32gi6Bte_6ovny2TRgo2vS5-vtGjBxfGA\u0026h=FzisbMXhfteCGAT_9n4ycqN0UrGHuWezLO4eKzGGr-I", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "54" ], + "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a004169-0000-0800-0000-6716c0e90000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413167089606\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=N_ouC9C--TJNrXdGMEZJOgUJKYReP0ybLctU4oQ1twzZ2QwjnexZ7AfkPhajq_FZk1n2b6lcl7fYD6lepahXa3mP8Tbwki-xrya1kcpl65NAIsVvmKiBG9fAPrMK7kpNCRofG7Qxwmw0izv5TZve87pkF2NMACHG-GjZVhzr2SuGxpGcjszIAPhy9DOIj2Vae36arbAsKGrc0uNf7Pp6tze10LGogWyDz4slgtpoguofjmgY3tdwTB3Sv1iLictqrBnKJSqosdLeQrYJwxUitCeyOxJwIvNeTBuaw0Zkex6OyXQ8z9Xw-Hjp_XCgFIzYapEPspdxGREL_YMGKnDUsw\u0026h=hMxvLJUUdR7DwoW9mWjr3s9fNaprNvvcxyV2abiKFG4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413167089606\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=N_ouC9C--TJNrXdGMEZJOgUJKYReP0ybLctU4oQ1twzZ2QwjnexZ7AfkPhajq_FZk1n2b6lcl7fYD6lepahXa3mP8Tbwki-xrya1kcpl65NAIsVvmKiBG9fAPrMK7kpNCRofG7Qxwmw0izv5TZve87pkF2NMACHG-GjZVhzr2SuGxpGcjszIAPhy9DOIj2Vae36arbAsKGrc0uNf7Pp6tze10LGogWyDz4slgtpoguofjmgY3tdwTB3Sv1iLictqrBnKJSqosdLeQrYJwxUitCeyOxJwIvNeTBuaw0Zkex6OyXQ8z9Xw-Hjp_XCgFIzYapEPspdxGREL_YMGKnDUsw\u0026h=hMxvLJUUdR7DwoW9mWjr3s9fNaprNvvcxyV2abiKFG4" ], + "x-ms-request-id": [ "20afd0e2-71c6-49fc-ba6a-e33224afdcfb" ], + "x-ms-correlation-request-id": [ "9680d97f-3cc8-47e9-9de9-c8e018a7ea81" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210156Z:9680d97f-3cc8-47e9-9de9-c8e018a7ea81" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0376F2373B1A4B29994F319D3E2D5CCD Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:01:56Z" ], + "Date": [ "Mon, 21 Oct 2024 21:01:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\"}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413167089606\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=N_ouC9C--TJNrXdGMEZJOgUJKYReP0ybLctU4oQ1twzZ2QwjnexZ7AfkPhajq_FZk1n2b6lcl7fYD6lepahXa3mP8Tbwki-xrya1kcpl65NAIsVvmKiBG9fAPrMK7kpNCRofG7Qxwmw0izv5TZve87pkF2NMACHG-GjZVhzr2SuGxpGcjszIAPhy9DOIj2Vae36arbAsKGrc0uNf7Pp6tze10LGogWyDz4slgtpoguofjmgY3tdwTB3Sv1iLictqrBnKJSqosdLeQrYJwxUitCeyOxJwIvNeTBuaw0Zkex6OyXQ8z9Xw-Hjp_XCgFIzYapEPspdxGREL_YMGKnDUsw\u0026h=hMxvLJUUdR7DwoW9mWjr3s9fNaprNvvcxyV2abiKFG4+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413167089606\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=N_ouC9C--TJNrXdGMEZJOgUJKYReP0ybLctU4oQ1twzZ2QwjnexZ7AfkPhajq_FZk1n2b6lcl7fYD6lepahXa3mP8Tbwki-xrya1kcpl65NAIsVvmKiBG9fAPrMK7kpNCRofG7Qxwmw0izv5TZve87pkF2NMACHG-GjZVhzr2SuGxpGcjszIAPhy9DOIj2Vae36arbAsKGrc0uNf7Pp6tze10LGogWyDz4slgtpoguofjmgY3tdwTB3Sv1iLictqrBnKJSqosdLeQrYJwxUitCeyOxJwIvNeTBuaw0Zkex6OyXQ8z9Xw-Hjp_XCgFIzYapEPspdxGREL_YMGKnDUsw\u0026h=hMxvLJUUdR7DwoW9mWjr3s9fNaprNvvcxyV2abiKFG4", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "55" ], + "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a004169-0000-0800-0000-6716c0e90000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413469465423\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ZyzZa6o33vooMbHlq0aSxsri4mrpw5OdZShyrxFYoTORnKzRZWk-s15y3d7KE8CwneS8d1kT780rp_mSD_zJzK1Uzj9ZFC6Kq8V4VhsTiCfrrmWKkPjJfvEx-AiMV53cSESZeUGP1R1EisizyvqSuhnKF7h1mpnzXJouTEysH0mep2TaB1Q7bK7vbkqnn-Sqe5_iioy8HtRiaxeJJKcbaP6Az3-6SYXryHBmlMBdMozlnjv6JMy3XOKD4cutp1yRdeKX2o-KoEb2ahz6T5FVcm6j190-qdxVVBClZk17pwKe2HVXWofaFZnbXbFBE5Gi21o8nmgTPPEYdtMw_uo_Sw\u0026h=sGCUwGLUgl086QGjczIju3zYV626QPQ-RwFQwTMX8G0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413469465423\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ZyzZa6o33vooMbHlq0aSxsri4mrpw5OdZShyrxFYoTORnKzRZWk-s15y3d7KE8CwneS8d1kT780rp_mSD_zJzK1Uzj9ZFC6Kq8V4VhsTiCfrrmWKkPjJfvEx-AiMV53cSESZeUGP1R1EisizyvqSuhnKF7h1mpnzXJouTEysH0mep2TaB1Q7bK7vbkqnn-Sqe5_iioy8HtRiaxeJJKcbaP6Az3-6SYXryHBmlMBdMozlnjv6JMy3XOKD4cutp1yRdeKX2o-KoEb2ahz6T5FVcm6j190-qdxVVBClZk17pwKe2HVXWofaFZnbXbFBE5Gi21o8nmgTPPEYdtMw_uo_Sw\u0026h=sGCUwGLUgl086QGjczIju3zYV626QPQ-RwFQwTMX8G0" ], + "x-ms-request-id": [ "8025bc01-defd-4550-8df5-35468d436083" ], + "x-ms-correlation-request-id": [ "3b8972cb-686d-4eae-bd20-4675c3a95ec3" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210226Z:3b8972cb-686d-4eae-bd20-4675c3a95ec3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0A3279C3675D4C3EB54CAB0A90E1885E Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:02:26Z" ], + "Date": [ "Mon, 21 Oct 2024 21:02:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\"}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413469465423\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ZyzZa6o33vooMbHlq0aSxsri4mrpw5OdZShyrxFYoTORnKzRZWk-s15y3d7KE8CwneS8d1kT780rp_mSD_zJzK1Uzj9ZFC6Kq8V4VhsTiCfrrmWKkPjJfvEx-AiMV53cSESZeUGP1R1EisizyvqSuhnKF7h1mpnzXJouTEysH0mep2TaB1Q7bK7vbkqnn-Sqe5_iioy8HtRiaxeJJKcbaP6Az3-6SYXryHBmlMBdMozlnjv6JMy3XOKD4cutp1yRdeKX2o-KoEb2ahz6T5FVcm6j190-qdxVVBClZk17pwKe2HVXWofaFZnbXbFBE5Gi21o8nmgTPPEYdtMw_uo_Sw\u0026h=sGCUwGLUgl086QGjczIju3zYV626QPQ-RwFQwTMX8G0+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413469465423\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ZyzZa6o33vooMbHlq0aSxsri4mrpw5OdZShyrxFYoTORnKzRZWk-s15y3d7KE8CwneS8d1kT780rp_mSD_zJzK1Uzj9ZFC6Kq8V4VhsTiCfrrmWKkPjJfvEx-AiMV53cSESZeUGP1R1EisizyvqSuhnKF7h1mpnzXJouTEysH0mep2TaB1Q7bK7vbkqnn-Sqe5_iioy8HtRiaxeJJKcbaP6Az3-6SYXryHBmlMBdMozlnjv6JMy3XOKD4cutp1yRdeKX2o-KoEb2ahz6T5FVcm6j190-qdxVVBClZk17pwKe2HVXWofaFZnbXbFBE5Gi21o8nmgTPPEYdtMw_uo_Sw\u0026h=sGCUwGLUgl086QGjczIju3zYV626QPQ-RwFQwTMX8G0", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "56" ], + "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a006382-0000-0800-0000-6716c1670000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "f62de398-09ce-4ba9-9dc5-644e601cc14f" ], + "x-ms-correlation-request-id": [ "197ff4db-734e-4842-bd3e-d4afb89a6ef3" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210257Z:197ff4db-734e-4842-bd3e-d4afb89a6ef3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AEDB7A7B667647CFBBD05236884AF413 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:02:57Z" ], + "Date": [ "Mon, 21 Oct 2024 21:02:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "593" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "57" ], + "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], + "CommandName": [ "Remove-AzHealthDeidService" ], + "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a006382-0000-0800-0000-6716c1670000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "286c8c1d-d3cb-410d-a79c-df9dca718009" ], + "x-ms-correlation-request-id": [ "bdaf866c-7ed4-45fa-b3d9-e4bc4bee9a74" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210257Z:bdaf866c-7ed4-45fa-b3d9-e4bc4bee9a74" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6091DCC1236B4B50A68E558BE602DCD8 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:02:57Z" ], + "Date": [ "Mon, 21 Oct 2024 21:02:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "593" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\",\"properties\":null}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Tests.ps1 b/src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Tests.ps1 new file mode 100644 index 000000000000..2e1cbe2125f3 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Tests.ps1 @@ -0,0 +1,36 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Remove-AzHealthDeidService')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzHealthDeidService.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Remove-AzHealthDeidService' { + It 'Delete' { + { + Remove-AzHealthDeidService -Name $env.deidServiceNameToDelete1 -ResourceGroupName $env.resourceGroupName + } | Should -Not -Throw + } + + It 'DeleteNonexistent' { + { + Remove-AzHealthDeidService -Name "nonexistent" -ResourceGroupName $env.resourceGroupName + } | Should -Not -Throw + } + + It 'DeleteViaIdentity' { + { + $config = Get-AzHealthDeidService -Name $env.deidServiceNameToDelete2 -ResourceGroupName $env.resourceGroupName + Remove-AzHealthDeidService -InputObject $config + } | Should -Not -Throw + } +} diff --git a/src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Recording.json b/src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Recording.json new file mode 100644 index 000000000000..9ff697dafc27 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Recording.json @@ -0,0 +1,577 @@ +{ + "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "58" ], + "x-ms-client-request-id": [ "3dd0f8bb-bb19-4cd7-bec7-f49f972e8c7a" ], + "CommandName": [ "Update-AzHealthDeidService" ], + "FullCommandName": [ "Update-AzHealthDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101b602-0000-0800-0000-6716bdc20000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "37c23278-8e8e-4c19-b0af-33839e0bb1d9" ], + "x-ms-correlation-request-id": [ "40bff2c3-5a76-4064-b9d7-e21d63ef87c0" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210301Z:40bff2c3-5a76-4064-b9d7-e21d63ef87c0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 954B0E069C8B458BA08C95719A0D375D Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:03:01Z" ], + "Date": [ "Mon, 21 Oct 2024 21:03:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", + "Content": "{\n \"location\": \"eastus2\",\n \"properties\": {\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n }\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "138" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101b398-0000-0800-0000-6716c1870000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "0b3868f7-01e4-4675-bd4b-0e368b499105" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "b459768c-fb1a-457e-94b6-c794ea564680" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg" ], + "x-ms-request-id": [ "cb84517f-4c25-41e3-8597-cc5a7bb42991" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210303Z:b459768c-fb1a-457e-94b6-c794ea564680" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 09B7CCA2B13544279BA074D863D3654E Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:03:01Z" ], + "Date": [ "Mon, 21 Oct 2024 21:03:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "778" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T21:03:01.8143667Z\"},\"identity\":{\"principalId\":\"0c53d5ec-00e9-46a3-b662-2acee143ee3e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "60" ], + "x-ms-client-request-id": [ "3dd0f8bb-bb19-4cd7-bec7-f49f972e8c7a" ], + "CommandName": [ "Update-AzHealthDeidService" ], + "FullCommandName": [ "Update-AzHealthDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a008e87-0000-0800-0000-6716c1860000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "b24ee1c0-d24e-4c18-a5f2-abbb04943c6d" ], + "x-ms-correlation-request-id": [ "ee17370d-413b-4aad-bfc8-911524681a21" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210333Z:ee17370d-413b-4aad-bfc8-911524681a21" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3F1F993A62634C52A79410912304C231 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:03:33Z" ], + "Date": [ "Mon, 21 Oct 2024 21:03:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"name\":\"cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T21:03:02.7137485Z\"}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "61" ], + "x-ms-client-request-id": [ "3dd0f8bb-bb19-4cd7-bec7-f49f972e8c7a" ], + "CommandName": [ "Update-AzHealthDeidService" ], + "FullCommandName": [ "Update-AzHealthDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a008e87-0000-0800-0000-6716c1860000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "9f4e06be-fda8-4441-83c5-7b0c8550f824" ], + "x-ms-correlation-request-id": [ "98e63bd4-c1fd-47f5-92a6-6a45a4446dd7" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210403Z:98e63bd4-c1fd-47f5-92a6-6a45a4446dd7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C7063EC7E31842A6AA358AAC5F96FF23 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:03Z" ], + "Date": [ "Mon, 21 Oct 2024 21:04:03 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"name\":\"cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T21:03:02.7137485Z\"}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "62" ], + "x-ms-client-request-id": [ "3dd0f8bb-bb19-4cd7-bec7-f49f972e8c7a" ], + "CommandName": [ "Update-AzHealthDeidService" ], + "FullCommandName": [ "Update-AzHealthDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a001493-0000-0800-0000-6716c1c80000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "e0aad1d4-2784-4f94-bf62-77c9c76676d0" ], + "x-ms-correlation-request-id": [ "ec90fa99-d55c-456c-923c-0800238614c6" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210433Z:ec90fa99-d55c-456c-923c-0800238614c6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A8317CFD571A4FA89E145D543A2D3B07 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:33Z" ], + "Date": [ "Mon, 21 Oct 2024 21:04:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "634" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"name\":\"cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T21:03:02.7137485Z\",\"endTime\":\"2024-10-21T21:03:13.1643122Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "63" ], + "x-ms-client-request-id": [ "3dd0f8bb-bb19-4cd7-bec7-f49f972e8c7a" ], + "CommandName": [ "Update-AzHealthDeidService" ], + "FullCommandName": [ "Update-AzHealthDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8101589a-0000-0800-0000-6716c1910000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "2bcbc0fe-1ce9-427a-b520-9ae6b6cfd48b" ], + "x-ms-correlation-request-id": [ "1019237e-bc12-4060-b52e-3f185d6e70c6" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210434Z:1019237e-bc12-4060-b52e-3f185d6e70c6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2D4A4E5204C843CC81A71D293EA110A0 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:33Z" ], + "Date": [ "Mon, 21 Oct 2024 21:04:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "779" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T21:03:01.8143667Z\"},\"identity\":{\"principalId\":\"0c53d5ec-00e9-46a3-b662-2acee143ee3e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "64" ], + "x-ms-client-request-id": [ "40d74ecf-d3e8-4645-83f2-1370c376c27b" ], + "CommandName": [ "Get-AzHealthDeidService" ], + "FullCommandName": [ "Get-AzHealthDeidService_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"81011911-0000-0800-0000-6716be1e0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "9e2729e1-2cae-448f-bdea-ef8fd9b9ce8e" ], + "x-ms-correlation-request-id": [ "ca50fa6a-46b8-41c4-936b-f210c8e998e4" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210434Z:ca50fa6a-46b8-41c4-936b-f210c8e998e4" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 31EA560AFE894596BA0674C7F2858204 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:34Z" ], + "Date": [ "Mon, 21 Oct 2024 21:04:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:48:23.0398549Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "65" ], + "x-ms-client-request-id": [ "f5948403-e648-4217-bb57-89307c39eaa7" ], + "CommandName": [ "Update-AzHealthDeidService" ], + "FullCommandName": [ "Update-AzHealthDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"81011911-0000-0800-0000-6716be1e0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "99d05d45-bf5e-4a87-9b68-70948ec39de5" ], + "x-ms-correlation-request-id": [ "3488f52c-c4cd-432c-8996-88754b62e863" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210434Z:3488f52c-c4cd-432c-8996-88754b62e863" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B962167395464D1A956AC2D276D7B564 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:34Z" ], + "Date": [ "Mon, 21 Oct 2024 21:04:34 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:48:23.0398549Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview+3": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview", + "Content": "{\n \"tags\": {\n \"AzPwshTestKey\": \"AzPwshTestValue\"\n },\n \"location\": \"eastus2\",\n \"properties\": {\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n }\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "194" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"81010ca7-0000-0800-0000-6716c1e40000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "939316c3-4409-4b09-8924-e73860d7c4d8" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "b183dfa1-e203-4a34-b8d0-1d8e7bd8bd06" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg" ], + "x-ms-request-id": [ "021f56c2-01f6-4383-b5db-1f23f04cece8" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210437Z:b183dfa1-e203-4a34-b8d0-1d8e7bd8bd06" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C6B330C6517B46D69B89DD695B6DF21D Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:34Z" ], + "Date": [ "Mon, 21 Oct 2024 21:04:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "811" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T21:04:35.4730752Z\"},\"identity\":{\"principalId\":\"afdd9308-2f50-4881-b954-2dfcbd9dd87a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "67" ], + "x-ms-client-request-id": [ "f5948403-e648-4217-bb57-89307c39eaa7" ], + "CommandName": [ "Update-AzHealthDeidService" ], + "FullCommandName": [ "Update-AzHealthDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00a598-0000-0800-0000-6716c1e40000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "34b878ec-85bf-4d7d-8a6e-21ae5f925fe6" ], + "x-ms-correlation-request-id": [ "718a5c57-ee88-43fc-952e-e35a8d0f61a2" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210508Z:718a5c57-ee88-43fc-952e-e35a8d0f61a2" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9A66D3C081714F80A5AA87ED04FB6CD0 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:05:07Z" ], + "Date": [ "Mon, 21 Oct 2024 21:05:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"name\":\"021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T21:04:36.4340498Z\"}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "68" ], + "x-ms-client-request-id": [ "f5948403-e648-4217-bb57-89307c39eaa7" ], + "CommandName": [ "Update-AzHealthDeidService" ], + "FullCommandName": [ "Update-AzHealthDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00a598-0000-0800-0000-6716c1e40000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "a544539a-90ce-4891-9a55-e112414e6e88" ], + "x-ms-correlation-request-id": [ "22f58c5c-0b0b-4875-a51c-28e902e8b441" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210538Z:22f58c5c-0b0b-4875-a51c-28e902e8b441" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 942C7822EFFE4BB3BA93E79EF25590E5 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:05:38Z" ], + "Date": [ "Mon, 21 Oct 2024 21:05:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"name\":\"021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T21:04:36.4340498Z\"}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "69" ], + "x-ms-client-request-id": [ "f5948403-e648-4217-bb57-89307c39eaa7" ], + "CommandName": [ "Update-AzHealthDeidService" ], + "FullCommandName": [ "Update-AzHealthDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"8a00d9a6-0000-0800-0000-6716c2260000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "9b3d6ea2-8d43-4c3c-aa5d-f1d77b3c3c18" ], + "x-ms-correlation-request-id": [ "9f2e8e35-2af4-4c0d-b7cc-0f8783df1726" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210608Z:9f2e8e35-2af4-4c0d-b7cc-0f8783df1726" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 80FD99DE2A224DF6A675039851277A76 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:06:08Z" ], + "Date": [ "Mon, 21 Oct 2024 21:06:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "634" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"name\":\"021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T21:04:36.4340498Z\",\"endTime\":\"2024-10-21T21:04:45.7632484Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "70" ], + "x-ms-client-request-id": [ "f5948403-e648-4217-bb57-89307c39eaa7" ], + "CommandName": [ "Update-AzHealthDeidService" ], + "FullCommandName": [ "Update-AzHealthDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"810183a8-0000-0800-0000-6716c1ed0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "6ad9e82a-83cc-4a6a-94e8-ff7f038756a0" ], + "x-ms-correlation-request-id": [ "7c299eb1-d29e-4d61-a3b1-810b08fa255f" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241021T210608Z:7c299eb1-d29e-4d61-a3b1-810b08fa255f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6C0650B07143457683E07E0B136A9D07 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:06:08Z" ], + "Date": [ "Mon, 21 Oct 2024 21:06:07 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "812" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T21:04:35.4730752Z\"},\"identity\":{\"principalId\":\"afdd9308-2f50-4881-b954-2dfcbd9dd87a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Tests.ps1 b/src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Tests.ps1 new file mode 100644 index 000000000000..43cb0ea0ebf3 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Tests.ps1 @@ -0,0 +1,38 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Update-AzHealthDeidService')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzHealthDeidService.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Update-AzHealthDeidService' { + It 'UpdateExpanded' { + { + $config = Update-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName -EnableSystemAssignedIdentity:$true -PublicNetworkAccess "Disabled" + $config.Name | Should -Be $env.deidServiceName + $config.PublicNetworkAccess | Should -Be "Disabled" + $config.IdentityType | Should -Be "SystemAssigned" + } | Should -Not -Throw + } + + It 'UpdateViaIdentityExpanded' { + { + $config = Get-AzHealthDeidService -Name $env.deidServiceName2 -ResourceGroupName $env.resourceGroupName + $config2 = Update-AzHealthDeidService -InputObject $config -EnableSystemAssignedIdentity $true -PublicNetworkAccess "Disabled" -Tag @{ + AzPwshTestKey = "AzPwshTestValue" + } + $config2.Name | Should -Be $env.deidServiceName2 + $config2.PublicNetworkAccess | Should -Be "Disabled" + $config2.IdentityType | Should -Be "SystemAssigned" + } | Should -Not -Throw + } +} diff --git a/src/HealthDeid/HealthDeid.Autorest/test/env.json b/src/HealthDeid/HealthDeid.Autorest/test/env.json new file mode 100644 index 000000000000..ac00d899ac27 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/env.json @@ -0,0 +1,13 @@ +{ + "deidServiceName": "khpfg9", + "resourceGroupName": "azps-test-rg-eus2", + "SubscriptionId": "a49b70b4-60ee-4422-a7e2-3a5223f5fae4", + "deidServiceToCreateInTests3": "4tkz1n", + "location": "eastus2", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "deidServiceNameToDelete1": "qv4mlb", + "deidServiceNameToDelete2": "9nbgfp", + "deidServiceName2": "7p4kc5", + "deidServiceToCreateInTests2": "ci9tzs", + "deidServiceToCreateInTests1": "8gln5p" +} diff --git a/src/HealthDeid/HealthDeid.Autorest/test/jsonConfigs/deidServiceJson.json b/src/HealthDeid/HealthDeid.Autorest/test/jsonConfigs/deidServiceJson.json new file mode 100644 index 000000000000..7edb1a7f4333 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/jsonConfigs/deidServiceJson.json @@ -0,0 +1,6 @@ +{ + "location": "eastus", + "properties": { + "publicNetworkAccess": "Disabled" + } +} \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/loadEnv.ps1 b/src/HealthDeid/HealthDeid.Autorest/test/loadEnv.ps1 new file mode 100644 index 000000000000..6a7c385c6b7d --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/loadEnv.ps1 @@ -0,0 +1,29 @@ +# ---------------------------------------------------------------------------------- +# 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. +# ---------------------------------------------------------------------------------- +$envFile = 'env.json' +if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' +} + +if (Test-Path -Path (Join-Path $PSScriptRoot $envFile)) { + $envFilePath = Join-Path $PSScriptRoot $envFile +} else { + $envFilePath = Join-Path $PSScriptRoot '..\$envFile' +} +$env = @{} +if (Test-Path -Path $envFilePath) { + $env = Get-Content (Join-Path $PSScriptRoot $envFile) | ConvertFrom-Json + $PSDefaultParameterValues=@{"*:Tenant"=$env.Tenant} +} \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/utils.ps1 b/src/HealthDeid/HealthDeid.Autorest/test/utils.ps1 new file mode 100644 index 000000000000..2cc00c52f31d --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/test/utils.ps1 @@ -0,0 +1,94 @@ +function RandomString([bool]$allChars, [int32]$len) { + if ($allChars) { + return -join ((33..126) | Get-Random -Count $len | % { [char]$_ }) + } + else { + return -join ((48..57) + (97..122) | Get-Random -Count $len | % { [char]$_ }) + } +} +function Start-TestSleep { + [CmdletBinding(DefaultParameterSetName = 'SleepBySeconds')] + param( + [parameter(Mandatory = $true, Position = 0, ParameterSetName = 'SleepBySeconds')] + [ValidateRange(0.0, 2147483.0)] + [double] $Seconds, + + [parameter(Mandatory = $true, ParameterSetName = 'SleepByMilliseconds')] + [ValidateRange('NonNegative')] + [Alias('ms')] + [int] $Milliseconds + ) + + if ($TestMode -ne 'playback') { + switch ($PSCmdlet.ParameterSetName) { + 'SleepBySeconds' { + Start-Sleep -Seconds $Seconds + } + 'SleepByMilliseconds' { + Start-Sleep -Milliseconds $Milliseconds + } + } + } +} + +$env = @{} +if ($UsePreviousConfigForRecord) { + $previousEnv = Get-Content (Join-Path $PSScriptRoot 'env.json') | ConvertFrom-Json + $previousEnv.psobject.properties | Foreach-Object { $env[$_.Name] = $_.Value } +} +# Add script method called AddWithCache to $env, when useCache is set true, it will try to get the value from the $env first. +# example: $val = $env.AddWithCache('key', $val, $true) +$env | Add-Member -Type ScriptMethod -Value { param( [string]$key, [object]$val, [bool]$useCache) if ($this.Contains($key) -and $useCache) { return $this[$key] } else { $this[$key] = $val; return $val } } -Name 'AddWithCache' +function setupEnv() { + # Preload subscriptionId and tenant from context, which will be used in test + # as default. You could change them if needed. + $env.AddWithCache("SubscriptionId", (Get-AzContext).Subscription.Id, $true) + $env.AddWithCache("Tenant", (Get-AzContext).Tenant.Id, $true) + + $env.AddWithCache("location", "eastus2", $true) + + # Create the test resource group + Write-Host "Creating test resource group" + $resourceGroup = "azps-test-rg-eus2" + $env.AddWithCache("resourceGroupName", $resourceGroup, $true) + New-AzResourceGroup -Name $env.resourceGroupName -Location $env.location + Write-Host "Resource group created" + + $deidServiceName = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceName", $deidServiceName, $true) + $deidServiceName2 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceName2", $deidServiceName2, $true) + $deidServiceNameToDelete1 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceNameToDelete1", $deidServiceNameToDelete1, $true) + $deidServiceNameToDelete2 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceNameToDelete2", $deidServiceNameToDelete2, $true) + $deidServiceToCreateInTests1 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceToCreateInTests1", $deidServiceToCreateInTests1, $true) + $deidServiceToCreateInTests2 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceToCreateInTests2", $deidServiceToCreateInTests2, $true) + $deidServiceToCreateInTests3 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceToCreateInTests3", $deidServiceToCreateInTests3, $true) + + # Create resources to use in tests + Write-Output "Creating DeID services" + New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName -Location $env.location + New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName2 -Location $env.location + New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceNameToDelete1 -Location $env.location + New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceNameToDelete2 -Location $env.location + Write-Output "Finished creating DeID services" + + # For any resources you created for test, you should add it to $env here. + $envFile = 'env.json' + if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' + } + set-content -Path (Join-Path $PSScriptRoot $envFile) -Value (ConvertTo-Json $env) +} +function cleanupEnv() { + # Clean resources you create for testing + $resourceGroup = "azps-test-rg-eus2" + $env.AddWithCache("resourceGroupName", $resourceGroup, $true) + Remove-AzResourceGroup -Name $env.resourceGroupName + Write-Host "Resource group deleted" +} + diff --git a/src/HealthDeid/HealthDeid.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 b/src/HealthDeid/HealthDeid.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 new file mode 100644 index 000000000000..5319862d3372 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 @@ -0,0 +1,7 @@ +param() +if ($env:AzPSAutorestTestPlaybackMode) { + $loadEnvPath = Join-Path $PSScriptRoot '..' 'test' 'loadEnv.ps1' + . ($loadEnvPath) + return $env.SubscriptionId +} +return (Get-AzContext).Subscription.Id \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/utils/Unprotect-SecureString.ps1 b/src/HealthDeid/HealthDeid.Autorest/utils/Unprotect-SecureString.ps1 new file mode 100644 index 000000000000..cb05b51a6220 --- /dev/null +++ b/src/HealthDeid/HealthDeid.Autorest/utils/Unprotect-SecureString.ps1 @@ -0,0 +1,16 @@ +#This script converts securestring to plaintext + +param( + [Parameter(Mandatory, ValueFromPipeline)] + [System.Security.SecureString] + ${SecureString} +) + +$ssPtr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SecureString) +try { + $plaintext = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($ssPtr) +} finally { + [System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($ssPtr) +} + +return $plaintext \ No newline at end of file From 030a6c2f444091a746d5241eec17a7a648679741 Mon Sep 17 00:00:00 2001 From: Vincent Dai <23257217+vidai-msft@users.noreply.github.com> Date: Wed, 23 Oct 2024 03:26:23 -0700 Subject: [PATCH 09/16] Refactor test script and use Start-TestSleep instead of Start-Sleep to avoid waiting during playback (#26443) --- ...aProtectionBackupInstanceRestore.Tests.ps1 | 88 ++++++++--------- ...ventHubPrivateEndpointConnection.Tests.ps1 | 41 ++++---- ...New-AzEventHubGeoDRConfiguration.Tests.ps1 | 33 +++---- ...ntHubGeoDRConfigurationBreakPair.Tests.ps1 | 59 +++++------- ...entHubGeoDRConfigurationFailOver.Tests.ps1 | 63 +++++-------- src/EventHub/EventHub.Autorest/test/utils.ps1 | 51 ++++++++-- .../Backcompat/GetBuiltinsByName.Tests.ps1 | 10 +- .../test/PolicyFilter.Tests.ps1 | 14 +-- ...viceBusPrivateEndpointConnection.Tests.ps1 | 37 ++++---- ...w-AzServiceBusGeoDRConfiguration.Tests.ps1 | 31 +++--- ...ceBusGeoDRConfigurationBreakPair.Tests.ps1 | 61 +++++------- ...iceBusGeoDRConfigurationFailOver.Tests.ps1 | 65 ++++++------- .../Start-AzServiceBusMigration.Tests.ps1 | 47 +++++----- .../ServiceBus.Autorest/test/utils.ps1 | 51 ++++++++-- .../test/Update-AzSqlVM.Tests.ps1 | 94 +++++++++---------- 15 files changed, 372 insertions(+), 373 deletions(-) diff --git a/src/DataProtection/DataProtection.Autorest/test/Start-AzDataProtectionBackupInstanceRestore.Tests.ps1 b/src/DataProtection/DataProtection.Autorest/test/Start-AzDataProtectionBackupInstanceRestore.Tests.ps1 index 30f216541971..85c730b27712 100644 --- a/src/DataProtection/DataProtection.Autorest/test/Start-AzDataProtectionBackupInstanceRestore.Tests.ps1 +++ b/src/DataProtection/DataProtection.Autorest/test/Start-AzDataProtectionBackupInstanceRestore.Tests.ps1 @@ -5,7 +5,7 @@ if (-Not (Test-Path -Path $loadEnvPath)) { . ($loadEnvPath) $TestRecordingFile = Join-Path $PSScriptRoot 'Start-AzDataProtectionBackupInstanceRestore.Recording.json' $currentPath = $PSScriptRoot -while(-not $mockingPath) { +while (-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File $currentPath = Split-Path -Path $currentPath -Parent } @@ -21,29 +21,28 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { $backupInstanceName = $env.TestPGFlexRestore.BackupInstanceName $vault = Get-AzDataProtectionBackupVault -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $vaultName - - $instance = Get-AzDataProtectionBackupInstance -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $vaultName | Where-Object { $_.Name -match $backupInstanceName } - + + $instance = Get-AzDataProtectionBackupInstance -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $vaultName | Where-Object { $_.Name -match $backupInstanceName } + ($instance -ne $null) | Should be $true - # Trigger Backup + # Trigger Backup $policy = Get-AzDataProtectionBackupPolicy -SubscriptionId $subId -VaultName $vaultName -ResourceGroupName $resourceGroupName -Name $policyName $backupJob = Backup-AzDataProtectionBackupInstanceAdhoc -BackupInstanceName $instance.Name -ResourceGroupName $resourceGroupName -SubscriptionId $subId -VaultName $vaultName -BackupRuleOptionRuleName $policy.Property.PolicyRule[0].Name -TriggerOptionRetentionTagOverride $policy.Property.PolicyRule[0].Trigger.TaggingCriterion[0].TagInfoTagName $jobid = $backupJob.JobId.Split("/")[-1] $jobstatus = "InProgress" - while($jobstatus -eq "InProgress") - { - Start-Sleep -Seconds 10 + while ($jobstatus -eq "InProgress") { + Start-TestSleep -Seconds 10 $currentjob = Get-AzDataProtectionJob -Id $jobid -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $vaultName $jobstatus = $currentjob.Status } $jobstatus | Should be "Completed" - Start-Sleep -Seconds 5 + Start-TestSleep -Seconds 5 - # Database restore + # Database restore $rps = Get-AzDataProtectionRecoveryPoint -BackupInstanceName $instance.BackupInstanceName -ResourceGroupName $resourceGroupName -SubscriptionId $subId -VaultName $vaultName $pgFlexRestoreReqFiles = Initialize-AzDataProtectionRestoreRequest -DatasourceType AzureDatabaseForPGFlexServer -SourceDataStore VaultStore -RestoreLocation $vault.Location -RestoreType RestoreAsFiles -RecoveryPoint $rps[0].Property.RecoveryPointId -TargetContainerURI $targetContainerURI @@ -53,15 +52,14 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { $operationRequests = $proxy.ResourceGuardOperationDetail.DefaultResourceRequest $resourceGuardOperationRequest = $operationRequests | Where-Object { $_ -match "dppTriggerRestoreRequests" } - $restoreFilesJob = Start-AzDataProtectionBackupInstanceRestore -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $VaultName -BackupInstanceName $instance.BackupInstanceName -Parameter $pgFlexRestoreReqFiles -ResourceGuardOperationRequest $resourceGuardOperationRequest + $restoreFilesJob = Start-AzDataProtectionBackupInstanceRestore -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $VaultName -BackupInstanceName $instance.BackupInstanceName -Parameter $pgFlexRestoreReqFiles -ResourceGuardOperationRequest $resourceGuardOperationRequest $jobid = $restoreFilesJob.JobId.Split("/")[-1] ($jobid -ne $null) | Should be $true $jobstatus = "InProgress" - while($jobstatus -eq "InProgress") - { - Start-Sleep -Seconds 10 + while ($jobstatus -eq "InProgress") { + Start-TestSleep -Seconds 10 $currentjob = Get-AzDataProtectionJob -Id $jobid -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $vaultName $jobstatus = $currentjob.Status } @@ -77,42 +75,40 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { $backupInstanceName = $env.TestMySQLRestore.BackupInstanceName $vault = Get-AzDataProtectionBackupVault -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $vaultName - - $instance = Get-AzDataProtectionBackupInstance -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $vaultName | Where-Object { $_.Name -match $backupInstanceName } - + + $instance = Get-AzDataProtectionBackupInstance -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $vaultName | Where-Object { $_.Name -match $backupInstanceName } + ($instance -ne $null) | Should be $true - # Trigger Backup + # Trigger Backup $policy = Get-AzDataProtectionBackupPolicy -SubscriptionId $subId -VaultName $vaultName -ResourceGroupName $resourceGroupName -Name $policyName $backupJob = Backup-AzDataProtectionBackupInstanceAdhoc -BackupInstanceName $instance.Name -ResourceGroupName $resourceGroupName -SubscriptionId $subId -VaultName $vaultName -BackupRuleOptionRuleName $policy.Property.PolicyRule[1].Name -TriggerOptionRetentionTagOverride $policy.Property.PolicyRule[1].Trigger.TaggingCriterion[0].TagInfoTagName $jobid = $backupJob.JobId.Split("/")[-1] $jobstatus = "InProgress" - while($jobstatus -eq "InProgress") - { - Start-Sleep -Seconds 10 + while ($jobstatus -eq "InProgress") { + Start-TestSleep -Seconds 10 $currentjob = Get-AzDataProtectionJob -Id $jobid -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $vaultName $jobstatus = $currentjob.Status } $jobstatus | Should be "Completed" - Start-Sleep -Seconds 5 + Start-TestSleep -Seconds 5 - # Database restore + # Database restore $rps = Get-AzDataProtectionRecoveryPoint -BackupInstanceName $instance.BackupInstanceName -ResourceGroupName $resourceGroupName -SubscriptionId $subId -VaultName $vaultName $mySQLRestoreReqFiles = Initialize-AzDataProtectionRestoreRequest -DatasourceType AzureDatabaseForMySQL -SourceDataStore VaultStore -RestoreLocation $vault.Location -RestoreType RestoreAsFiles -RecoveryPoint $rps[0].Property.RecoveryPointId -TargetContainerURI $targetContainerURI - $restoreFilesJob = Start-AzDataProtectionBackupInstanceRestore -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $VaultName -BackupInstanceName $instance.BackupInstanceName -Parameter $mySQLRestoreReqFiles + $restoreFilesJob = Start-AzDataProtectionBackupInstanceRestore -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $VaultName -BackupInstanceName $instance.BackupInstanceName -Parameter $mySQLRestoreReqFiles $jobid = $restoreFilesJob.JobId.Split("/")[-1] ($jobid -ne $null) | Should be $true $jobstatus = "InProgress" - while($jobstatus -eq "InProgress") - { - Start-Sleep -Seconds 10 + while ($jobstatus -eq "InProgress") { + Start-TestSleep -Seconds 10 $currentjob = Get-AzDataProtectionJob -Id $jobid -SubscriptionId $subId -ResourceGroupName $resourceGroupName -VaultName $vaultName $jobstatus = $currentjob.Status } @@ -120,7 +116,7 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { } It 'CrossRegionRestoreAsDatabase' -skip { - $resourceGroupName = $env.TestCrossRegionRestoreScenario.ResourceGroupName + $resourceGroupName = $env.TestCrossRegionRestoreScenario.ResourceGroupName $vaultName = $env.TestCrossRegionRestoreScenario.VaultName $subscriptionId = $env.TestCrossRegionRestoreScenario.SubscriptionId $targetResourceId = $env.TestCrossRegionRestoreScenario.TargetResourceId @@ -128,7 +124,7 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { $vault = Search-AzDataProtectionBackupVaultInAzGraph -ResourceGroup $resourceGroupName -Subscription $subscriptionId -Vault $vaultName -UseSecondaryRegion - $instance = Search-AzDataProtectionBackupInstanceInAzGraph -Subscription $subscriptionId -ResourceGroup $resourceGroupName -Vault $vaultName -DatasourceType AzureDatabaseForPostgreSQL + $instance = Search-AzDataProtectionBackupInstanceInAzGraph -Subscription $subscriptionId -ResourceGroup $resourceGroupName -Vault $vaultName -DatasourceType AzureDatabaseForPostgreSQL $recoveryPointsCrr = Get-AzDataProtectionRecoveryPoint -BackupInstanceName $instance[0].Name -ResourceGroupName $resourceGroupName -VaultName $vaultName -SubscriptionId $subscriptionId -UseSecondaryRegion @@ -145,8 +141,7 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { ($jobid -ne $null) | Should be $true $jobstatus = "InProgress" - while($jobstatus -eq "InProgress") - { + while ($jobstatus -eq "InProgress") { Start-TestSleep -Seconds 10 $currentjob = Get-AzDataProtectionJob -Id $jobid -SubscriptionId $subscriptionId -ResourceGroupName $resourceGroupName -VaultName $vaultName -UseSecondaryRegion @@ -160,7 +155,7 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { It 'CrossRegionRestoreAsFiles' -skip { $recordDate = $env.RecordDate - $resourceGroupName = $env.TestCrossRegionRestoreScenario.ResourceGroupName + $resourceGroupName = $env.TestCrossRegionRestoreScenario.ResourceGroupName $vaultName = $env.TestCrossRegionRestoreScenario.VaultName $subscriptionId = $env.TestCrossRegionRestoreScenario.SubscriptionId $targetContainerURI = $env.TestCrossRegionRestoreScenario.TargetContainerURI @@ -168,7 +163,7 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { $vault = Search-AzDataProtectionBackupVaultInAzGraph -ResourceGroup $resourceGroupName -Subscription $subscriptionId -Vault $vaultName -UseSecondaryRegion - $instance = Search-AzDataProtectionBackupInstanceInAzGraph -Subscription $subscriptionId -ResourceGroup $resourceGroupName -Vault $vaultName -DatasourceType AzureDatabaseForPostgreSQL + $instance = Search-AzDataProtectionBackupInstanceInAzGraph -Subscription $subscriptionId -ResourceGroup $resourceGroupName -Vault $vaultName -DatasourceType AzureDatabaseForPostgreSQL $recoveryPointsCrr = Get-AzDataProtectionRecoveryPoint -BackupInstanceName $instance[0].Name -ResourceGroupName $resourceGroupName -VaultName $vaultName -SubscriptionId $subscriptionId -UseSecondaryRegion @@ -185,8 +180,7 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { ($jobid -ne $null) | Should be $true $jobstatus = "InProgress" - while($jobstatus -ne "Completed") - { + while ($jobstatus -ne "Completed") { Start-TestSleep -Seconds 10 $currentjob = Get-AzDataProtectionJob -Id $jobid -SubscriptionId $subscriptionId -ResourceGroupName $resourceGroupName -VaultName $vaultName -UseSecondaryRegion @@ -199,7 +193,7 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { It 'CrossSubscriptionRestore' { $recordDate = $env.RecordDate - $resourceGroupName = $env.TestCrossSubscriptionRestoreScenario.ResourceGroupName + $resourceGroupName = $env.TestCrossSubscriptionRestoreScenario.ResourceGroupName $vaultName = $env.TestCrossSubscriptionRestoreScenario.VaultName $subscriptionId = $env.TestCrossSubscriptionRestoreScenario.SubscriptionId $targetContainerArmId = $env.TestCrossSubscriptionRestoreScenario.TargetContainerArmId @@ -223,8 +217,7 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { ($jobid -ne $null) | Should be $true $jobstatus = "InProgress" - while($jobstatus -eq "InProgress") - { + while ($jobstatus -eq "InProgress") { Start-TestSleep -Seconds 10 $currentjob = Get-AzDataProtectionJob -Id $jobid -SubscriptionId $subscriptionId -ResourceGroupName $resourceGroupName -VaultName $vaultName $jobstatus = $currentjob.Status @@ -247,21 +240,20 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { $targetContainerURI = $env.TestOssBackupScenario.TargetContainerURI $fileNamePrefix = $env.TestOssBackupScenario.FileNamePrefix + "-" + $recordDate - $vault = Get-AzDataProtectionBackupVault -SubscriptionId $sub -ResourceGroupName $rgName -VaultName $vaultName + $vault = Get-AzDataProtectionBackupVault -SubscriptionId $sub -ResourceGroupName $rgName -VaultName $vaultName - $instance = Get-AzDataProtectionBackupInstance -Subscription $sub -ResourceGroup $rgName -Vault $vaultName | Where-Object {($_.Property.DataSourceInfo.Type -eq "Microsoft.DBforPostgreSQL/servers/databases") -and ($_.Property.DataSourceInfo.ResourceId -match $serverName)} + $instance = Get-AzDataProtectionBackupInstance -Subscription $sub -ResourceGroup $rgName -Vault $vaultName | Where-Object { ($_.Property.DataSourceInfo.Type -eq "Microsoft.DBforPostgreSQL/servers/databases") -and ($_.Property.DataSourceInfo.ResourceId -match $serverName) } ($instance -ne $null) | Should be $true # Trigger Backup - $policy = Get-AzDataProtectionBackupPolicy -SubscriptionId $sub -VaultName $vaultName -ResourceGroupName $rgName | Where-Object {$_.Name -eq $policyName} + $policy = Get-AzDataProtectionBackupPolicy -SubscriptionId $sub -VaultName $vaultName -ResourceGroupName $rgName | Where-Object { $_.Name -eq $policyName } $backupJob = Backup-AzDataProtectionBackupInstanceAdhoc -BackupInstanceName $instance.Name -ResourceGroupName $rgName -SubscriptionId $sub -VaultName $vaultName -BackupRuleOptionRuleName $policy.Property.PolicyRule[0].Name -TriggerOptionRetentionTagOverride $policy.Property.PolicyRule[0].Trigger.TaggingCriterion[0].TagInfoTagName $jobid = $backupJob.JobId.Split("/")[-1] $jobstatus = "InProgress" - while($jobstatus -eq "InProgress") - { + while ($jobstatus -eq "InProgress") { Start-TestSleep -Seconds 10 $currentjob = Get-AzDataProtectionJob -Id $jobid -SubscriptionId $sub -ResourceGroupName $rgName -VaultName $vaultName $jobstatus = $currentjob.Status @@ -283,8 +275,7 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { ($jobid -ne $null) | Should be $true $jobstatus = "InProgress" - while($jobstatus -eq "InProgress") - { + while ($jobstatus -eq "InProgress") { Start-TestSleep -Seconds 10 $currentjob = Get-AzDataProtectionJob -Id $jobid -SubscriptionId $sub -ResourceGroupName $rgName -VaultName $vaultName $jobstatus = $currentjob.Status @@ -296,7 +287,7 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { # RestoreAsFiles $rps = Get-AzDataProtectionRecoveryPoint -BackupInstanceName $instance.Name -ResourceGroupName $rgName -SubscriptionId $sub -VaultName $vaultName - $OssRestoreReqFiles = Initialize-AzDataProtectionRestoreRequest -DatasourceType AzureDatabaseForPostgreSQL -SourceDataStore VaultStore -RestoreLocation $vault.Location -RestoreType RestoreAsFiles -RecoveryPoint $rps[0].Property.RecoveryPointId -TargetContainerURI $targetContainerURI -FileNamePrefix $fileNamePrefix + $OssRestoreReqFiles = Initialize-AzDataProtectionRestoreRequest -DatasourceType AzureDatabaseForPostgreSQL -SourceDataStore VaultStore -RestoreLocation $vault.Location -RestoreType RestoreAsFiles -RecoveryPoint $rps[0].Property.RecoveryPointId -TargetContainerURI $targetContainerURI -FileNamePrefix $fileNamePrefix $restoreFilesJob = Start-AzDataProtectionBackupInstanceRestore -BackupInstanceName $instance.Name -ResourceGroupName $rgName -VaultName $vaultName -SubscriptionId $sub -Parameter $OssRestoreReqFiles @@ -304,14 +295,13 @@ Describe 'Start-AzDataProtectionBackupInstanceRestore' { ($jobid -ne $null) | Should be $true $jobstatus = "InProgress" - while($jobstatus -eq "InProgress") - { + while ($jobstatus -eq "InProgress") { Start-TestSleep -Seconds 10 $currentjob = Get-AzDataProtectionJob -Id $jobid -SubscriptionId $sub -ResourceGroupName $rgName -VaultName $vaultName $jobstatus = $currentjob.Status } $jobstatus | Should be "Completed" - } + } It 'TriggerExpanded' -skip { { throw [System.NotImplementedException] } | Should -Not -Throw diff --git a/src/EventHub/EventHub.Autorest/test/Approve-AzEventHubPrivateEndpointConnection.Tests.ps1 b/src/EventHub/EventHub.Autorest/test/Approve-AzEventHubPrivateEndpointConnection.Tests.ps1 index 30611fe2278c..07562e8d8c65 100644 --- a/src/EventHub/EventHub.Autorest/test/Approve-AzEventHubPrivateEndpointConnection.Tests.ps1 +++ b/src/EventHub/EventHub.Autorest/test/Approve-AzEventHubPrivateEndpointConnection.Tests.ps1 @@ -1,22 +1,21 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Approve-AzEventHubPrivateEndpointConnection')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Approve-AzEventHubPrivateEndpointConnection.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName +if (($null -eq $TestName) -or ($TestName -contains 'Approve-AzEventHubPrivateEndpointConnection')) { + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Approve-AzEventHubPrivateEndpointConnection.Recording.json' + $currentPath = $PSScriptRoot + while (-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName } Describe 'Approve-AzEventHubPrivateEndpointConnection' { $privateEndpoint = Get-AzEventHubPrivateEndpointConnection -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace - + It 'SetExpanded' { $privateEndpoint[0].ConnectionState | Should -Be "Pending" $privateEndpoint[0].Description | Should -Be "Hello" @@ -25,11 +24,9 @@ Describe 'Approve-AzEventHubPrivateEndpointConnection' { $firstPrivateEndpoint.ConnectionState | Should -Be "Approved" $firstPrivateEndpoint.Description | Should -Be "" - while($firstPrivateEndpoint.ProvisioningState -ne "Succeeded"){ + while ($firstPrivateEndpoint.ProvisioningState -ne "Succeeded") { $firstPrivateEndpoint = Get-AzEventHubPrivateEndpointConnection -Name $privateEndpoint[0].Name -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } } @@ -40,11 +37,9 @@ Describe 'Approve-AzEventHubPrivateEndpointConnection' { $secondPrivateEndpoint.ConnectionState | Should -Be "Approved" $secondPrivateEndpoint.Description | Should -Be "Bye" - while($secondPrivateEndpoint.ProvisioningState -ne "Succeeded"){ + while ($secondPrivateEndpoint.ProvisioningState -ne "Succeeded") { $secondPrivateEndpoint = Get-AzEventHubPrivateEndpointConnection -Name $privateEndpoint[1].Name -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } } } diff --git a/src/EventHub/EventHub.Autorest/test/New-AzEventHubGeoDRConfiguration.Tests.ps1 b/src/EventHub/EventHub.Autorest/test/New-AzEventHubGeoDRConfiguration.Tests.ps1 index 1597f675738f..31ef6f85e949 100644 --- a/src/EventHub/EventHub.Autorest/test/New-AzEventHubGeoDRConfiguration.Tests.ps1 +++ b/src/EventHub/EventHub.Autorest/test/New-AzEventHubGeoDRConfiguration.Tests.ps1 @@ -1,17 +1,16 @@ -if(($null -eq $TestName) -or ($TestName -contains 'New-AzEventHubGeoDRConfiguration')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzEventHubGeoDRConfiguration.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName +if (($null -eq $TestName) -or ($TestName -contains 'New-AzEventHubGeoDRConfiguration')) { + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzEventHubGeoDRConfiguration.Recording.json' + $currentPath = $PSScriptRoot + while (-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName } Describe 'New-AzEventHubGeoDRConfiguration' { @@ -22,11 +21,9 @@ Describe 'New-AzEventHubGeoDRConfiguration' { $drConfig.PartnerNamespace | Should -Be $env.secondaryNamespaceResourceId $drConfig.Role | Should -Be "Primary" - while($drConfig.ProvisioningState -ne "Succeeded"){ + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } $drConfig = Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace diff --git a/src/EventHub/EventHub.Autorest/test/Set-AzEventHubGeoDRConfigurationBreakPair.Tests.ps1 b/src/EventHub/EventHub.Autorest/test/Set-AzEventHubGeoDRConfigurationBreakPair.Tests.ps1 index 6aad848feb6e..c5ad2d190b94 100644 --- a/src/EventHub/EventHub.Autorest/test/Set-AzEventHubGeoDRConfigurationBreakPair.Tests.ps1 +++ b/src/EventHub/EventHub.Autorest/test/Set-AzEventHubGeoDRConfigurationBreakPair.Tests.ps1 @@ -1,28 +1,25 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Set-AzEventHubGeoDRConfigurationBreakPair')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzEventHubGeoDRConfigurationBreakPair.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName +if (($null -eq $TestName) -or ($TestName -contains 'Set-AzEventHubGeoDRConfigurationBreakPair')) { + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzEventHubGeoDRConfigurationBreakPair.Recording.json' + $currentPath = $PSScriptRoot + while (-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName } Describe 'Set-AzEventHubGeoDRConfigurationBreakPair' { It 'Break' -skip:$($env.secondaryLocation -eq '') { Set-AzEventHubGeoDRConfigurationBreakPair -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace -Name $env.alias - - while($drConfig.ProvisioningState -ne "Succeeded"){ + + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } $drConfig.Name | Should -Be $env.alias @@ -32,11 +29,9 @@ Describe 'Set-AzEventHubGeoDRConfigurationBreakPair' { $drConfig = New-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace -PartnerNamespace $env.secondaryNamespaceResourceId - while($drConfig.ProvisioningState -ne "Succeeded"){ + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } } @@ -44,13 +39,11 @@ Describe 'Set-AzEventHubGeoDRConfigurationBreakPair' { $drConfig = Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace Set-AzEventHubGeoDRConfigurationBreakPair -InputObject $drConfig - - do{ + + do { $drConfig = Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } - } while($drConfig.ProvisioningState -ne "Succeeded") + Start-TestSleep 10 + } while ($drConfig.ProvisioningState -ne "Succeeded") $drConfig.Name | Should -Be $env.alias $drConfig.ResourceGroupName | Should -Be $env.resourceGroup @@ -58,12 +51,10 @@ Describe 'Set-AzEventHubGeoDRConfigurationBreakPair' { $drConfig.Role | Should -Be "PrimaryNotReplicating" $drConfig = New-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace -PartnerNamespace $env.secondaryNamespaceResourceId - - while($drConfig.ProvisioningState -ne "Succeeded"){ + + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } } } diff --git a/src/EventHub/EventHub.Autorest/test/Set-AzEventHubGeoDRConfigurationFailOver.Tests.ps1 b/src/EventHub/EventHub.Autorest/test/Set-AzEventHubGeoDRConfigurationFailOver.Tests.ps1 index d35a71e9986b..2aa4487be410 100644 --- a/src/EventHub/EventHub.Autorest/test/Set-AzEventHubGeoDRConfigurationFailOver.Tests.ps1 +++ b/src/EventHub/EventHub.Autorest/test/Set-AzEventHubGeoDRConfigurationFailOver.Tests.ps1 @@ -1,28 +1,25 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Set-AzEventHubGeoDRConfigurationFailOver')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzEventHubGeoDRConfigurationFailOver.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName +if (($null -eq $TestName) -or ($TestName -contains 'Set-AzEventHubGeoDRConfigurationFailOver')) { + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzEventHubGeoDRConfigurationFailOver.Recording.json' + $currentPath = $PSScriptRoot + while (-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName } Describe 'Set-AzEventHubGeoDRConfigurationFailOver' { It 'Fail' -skip:$($env.secondaryLocation -eq '') { Set-AzEventHubGeoDRConfigurationFailOver -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace -Name $env.alias - - while($drConfig.ProvisioningState -ne "Succeeded"){ + + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } $drConfig.Name | Should -Be $env.alias @@ -31,29 +28,23 @@ Describe 'Set-AzEventHubGeoDRConfigurationFailOver' { $drConfig.Role | Should -Be "PrimaryNotReplicating" $drConfig = Remove-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 180 - } + Start-TestSleep 180 $drConfig = New-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace -PartnerNamespace $env.secondaryNamespaceResourceId - - while($drConfig.ProvisioningState -ne "Succeeded"){ + + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } } It 'FailViaIdentity' -skip:$($env.secondaryLocation -eq '') { $drConfig = Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace - + Set-AzEventHubGeoDRConfigurationFailOver -InputObject $drConfig - + do { $drConfig = Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } - } while($drConfig.ProvisioningState -ne "Succeeded") + Start-TestSleep 10 + } while ($drConfig.ProvisioningState -ne "Succeeded") $drConfig.Name | Should -Be $env.alias $drConfig.ResourceGroupName | Should -Be $env.resourceGroup @@ -61,10 +52,8 @@ Describe 'Set-AzEventHubGeoDRConfigurationFailOver' { $drConfig.Role | Should -Be "PrimaryNotReplicating" $drConfig = Remove-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace - - if ($TestMode -ne 'playback') { - Start-Sleep 180 - } + + Start-TestSleep 180 { Get-AzEventHubGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace -ErrorAction Stop } | Should -Throw } diff --git a/src/EventHub/EventHub.Autorest/test/utils.ps1 b/src/EventHub/EventHub.Autorest/test/utils.ps1 index e94303f4be31..9a9b68c9cbd8 100644 --- a/src/EventHub/EventHub.Autorest/test/utils.ps1 +++ b/src/EventHub/EventHub.Autorest/test/utils.ps1 @@ -1,10 +1,36 @@ function RandomString([bool]$allChars, [int32]$len) { if ($allChars) { - return -join ((33..126) | Get-Random -Count $len | % {[char]$_}) - } else { - return -join ((48..57) + (97..122) | Get-Random -Count $len | % {[char]$_}) + return -join ((33..126) | Get-Random -Count $len | % { [char]$_ }) + } + else { + return -join ((48..57) + (97..122) | Get-Random -Count $len | % { [char]$_ }) } } +function Start-TestSleep { + [CmdletBinding(DefaultParameterSetName = 'SleepBySeconds')] + param( + [parameter(Mandatory = $true, Position = 0, ParameterSetName = 'SleepBySeconds')] + [ValidateRange(0.0, 2147483.0)] + [double] $Seconds, + + [parameter(Mandatory = $true, ParameterSetName = 'SleepByMilliseconds')] + [ValidateRange('NonNegative')] + [Alias('ms')] + [int] $Milliseconds + ) + + if ($TestMode -ne 'playback') { + switch ($PSCmdlet.ParameterSetName) { + 'SleepBySeconds' { + Start-Sleep -Seconds $Seconds + } + 'SleepByMilliseconds' { + Start-Sleep -Milliseconds $Milliseconds + } + } + } +} + $env = @{} if ($UsePreviousConfigForRecord) { $previousEnv = Get-Content (Join-Path $PSScriptRoot 'env.json') | ConvertFrom-Json @@ -12,7 +38,12 @@ if ($UsePreviousConfigForRecord) { } # Add script method called AddWithCache to $env, when useCache is set true, it will try to get the value from the $env first. # example: $val = $env.AddWithCache('key', $val, $true) -$env | Add-Member -Type ScriptMethod -Value { param( [string]$key, [object]$val, [bool]$useCache) if ($this.Contains($key) -and $useCache) { return $this[$key] } else { $this[$key] = $val; return $val } } -Name 'AddWithCache' +$env | Add-Member -Type ScriptMethod -Value { param( [string]$key, [object]$val, [bool]$useCache) if ($this.Contains($key) -and $useCache) { + return $this[$key] + } + else { + $this[$key] = $val; return $val + } } -Name 'AddWithCache' function setupEnv( $location = 'eastus', $secondaryLocation = 'southcentralus', @@ -221,13 +252,13 @@ function setupEnv( } function GenerateSASKey { - [Reflection.Assembly]::LoadWithPartialName("System.Web")| out-null - $URI="myNamespace.servicebus.windows.net/myEventHub" - $Access_Policy_Name="RootManageSharedAccessKey" - $Access_Policy_Key="myPrimaryKey" + [Reflection.Assembly]::LoadWithPartialName("System.Web") | out-null + $URI = "myNamespace.servicebus.windows.net/myEventHub" + $Access_Policy_Name = "RootManageSharedAccessKey" + $Access_Policy_Key = "myPrimaryKey" #Token expires now+300 - $Expires=([DateTimeOffset]::Now.ToUnixTimeSeconds())+300 - $SignatureString=[System.Web.HttpUtility]::UrlEncode($URI)+ "`n" + [string]$Expires + $Expires = ([DateTimeOffset]::Now.ToUnixTimeSeconds()) + 300 + $SignatureString = [System.Web.HttpUtility]::UrlEncode($URI) + "`n" + [string]$Expires $HMAC = New-Object System.Security.Cryptography.HMACSHA256 $HMAC.key = [Text.Encoding]::ASCII.GetBytes($Access_Policy_Key) $Signature = $HMAC.ComputeHash([Text.Encoding]::ASCII.GetBytes($SignatureString)) diff --git a/src/Resources/Policy.Autorest/test/Backcompat/GetBuiltinsByName.Tests.ps1 b/src/Resources/Policy.Autorest/test/Backcompat/GetBuiltinsByName.Tests.ps1 index 981a823b8d2c..b25355aea03a 100644 --- a/src/Resources/Policy.Autorest/test/Backcompat/GetBuiltinsByName.Tests.ps1 +++ b/src/Resources/Policy.Autorest/test/Backcompat/GetBuiltinsByName.Tests.ps1 @@ -7,8 +7,7 @@ Describe 'Backcompat-GetBuiltinsByName' -Tag 'LiveOnly' { { # policy definitions $builtins = Get-AzPolicyDefinition -Builtin -BackwardCompatible | Select-Object -First 100 - foreach ($builtin in $builtins) - { + foreach ($builtin in $builtins) { $done = $false do { try { @@ -19,7 +18,7 @@ Describe 'Backcompat-GetBuiltinsByName' -Tag 'LiveOnly' { catch { if ($_.Exception.Message -like '`[ResourceRequestsThrottled`] : *') { Write-Host -NoNewline -ForegroundColor DarkYellow 'Waiting 5 seconds to allow throttling limit to reset...' - Start-Sleep -Seconds 5 + Start-TestSleep -Seconds 5 Write-Host -ForegroundColor DarkYellow 'resuming.' } else { @@ -35,8 +34,7 @@ Describe 'Backcompat-GetBuiltinsByName' -Tag 'LiveOnly' { { # policy set definitions $builtins = Get-AzPolicySetDefinition -Builtin -BackwardCompatible | Select-Object -First 100 - foreach ($builtin in $builtins) - { + foreach ($builtin in $builtins) { $done = $false do { try { @@ -47,7 +45,7 @@ Describe 'Backcompat-GetBuiltinsByName' -Tag 'LiveOnly' { catch { if ($_.Exception.Message -like '`[ResourceRequestsThrottled`] : *') { Write-Host -NoNewline -ForegroundColor DarkYellow 'Waiting 5 seconds to allow throttling limit to reset...' - Start-Sleep -Seconds 5 + Start-TestSleep -Seconds 5 Write-Host -ForegroundColor DarkYellow 'resuming.' } else { diff --git a/src/Resources/Policy.Autorest/test/PolicyFilter.Tests.ps1 b/src/Resources/Policy.Autorest/test/PolicyFilter.Tests.ps1 index ca91dcde8951..a051ee4eb31d 100644 --- a/src/Resources/Policy.Autorest/test/PolicyFilter.Tests.ps1 +++ b/src/Resources/Policy.Autorest/test/PolicyFilter.Tests.ps1 @@ -6,32 +6,32 @@ Describe 'PolicyFilter' -Tag 'LiveOnly' { It 'Get and validate PolicyType of Get-AzPolicyDefinition -BuiltIn' { # builtin policy definitions $builtins = Get-AzPolicyDefinition -Builtin - $builtins | %{ $_.PolicyType | Should -Be 'BuiltIn' } + $builtins | % { $_.PolicyType | Should -Be 'BuiltIn' } } It 'Get and validate PolicyType of Get-AzPolicyDefinition -Custom' { # custom policy definitions $custom = Get-AzPolicyDefinition -Custom - $custom | %{ $_.PolicyType | Should -Be 'Custom' } + $custom | % { $_.PolicyType | Should -Be 'Custom' } } It 'Get and validate PolicyType of Get-AzPolicyDefinition -Static' { # static policy definitions $static = Get-AzPolicyDefinition -Static - $static| %{ $_.PolicyType | Should -Be 'Static' } + $static | % { $_.PolicyType | Should -Be 'Static' } } It 'Get and validate PolicyType of Get-AzPolicySetDefinition -BuiltIn' { # builtin policy set definitions $builtins = Get-AzPolicySetDefinition -Builtin - $builtins | %{ $_.PolicyType | Should -Be 'BuiltIn' } + $builtins | % { $_.PolicyType | Should -Be 'BuiltIn' } } It 'Get and validate PolicyType of Get-AzPolicySetDefinition -Custom' { # custom policy set definitions $custom = Get-AzPolicySetDefinition -Custom $custom = Get-AzPolicyDefinition -Custom - $custom | %{ $_.PolicyType | Should -Be 'Custom' } + $custom | % { $_.PolicyType | Should -Be 'Custom' } } It 'Get and validate 100 builtin definitions' { @@ -49,7 +49,7 @@ Describe 'PolicyFilter' -Tag 'LiveOnly' { catch { if ($_.Exception.Message -like '`[ResourceRequestsThrottled`] : *') { Write-Host -NoNewline -ForegroundColor DarkYellow 'Waiting 5 seconds to allow throttling limit to reset...' - Start-Sleep -Seconds 5 + Start-TestSleep -Seconds 5 Write-Host -ForegroundColor DarkYellow 'resuming.' } else { @@ -75,7 +75,7 @@ Describe 'PolicyFilter' -Tag 'LiveOnly' { catch { if ($_.Exception.Message -like '`[ResourceRequestsThrottled`] : *') { Write-Host -NoNewline -ForegroundColor DarkYellow 'Waiting 5 seconds to allow throttling limit to reset...' - Start-Sleep -Seconds 5 + Start-TestSleep -Seconds 5 Write-Host -ForegroundColor DarkYellow 'resuming.' } else { diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Approve-AzServiceBusPrivateEndpointConnection.Tests.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/Approve-AzServiceBusPrivateEndpointConnection.Tests.ps1 index ff31cb0622bb..eba0f4679606 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Approve-AzServiceBusPrivateEndpointConnection.Tests.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/Approve-AzServiceBusPrivateEndpointConnection.Tests.ps1 @@ -1,22 +1,21 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Approve-AzServiceBusPrivateEndpointConnection')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Approve-AzServiceBusPrivateEndpointConnection.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName +if (($null -eq $TestName) -or ($TestName -contains 'Approve-AzServiceBusPrivateEndpointConnection')) { + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Approve-AzServiceBusPrivateEndpointConnection.Recording.json' + $currentPath = $PSScriptRoot + while (-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName } Describe 'Approve-AzServiceBusPrivateEndpointConnection' { $privateEndpoint = Get-AzServiceBusPrivateEndpointConnection -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace - + It 'SetExpanded' { $privateEndpoint[0].ConnectionState | Should -Be "Pending" $privateEndpoint[0].Description | Should -Be "Hello" @@ -25,9 +24,9 @@ Describe 'Approve-AzServiceBusPrivateEndpointConnection' { $firstPrivateEndpoint.ConnectionState | Should -Be "Approved" $firstPrivateEndpoint.Description | Should -Be "" - while($firstPrivateEndpoint.ProvisioningState -ne "Succeeded"){ + while ($firstPrivateEndpoint.ProvisioningState -ne "Succeeded") { $firstPrivateEndpoint = Get-AzServiceBusPrivateEndpointConnection -Name $privateEndpoint[0].Name -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace - Start-Sleep 10 + Start-TestSleep 10 } } @@ -38,9 +37,9 @@ Describe 'Approve-AzServiceBusPrivateEndpointConnection' { $secondPrivateEndpoint.ConnectionState | Should -Be "Approved" $secondPrivateEndpoint.Description | Should -Be "Bye" - while($secondPrivateEndpoint.ProvisioningState -ne "Succeeded"){ + while ($secondPrivateEndpoint.ProvisioningState -ne "Succeeded") { $secondPrivateEndpoint = Get-AzServiceBusPrivateEndpointConnection -Name $privateEndpoint[1].Name -ResourceGroupName $env.resourceGroup -NamespaceName $env.namespace - Start-Sleep 10 + Start-TestSleep 10 } } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusGeoDRConfiguration.Tests.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusGeoDRConfiguration.Tests.ps1 index d522bdabf7e3..fab9f346dc85 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusGeoDRConfiguration.Tests.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/New-AzServiceBusGeoDRConfiguration.Tests.ps1 @@ -1,17 +1,16 @@ -if(($null -eq $TestName) -or ($TestName -contains 'New-AzServiceBusGeoDRConfiguration')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzServiceBusGeoDRConfiguration.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName +if (($null -eq $TestName) -or ($TestName -contains 'New-AzServiceBusGeoDRConfiguration')) { + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzServiceBusGeoDRConfiguration.Recording.json' + $currentPath = $PSScriptRoot + while (-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName } Describe 'New-AzServiceBusGeoDRConfiguration' { @@ -22,9 +21,9 @@ Describe 'New-AzServiceBusGeoDRConfiguration' { $drConfig.PartnerNamespace | Should -Be $env.secondaryNamespaceResourceId $drConfig.Role | Should -Be "Primary" - while($drConfig.ProvisioningState -ne "Succeeded"){ + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - Start-Sleep 10 + Start-TestSleep 10 } $drConfig = Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationBreakPair.Tests.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationBreakPair.Tests.ps1 index 9ae502cfbb6f..6deba9f86af7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationBreakPair.Tests.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationBreakPair.Tests.ps1 @@ -1,28 +1,25 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Set-AzServiceBusGeoDRConfigurationBreakPair')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzServiceBusGeoDRConfigurationBreakPair.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName +if (($null -eq $TestName) -or ($TestName -contains 'Set-AzServiceBusGeoDRConfigurationBreakPair')) { + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzServiceBusGeoDRConfigurationBreakPair.Recording.json' + $currentPath = $PSScriptRoot + while (-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName } Describe 'Set-AzServiceBusGeoDRConfigurationBreakPair' { It 'Break' -skip:$($env.secondaryLocation -eq '') { Set-AzServiceBusGeoDRConfigurationBreakPair -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace -Name $env.alias - - while($drConfig.ProvisioningState -ne "Succeeded"){ + + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } $drConfig.Name | Should -Be $env.alias @@ -31,12 +28,10 @@ Describe 'Set-AzServiceBusGeoDRConfigurationBreakPair' { $drConfig.Role | Should -Be "PrimaryNotReplicating" $drConfig = New-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace -PartnerNamespace $env.secondaryNamespaceResourceId - - while($drConfig.ProvisioningState -ne "Succeeded"){ + + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } } @@ -44,13 +39,11 @@ Describe 'Set-AzServiceBusGeoDRConfigurationBreakPair' { $drConfig = Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace Set-AzServiceBusGeoDRConfigurationBreakPair -InputObject $drConfig - - do{ + + do { $drConfig = Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } - } while($drConfig.ProvisioningState -ne "Succeeded") + Start-TestSleep 10 + } while ($drConfig.ProvisioningState -ne "Succeeded") $drConfig.Name | Should -Be $env.alias $drConfig.ResourceGroupName | Should -Be $env.resourceGroup @@ -58,12 +51,10 @@ Describe 'Set-AzServiceBusGeoDRConfigurationBreakPair' { $drConfig.Role | Should -Be "PrimaryNotReplicating" $drConfig = New-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace -PartnerNamespace $env.secondaryNamespaceResourceId - - while($drConfig.ProvisioningState -ne "Succeeded"){ + + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationFailOver.Tests.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationFailOver.Tests.ps1 index c55353d46bbb..569e3eade1e7 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationFailOver.Tests.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/Set-AzServiceBusGeoDRConfigurationFailOver.Tests.ps1 @@ -1,28 +1,25 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Set-AzServiceBusGeoDRConfigurationFailOver')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzServiceBusGeoDRConfigurationFailOver.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName +if (($null -eq $TestName) -or ($TestName -contains 'Set-AzServiceBusGeoDRConfigurationFailOver')) { + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-AzServiceBusGeoDRConfigurationFailOver.Recording.json' + $currentPath = $PSScriptRoot + while (-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName } Describe 'Set-AzServiceBusGeoDRConfigurationFailOver' { - It 'Fail' -skip:$($env.secondaryLocation -eq '') { + It 'Fail' -skip:$($env.secondaryLocation -eq '') { Set-AzServiceBusGeoDRConfigurationFailOver -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace -Name $env.alias - - while($drConfig.ProvisioningState -ne "Succeeded"){ + + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } $drConfig.Name | Should -Be $env.alias @@ -31,29 +28,23 @@ Describe 'Set-AzServiceBusGeoDRConfigurationFailOver' { $drConfig.Role | Should -Be "PrimaryNotReplicating" $drConfig = Remove-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 180 - } + Start-TestSleep 180 $drConfig = New-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace -PartnerNamespace $env.secondaryNamespaceResourceId - - while($drConfig.ProvisioningState -ne "Succeeded"){ + + while ($drConfig.ProvisioningState -ne "Succeeded") { $drConfig = Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } + Start-TestSleep 10 } } It 'FailViaIdentity' -skip:$($env.secondaryLocation -eq '') { $drConfig = Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace - + Set-AzServiceBusGeoDRConfigurationFailOver -InputObject $drConfig - + do { $drConfig = Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace - if ($TestMode -ne 'playback') { - Start-Sleep 10 - } - } while($drConfig.ProvisioningState -ne "Succeeded") + Start-TestSleep 10 + } while ($drConfig.ProvisioningState -ne "Succeeded") $drConfig.Name | Should -Be $env.alias $drConfig.ResourceGroupName | Should -Be $env.resourceGroup @@ -61,10 +52,8 @@ Describe 'Set-AzServiceBusGeoDRConfigurationFailOver' { $drConfig.Role | Should -Be "PrimaryNotReplicating" $drConfig = Remove-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.secondaryNamespace - - if ($TestMode -ne 'playback') { - Start-Sleep 180 - } + + Start-TestSleep 180 { Get-AzServiceBusGeoDRConfiguration -Name $env.alias -ResourceGroupName $env.resourceGroup -NamespaceName $env.primaryNamespace -ErrorAction Stop } | Should -Throw } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/Start-AzServiceBusMigration.Tests.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/Start-AzServiceBusMigration.Tests.ps1 index 41460ad65bb4..17c630e491a1 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/Start-AzServiceBusMigration.Tests.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/Start-AzServiceBusMigration.Tests.ps1 @@ -1,17 +1,16 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Start-AzServiceBusMigration')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Start-AzServiceBusMigration.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName +if (($null -eq $TestName) -or ($TestName -contains 'Start-AzServiceBusMigration')) { + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Start-AzServiceBusMigration.Recording.json' + $currentPath = $PSScriptRoot + while (-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName } Describe 'Start-AzServiceBusMigration' { @@ -23,20 +22,20 @@ Describe 'Start-AzServiceBusMigration' { do { $migrationConfig = Get-AzServiceBusMigration -ResourceGroupName $env.resourceGroup -NamespaceName $env.migrationPrimaryNamespace - Start-Sleep 10 - } while($migrationConfig.ProvisioningState -ne 'Succeeded') + Start-TestSleep 10 + } while ($migrationConfig.ProvisioningState -ne 'Succeeded') Stop-AzServiceBusMigration -ResourceGroupName $env.resourceGroup -NamespaceName $env.migrationPrimaryNamespace do { $migrationConfig = Get-AzServiceBusMigration -ResourceGroupName $env.resourceGroup -NamespaceName $env.migrationPrimaryNamespace - Start-Sleep 10 - } while($migrationConfig.ProvisioningState -ne 'Succeeded') + Start-TestSleep 10 + } while ($migrationConfig.ProvisioningState -ne 'Succeeded') $migrationConfig.TargetNamespace | Should -Be "" { Remove-AzServiceBusMigration -ResourceGroupName $env.resourceGroup -NamespaceName $env.migrationPrimaryNamespace -ErrorAction Stop } | Should -Throw - + $migrationConfig = Start-AzServiceBusMigration -ResourceGroupName $env.resourceGroup -NamespaceName $env.migrationPrimaryNamespace -PostMigrationName $env.postMigrationName -TargetNamespace $env.migrationSecondaryNamespaceResourceId $migrationConfig.Name | Should -Be $env.migrationPrimaryNamespace $migrationConfig.PostMigrationName | Should -Be $env.postMigrationName @@ -44,18 +43,18 @@ Describe 'Start-AzServiceBusMigration' { do { $migrationConfig = Get-AzServiceBusMigration -ResourceGroupName $env.resourceGroup -NamespaceName $env.migrationPrimaryNamespace - Start-Sleep 10 - } while($migrationConfig.ProvisioningState -ne 'Succeeded') + Start-TestSleep 10 + } while ($migrationConfig.ProvisioningState -ne 'Succeeded') Complete-AzServiceBusMigration -ResourceGroupName $env.resourceGroup -NamespaceName $env.migrationPrimaryNamespace - - Start-Sleep 240 + + Start-TestSleep 240 $drConfig = Get-AzServiceBusGeoDRConfiguration -ResourceGroupName $env.resourceGroup -Name $env.migrationPrimaryNamespace -NamespaceName $env.migrationSecondaryNamespace $drConfig.Name | Should -Be $env.migrationPrimaryNamespace $drConfig.ResourceGroupName | Should -Be $env.resourceGroup $drConfig.PartnerNamespace | Should -Be "" $drConfig.Role | Should -Be "PrimaryNotReplicating" - + } } diff --git a/src/ServiceBus/ServiceBus.Autorest/test/utils.ps1 b/src/ServiceBus/ServiceBus.Autorest/test/utils.ps1 index 51e08f38fb87..ee4d45fb430f 100644 --- a/src/ServiceBus/ServiceBus.Autorest/test/utils.ps1 +++ b/src/ServiceBus/ServiceBus.Autorest/test/utils.ps1 @@ -1,10 +1,36 @@ function RandomString([bool]$allChars, [int32]$len) { if ($allChars) { - return -join ((33..126) | Get-Random -Count $len | % {[char]$_}) - } else { - return -join ((48..57) + (97..122) | Get-Random -Count $len | % {[char]$_}) + return -join ((33..126) | Get-Random -Count $len | % { [char]$_ }) + } + else { + return -join ((48..57) + (97..122) | Get-Random -Count $len | % { [char]$_ }) + } +} +function Start-TestSleep { + [CmdletBinding(DefaultParameterSetName = 'SleepBySeconds')] + param( + [parameter(Mandatory = $true, Position = 0, ParameterSetName = 'SleepBySeconds')] + [ValidateRange(0.0, 2147483.0)] + [double] $Seconds, + + [parameter(Mandatory = $true, ParameterSetName = 'SleepByMilliseconds')] + [ValidateRange('NonNegative')] + [Alias('ms')] + [int] $Milliseconds + ) + + if ($TestMode -ne 'playback') { + switch ($PSCmdlet.ParameterSetName) { + 'SleepBySeconds' { + Start-Sleep -Seconds $Seconds + } + 'SleepByMilliseconds' { + Start-Sleep -Milliseconds $Milliseconds + } + } } } + $env = @{} if ($UsePreviousConfigForRecord) { $previousEnv = Get-Content (Join-Path $PSScriptRoot 'env.json') | ConvertFrom-Json @@ -12,7 +38,12 @@ if ($UsePreviousConfigForRecord) { } # Add script method called AddWithCache to $env, when useCache is set true, it will try to get the value from the $env first. # example: $val = $env.AddWithCache('key', $val, $true) -$env | Add-Member -Type ScriptMethod -Value { param( [string]$key, [object]$val, [bool]$useCache) if ($this.Contains($key) -and $useCache) { return $this[$key] } else { $this[$key] = $val; return $val } } -Name 'AddWithCache' +$env | Add-Member -Type ScriptMethod -Value { param( [string]$key, [object]$val, [bool]$useCache) if ($this.Contains($key) -and $useCache) { + return $this[$key] + } + else { + $this[$key] = $val; return $val + } } -Name 'AddWithCache' function setupEnv( $location = 'eastus', $secondaryLocation = 'southcentralus', @@ -162,13 +193,13 @@ function setupEnv( } function GenerateSASKey { - [Reflection.Assembly]::LoadWithPartialName("System.Web")| out-null - $URI="myNamespace.servicebus.windows.net/myEventHub" - $Access_Policy_Name="RootManageSharedAccessKey" - $Access_Policy_Key="myPrimaryKey" + [Reflection.Assembly]::LoadWithPartialName("System.Web") | out-null + $URI = "myNamespace.servicebus.windows.net/myEventHub" + $Access_Policy_Name = "RootManageSharedAccessKey" + $Access_Policy_Key = "myPrimaryKey" #Token expires now+300 - $Expires=([DateTimeOffset]::Now.ToUnixTimeSeconds())+300 - $SignatureString=[System.Web.HttpUtility]::UrlEncode($URI)+ "`n" + [string]$Expires + $Expires = ([DateTimeOffset]::Now.ToUnixTimeSeconds()) + 300 + $SignatureString = [System.Web.HttpUtility]::UrlEncode($URI) + "`n" + [string]$Expires $HMAC = New-Object System.Security.Cryptography.HMACSHA256 $HMAC.key = [Text.Encoding]::ASCII.GetBytes($Access_Policy_Key) $Signature = $HMAC.ComputeHash([Text.Encoding]::ASCII.GetBytes($SignatureString)) diff --git a/src/SqlVirtualMachine/SqlVirtualMachine.Autorest/test/Update-AzSqlVM.Tests.ps1 b/src/SqlVirtualMachine/SqlVirtualMachine.Autorest/test/Update-AzSqlVM.Tests.ps1 index 000d96186c74..daf198e5f4d4 100644 --- a/src/SqlVirtualMachine/SqlVirtualMachine.Autorest/test/Update-AzSqlVM.Tests.ps1 +++ b/src/SqlVirtualMachine/SqlVirtualMachine.Autorest/test/Update-AzSqlVM.Tests.ps1 @@ -58,18 +58,18 @@ Describe 'Update-AzSqlVM' { Remove-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName } - + It 'Update-AutopatchingEnable' { $sqlVM = New-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Location $env.Location $sqlVM = Update-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -AutoPatchingSettingDayOfWeek Thursday -AutoPatchingSettingMaintenanceWindowDuration 120 -AutoPatchingSettingMaintenanceWindowStartingHour 3 -AutoPatchingSettingEnable - + $sqlVM.Name | Should -Be $env.SqlVMName $sqlVM.SqlImageOffer | Should -Be 'SQL2019-WS2019' $sqlVM.SqlImageSku | Should -Be 'Standard' $sqlVM.SqlManagement | Should -Be 'Full' $sqlVM.SqlServerLicenseType | Should -Be 'PAYG' - + $sqlVM1 = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Expand * $sqlVM1.AutoPatchingSettingDayOfWeek | Should -Be 'Thursday' $sqlVM1.AutoPatchingSettingMaintenanceWindowDuration | Should -Be 120 @@ -81,16 +81,16 @@ Describe 'Update-AzSqlVM' { It 'Update-AssessmentSchedule' { # $sqlVM = New-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Location $env.Location -SqlManagementType 'Full' - + $sqlVM = Update-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -AssessmentSettingEnable ` - -ScheduleEnable -ScheduleDayOfWeek Sunday -ScheduleMonthlyOccurrence 2 -ScheduleStartTime "23:00" - + -ScheduleEnable -ScheduleDayOfWeek Sunday -ScheduleMonthlyOccurrence 2 -ScheduleStartTime "23:00" + $sqlVM.Name | Should -Be $env.SqlVMName $sqlVM.SqlImageOffer | Should -Be 'SQL2019-WS2019' $sqlVM.SqlImageSku | Should -Be 'Standard' $sqlVM.SqlManagement | Should -Be 'Full' $sqlVM.SqlServerLicenseType | Should -Be 'PAYG' - + $sqlVM1 = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Expand * $sqlVM1.AssessmentSettingEnable | Should -Be $true $sqlVM1.ScheduleEnable | Should -Be $true @@ -100,20 +100,20 @@ Describe 'Update-AzSqlVM' { # Remove-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName } - + It 'Update-AutobackupEnable' { - # $sqlVM = New-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Location $env.Location -SqlManagementType 'Full' + # $sqlVM = New-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Location $env.Location -SqlManagementType 'Full' $StorageAccountUrl = "https://veppalastorageacc.blob.core.windows.net/" $storageAccountPrimaryKey = "anaccesskey" $sqlVM = Update-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -AutoBackupSettingEnable ` - -AutoBackupSettingBackupScheduleType manual -AutoBackupSettingFullBackupFrequency Weekly -AutoBackupSettingFullBackupStartTime 5 -AutoBackupSettingFullBackupWindowHour 2 -AutoBackupSettingStorageAccessKey $storageAccountPrimaryKey -AutoBackupSettingStorageAccountUrl $StorageAccountUrl -AutoBackupSettingRetentionPeriod 10 -AutoBackupSettingLogBackupFrequency 60 - + -AutoBackupSettingBackupScheduleType manual -AutoBackupSettingFullBackupFrequency Weekly -AutoBackupSettingFullBackupStartTime 5 -AutoBackupSettingFullBackupWindowHour 2 -AutoBackupSettingStorageAccessKey $storageAccountPrimaryKey -AutoBackupSettingStorageAccountUrl $StorageAccountUrl -AutoBackupSettingRetentionPeriod 10 -AutoBackupSettingLogBackupFrequency 60 + $sqlVM.Name | Should -Be $env.SqlVMName $sqlVM.SqlImageOffer | Should -Be 'SQL2019-WS2019' $sqlVM.SqlImageSku | Should -Be 'Standard' $sqlVM.SqlManagement | Should -Be 'Full' $sqlVM.SqlServerLicenseType | Should -Be 'PAYG' - + $sqlVM1 = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Expand * $sqlVM1.AutoBackupSettingEnable | Should -Be $true $sqlVM1.AutoBackupSettingBackupScheduleType | Should -Be manual @@ -125,34 +125,34 @@ Describe 'Update-AzSqlVM' { Remove-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName } - It 'Update-AddSqlVMtoGroup' { + It 'Update-AddSqlVMtoGroup' { # Assuming Group $env.SqlVMGroupId exists at this time and $env.SqlVMName_HA2 is created - $pwd = 'P@ssw0rd!' # Replace with the original password + $pwd = 'xxxxxx' # Replace with the original password $securepwd = ConvertTo-SecureString -String $pwd -AsPlainText -Force $sqlVM = Update-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName_HA2 ` - -SqlVirtualMachineGroupResourceId $env.SqlVMGroupId ` - -WsfcDomainCredentialsClusterBootstrapAccountPassword $securepwd ` - -WsfcDomainCredentialsClusterOperatorAccountPassword $securepwd ` - -WsfcDomainCredentialsSqlServiceAccountPassword $securepwd - + -SqlVirtualMachineGroupResourceId $env.SqlVMGroupId ` + -WsfcDomainCredentialsClusterBootstrapAccountPassword $securepwd ` + -WsfcDomainCredentialsClusterOperatorAccountPassword $securepwd ` + -WsfcDomainCredentialsSqlServiceAccountPassword $securepwd + $sqlVM2 = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName_HA2 -Expand * $sqlVM2.GroupResourceId | Should -Be $env.SqlVMGroupId } - - It 'Update-RemoveSqlVMfromGroup' { - # Assuming $env.SqlVMName_HA2 is created already and added to Group $env.SqlVMGroupId + + It 'Update-RemoveSqlVMfromGroup' { + # Assuming $env.SqlVMName_HA2 is created already and added to Group $env.SqlVMGroupId # If the test case fails, make sure Sql server is running before running test case $sqlVM = Update-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName_HA2 ` - -SqlVirtualMachineGroupResourceId '' - + -SqlVirtualMachineGroupResourceId '' + $sqlVM2 = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName_HA2 -Expand * $sqlVM2.GroupResourceId | Should -Be $null - } + } } Describe 'Update-AzSqlVM-EntraAuth' -Tag 'LiveOnly' { - It 'Update-AdAuthenticationEnable1' { + It 'Update-AdAuthenticationEnable1' { $sqlVM = New-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Location $env.Location $sqlVM = Update-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -IdentityType 'UserAssigned' -ManagedIdentityClientId '6d81e2bc-dcc5-45c9-9327-1cfee9612933' @@ -160,15 +160,15 @@ Describe 'Update-AzSqlVM-EntraAuth' -Tag 'LiveOnly' { $sqlVM.Name | Should -Be $env.SqlVMName $sqlVM.SqlImageOffer | Should -Be 'SQL2022-WS2022' $sqlVM.SqlManagement | Should -Be 'Full' - - Start-Sleep -Seconds 60 + + Start-TestSleep -Seconds 60 $sqlVM1 = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Expand * $sqlVM1.AzureAdAuthenticationSettingClientId | Should -Be '6d81e2bc-dcc5-45c9-9327-1cfee9612933' - + # Remove-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName } - - It 'Update-AdAuthenticationEnable2' { + + It 'Update-AdAuthenticationEnable2' { $sqlVM = New-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Location $env.Location $sqlVM = Update-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -IdentityType 'SystemAssigned' @@ -176,23 +176,23 @@ Describe 'Update-AzSqlVM-EntraAuth' -Tag 'LiveOnly' { $sqlVM.Name | Should -Be $env.SqlVMName $sqlVM.SqlImageOffer | Should -Be 'SQL2022-WS2022' $sqlVM.SqlManagement | Should -Be 'Full' - - Start-Sleep -Seconds 60 - $sqlVM2 = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Expand * + + Start-TestSleep -Seconds 60 + $sqlVM2 = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName -Expand * $sqlVM2.AzureAdAuthenticationSettingClientId | Should -Be '' - + # Remove-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName } - - It 'AdAuthenticationFailurescenario1' { - $sqlVM = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName - # note: id 'random value' is not associated to sql vm so it throws the error - {$sqlVM | Update-AzSqlVMADAuth -IdentityType 'UserAssigned' -ManagedIdentityClientId 'random value'} | Should -Throw - } - - It 'AdAuthenticationFailurescenario2' { - $sqlVM = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName - # note: id '47c329a2-0bb1-48c5-9966-b84b957c6a77' is associated to sql vm but doesn't have required permissions. so it throws the error - {$sqlVM | Update-AzSqlVMADAuth -IdentityType 'UserAssigned' -ManagedIdentityClientId '47c329a2-0bb1-48c5-9966-b84b957c6a77'} | Should -Throw - } + + It 'AdAuthenticationFailurescenario1' { + $sqlVM = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName + # note: id 'random value' is not associated to sql vm so it throws the error + { $sqlVM | Update-AzSqlVMADAuth -IdentityType 'UserAssigned' -ManagedIdentityClientId 'random value' } | Should -Throw + } + + It 'AdAuthenticationFailurescenario2' { + $sqlVM = Get-AzSqlVM -ResourceGroupName $env.ResourceGroupName -Name $env.SqlVMName + # note: id '47c329a2-0bb1-48c5-9966-b84b957c6a77' is associated to sql vm but doesn't have required permissions. so it throws the error + { $sqlVM | Update-AzSqlVMADAuth -IdentityType 'UserAssigned' -ManagedIdentityClientId '47c329a2-0bb1-48c5-9966-b84b957c6a77' } | Should -Throw + } } From 0ce449a2df4ee7620cbf08bc802020aced19baed Mon Sep 17 00:00:00 2001 From: Jin Lei <54836179+msJinLei@users.noreply.github.com> Date: Thu, 24 Oct 2024 03:11:21 +0800 Subject: [PATCH 10/16] Use the real release date for breaking change notification (#26449) --- .../DesktopVirtualization.Autorest/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md b/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md index 4e98b525eab1..1899acf27041 100644 --- a/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md +++ b/src/DesktopVirtualization/DesktopVirtualization.Autorest/README.md @@ -108,41 +108,41 @@ directive: set: preview-announcement: preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) - estimated-ga-date: 2024-11-30 + estimated-ga-date: 2024-11-19 - where: verb: Unregister set: preview-announcement: preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) - estimated-ga-date: 2024-11-30 + estimated-ga-date: 2024-11-19 - where: verb: Send set: preview-announcement: preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) - estimated-ga-date: 2024-11-30 + estimated-ga-date: 2024-11-19 - where: verb: Expand set: preview-announcement: preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) - estimated-ga-date: 2024-11-30 + estimated-ga-date: 2024-11-19 - where: verb: Get set: preview-announcement: preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) - estimated-ga-date: 2024-11-30 + estimated-ga-date: 2024-11-19 - where: verb: New set: preview-announcement: preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) - estimated-ga-date: 2024-11-30 + estimated-ga-date: 2024-11-19 - where: verb: Update set: preview-announcement: preview-message: This release will contain numerous breaking changes, please view the preannouncement here (https://go.microsoft.com/fwlink/?linkid=2292409) - estimated-ga-date: 2024-11-30 + estimated-ga-date: 2024-11-19 ``` From 8656631afeb4830e7e59650006fcaaebc2f17df3 Mon Sep 17 00:00:00 2001 From: alexathomases <55257302+alexathomases@users.noreply.github.com> Date: Fri, 25 Oct 2024 01:02:39 -0700 Subject: [PATCH 11/16] Az.HealthDeidentification module (#26480) * HealthDeidentification * Delete HealthDeid * Tests --------- Co-authored-by: Alexa Thomases --- .../HealthDeid.Autorest/custom/README.md | 41 -- .../HealthDeid.Autorest/docs/Az.HealthDeid.md | 25 - .../HealthDeid.Autorest/docs/README.md | 11 - .../New-AzHealthDeidService.Recording.json | 662 ------------------ .../Update-AzHealthDeidService.Recording.json | 577 --------------- .../HealthDeid.Autorest/test/env.json | 13 - .../.gitattributes | 0 .../.gitignore | 0 .../Properties/AssemblyInfo.cs | 2 +- .../README.md | 28 +- .../deidServices.json | 10 +- .../custom/README.md | 41 ++ .../docs/Az.HealthDeidentification.md | 25 + .../docs/Get-AzDeidService.md} | 25 +- .../docs/New-AzDeidService.md} | 28 +- .../docs/README.md | 11 + .../docs/Remove-AzDeidService.md} | 18 +- .../docs/Update-AzDeidService.md} | 22 +- .../examples/Get-AzDeidService.md} | 6 +- .../examples/New-AzDeidService.md} | 7 +- .../examples/Remove-AzDeidService.md} | 4 +- .../examples/Update-AzDeidService.md} | 6 +- .../how-to.md | 18 +- .../resources/README.md | 0 .../test/Get-AzDeidService.Recording.json} | 126 ++-- .../test/Get-AzDeidService.Tests.ps1} | 16 +- .../test/New-AzDeidService.Recording.json | 662 ++++++++++++++++++ .../test/New-AzDeidService.Tests.ps1} | 12 +- .../test/README.md | 0 .../test/Remove-AzDeidService.Recording.json} | 450 ++++++------ .../test/Remove-AzDeidService.Tests.ps1} | 14 +- .../test/Update-AzDeidService.Recording.json | 577 +++++++++++++++ .../test/Update-AzDeidService.Tests.ps1} | 12 +- .../test/env.json | 13 + .../test/jsonConfigs/deidServiceJson.json | 0 .../test/loadEnv.ps1 | 0 .../test/utils.ps1 | 17 +- .../utils/Get-SubscriptionIdTestSafe.ps1 | 0 .../utils/Unprotect-SecureString.ps1 | 0 39 files changed, 1741 insertions(+), 1738 deletions(-) delete mode 100644 src/HealthDeid/HealthDeid.Autorest/custom/README.md delete mode 100644 src/HealthDeid/HealthDeid.Autorest/docs/Az.HealthDeid.md delete mode 100644 src/HealthDeid/HealthDeid.Autorest/docs/README.md delete mode 100644 src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Recording.json delete mode 100644 src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Recording.json delete mode 100644 src/HealthDeid/HealthDeid.Autorest/test/env.json rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/.gitattributes (100%) rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/.gitignore (100%) rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/Properties/AssemblyInfo.cs (97%) rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/README.md (88%) rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/UX/Microsoft.HealthDataAIServices/deidServices.json (92%) create mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/custom/README.md create mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/docs/Az.HealthDeidentification.md rename src/{HealthDeid/HealthDeid.Autorest/docs/Get-AzHealthDeidService.md => HealthDeidentification/HealthDeidentification.Autorest/docs/Get-AzDeidService.md} (82%) rename src/{HealthDeid/HealthDeid.Autorest/docs/New-AzHealthDeidService.md => HealthDeidentification/HealthDeidentification.Autorest/docs/New-AzDeidService.md} (87%) create mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/docs/README.md rename src/{HealthDeid/HealthDeid.Autorest/docs/Remove-AzHealthDeidService.md => HealthDeidentification/HealthDeidentification.Autorest/docs/Remove-AzDeidService.md} (85%) rename src/{HealthDeid/HealthDeid.Autorest/docs/Update-AzHealthDeidService.md => HealthDeidentification/HealthDeidentification.Autorest/docs/Update-AzDeidService.md} (89%) rename src/{HealthDeid/HealthDeid.Autorest/examples/Get-AzHealthDeidService.md => HealthDeidentification/HealthDeidentification.Autorest/examples/Get-AzDeidService.md} (93%) rename src/{HealthDeid/HealthDeid.Autorest/examples/New-AzHealthDeidService.md => HealthDeidentification/HealthDeidentification.Autorest/examples/New-AzDeidService.md} (88%) rename src/{HealthDeid/HealthDeid.Autorest/examples/Remove-AzHealthDeidService.md => HealthDeidentification/HealthDeidentification.Autorest/examples/Remove-AzDeidService.md} (62%) rename src/{HealthDeid/HealthDeid.Autorest/examples/Update-AzHealthDeidService.md => HealthDeidentification/HealthDeidentification.Autorest/examples/Update-AzDeidService.md} (89%) rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/how-to.md (79%) rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/resources/README.md (100%) rename src/{HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Recording.json => HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Recording.json} (60%) rename src/{HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Tests.ps1 => HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Tests.ps1} (63%) create mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Recording.json rename src/{HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Tests.ps1 => HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Tests.ps1} (63%) rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/test/README.md (100%) rename src/{HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Recording.json => HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Recording.json} (53%) rename src/{HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Tests.ps1 => HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Tests.ps1} (53%) create mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Recording.json rename src/{HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Tests.ps1 => HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Tests.ps1} (61%) create mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/env.json rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/test/jsonConfigs/deidServiceJson.json (100%) rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/test/loadEnv.ps1 (100%) rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/test/utils.ps1 (86%) rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/utils/Get-SubscriptionIdTestSafe.ps1 (100%) rename src/{HealthDeid/HealthDeid.Autorest => HealthDeidentification/HealthDeidentification.Autorest}/utils/Unprotect-SecureString.ps1 (100%) diff --git a/src/HealthDeid/HealthDeid.Autorest/custom/README.md b/src/HealthDeid/HealthDeid.Autorest/custom/README.md deleted file mode 100644 index c93892062555..000000000000 --- a/src/HealthDeid/HealthDeid.Autorest/custom/README.md +++ /dev/null @@ -1,41 +0,0 @@ -# Custom -This directory contains custom implementation for non-generated cmdlets for the `Az.HealthDeid` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `../exports` folder. The only generated file into this folder is the `Az.HealthDeid.custom.psm1`. This file should not be modified. - -## Info -- Modifiable: yes -- Generated: partial -- Committed: yes -- Packaged: yes - -## Details -For `Az.HealthDeid` to use custom cmdlets, it does this two different ways. We **highly recommend** creating script cmdlets, as they are easier to write and allow access to the other exported cmdlets. C# cmdlets *cannot access exported cmdlets*. - -For C# cmdlets, they are compiled with the rest of the generated low-level cmdlets into the `./bin/Az.HealthDeid.private.dll`. The names of the cmdlets (methods) and files must follow the `[cmdletName]_[variantName]` syntax used for generated cmdlets. The `variantName` is used as the `ParameterSetName`, so use something appropriate that doesn't clash with already created variant or parameter set names. You cannot use the `ParameterSetName` property in the `Parameter` attribute on C# cmdlets. Each cmdlet must be separated into variants using the same pattern as seen in the `generated/cmdlets` folder. - -For script cmdlets, these are loaded via the `Az.HealthDeid.custom.psm1`. Then, during the build process, this module is loaded and processed in the same manner as the C# cmdlets. The fundamental difference is the script cmdlets use the `ParameterSetName` attribute and C# cmdlets do not. To create a script cmdlet variant of a generated cmdlet, simply decorate all parameters in the script with the new `ParameterSetName` in the `Parameter` attribute. This will appropriately treat each parameter set as a separate variant when processed to be exported during the build. - -## Purpose -This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `../exports` folder. - -## Usage -The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `../exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: -- Break -- DefaultProfile -- HttpPipelineAppend -- HttpPipelinePrepend -- Proxy -- ProxyCredential -- ProxyUseDefaultCredentials - -These provide functionality to our HTTP pipeline and other useful features. In script, you can forward these parameters using `$PSBoundParameters` to the other cmdlets you're calling within `Az.HealthDeid`. For C#, follow the usage seen in the `ProcessRecordAsync` method. - -### Attributes -For processing the cmdlets, we've created some additional attributes: -- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.DescriptionAttribute` - - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts. -- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.DoNotExportAttribute` - - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.HealthDeid`. -- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.InternalExportAttribute` - - Used in C# cmdlets to route exported cmdlets to the `../internal`, which are *not exposed* by `Az.HealthDeid`. For more information, see [README.md](../internal/README.md) in the `../internal` folder. -- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.ProfileAttribute` - - Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules. \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/Az.HealthDeid.md b/src/HealthDeid/HealthDeid.Autorest/docs/Az.HealthDeid.md deleted file mode 100644 index 0c2bfff6981b..000000000000 --- a/src/HealthDeid/HealthDeid.Autorest/docs/Az.HealthDeid.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -Module Name: Az.HealthDeid -Module Guid: 2c5ee909-83f4-4436-80d4-ae02c50beed1 -Download Help Link: https://learn.microsoft.com/powershell/module/az.healthdeid -Help Version: 1.0.0.0 -Locale: en-US ---- - -# Az.HealthDeid Module -## Description -Microsoft Azure PowerShell: HealthDeid cmdlets - -## Az.HealthDeid Cmdlets -### [Get-AzHealthDeidService](Get-AzHealthDeidService.md) -Get a DeidService - -### [New-AzHealthDeidService](New-AzHealthDeidService.md) -create a DeidService - -### [Remove-AzHealthDeidService](Remove-AzHealthDeidService.md) -Delete a DeidService - -### [Update-AzHealthDeidService](Update-AzHealthDeidService.md) -update a DeidService - diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/README.md b/src/HealthDeid/HealthDeid.Autorest/docs/README.md deleted file mode 100644 index 97c4e0f6401a..000000000000 --- a/src/HealthDeid/HealthDeid.Autorest/docs/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# Docs -This directory contains the documentation of the cmdlets for the `Az.HealthDeid` module. To run documentation generation, use the `generate-help.ps1` script at the root module folder. Files in this folder will *always be overridden on regeneration*. To update documentation examples, please use the `../examples` folder. - -## Info -- Modifiable: no -- Generated: all -- Committed: yes -- Packaged: yes - -## Details -The process of documentation generation loads `Az.HealthDeid` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `../exports` folder. Additionally, when writing custom cmdlets in the `../custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `../examples` folder. \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Recording.json b/src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Recording.json deleted file mode 100644 index 088e5a6afb8f..000000000000 --- a/src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Recording.json +++ /dev/null @@ -1,662 +0,0 @@ -{ - "New-AzHealthDeidService+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p?api-version=2024-02-28-preview", - "Content": "{\n \"location\": \"eastus2\"\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "27" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8101733c-0000-0800-0000-6716bf370000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "5b575447-0ce1-4511-ae86-4e07c8274fc2" ], - "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], - "x-ms-correlation-request-id": [ "ac2a717e-95f1-4db6-ab1a-3fee4c8380f8" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU" ], - "x-ms-request-id": [ "f7cbc851-822d-446b-8558-fb583a373736" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205311Z:ac2a717e-95f1-4db6-ab1a-3fee4c8380f8" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A6A75A66D1AE4715828B5BF1F5FFB6F5 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:09Z" ], - "Date": [ "Mon, 21 Oct 2024 20:53:11 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "528" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p\",\"name\":\"8gln5p\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:53:10.4165568Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:53:10.4165568Z\"},\"properties\":{\"provisioningState\":\"Accepted\"}}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "28" ], - "x-ms-client-request-id": [ "c9373da6-5f72-43aa-9e94-f4ca06cd0414" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00ef17-0000-0800-0000-6716bf360000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "868d119e-0b0a-4863-9841-6e96f60125ee" ], - "x-ms-correlation-request-id": [ "bd7ca754-530f-4de4-9a26-1fcb7c6ce7e6" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205341Z:bd7ca754-530f-4de4-9a26-1fcb7c6ce7e6" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 22E32639782A41F3AFCD8C8B9D515312 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:41Z" ], - "Date": [ "Mon, 21 Oct 2024 20:53:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"name\":\"f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:53:10.6398868Z\"}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "29" ], - "x-ms-client-request-id": [ "c9373da6-5f72-43aa-9e94-f4ca06cd0414" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00ef17-0000-0800-0000-6716bf360000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "d4b07aa8-9107-4fe4-81bb-751d8cf72a78" ], - "x-ms-correlation-request-id": [ "1d10ce61-74c9-43f9-8152-dc3d3db8c044" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205411Z:1d10ce61-74c9-43f9-8152-dc3d3db8c044" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A7303C52336F4268835C36D8D7B10F66 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:54:11Z" ], - "Date": [ "Mon, 21 Oct 2024 20:54:11 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"name\":\"f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:53:10.6398868Z\"}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188?api-version=2024-02-28-preview\u0026t=638651407912446501\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=54CXnLtV1xxoEoOU_RQgGbgv92PCyBNAYIR37Fn_GcLcVmTW47WVy0P20waEJ77UYMrKgYLya5M1XUBHC7ZO5ysW3ZHp9lrmlt_CGCpskl4oJ0ZMsKwr1_QxFid6mQ67gnKxx-DXjwpel57fIk0tI32HHVXfyGushDg0uYWZ1Sw1W1Zm_5WkbjB6E6IhDNlRTbhnwxMD_hwNDxlXqZJjcGftuM06WNsBWyZhS_0AZvgnZObDQnsLgXIeTpw5ZWjkRmMxssqhs17EGOufA1NL9Fd94xBARCWVhmA_NdDP0w7JXvuP0DW11ooMWsoCgboMlbTGz1W3yBriL_YlHBa4tA\u0026h=IVfnbcXhlaCGMjydh1YnZL4sKV3t_H6KK1zXcQ8d8sU", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "30" ], - "x-ms-client-request-id": [ "c9373da6-5f72-43aa-9e94-f4ca06cd0414" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a008024-0000-0800-0000-6716bf790000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "359be98d-55d2-479d-8372-4709a9bfa6f3" ], - "x-ms-correlation-request-id": [ "c41d4aa4-670c-47e6-8b39-2a03a632015d" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205441Z:c41d4aa4-670c-47e6-8b39-2a03a632015d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 46249490009B4F4A808009FAE132EBD5 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:54:41Z" ], - "Date": [ "Mon, 21 Oct 2024 20:54:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "634" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"name\":\"f7cbc851-822d-446b-8558-fb583a373736*8E0F24CBCCF86F6C9A0DAEEF29CB63A8DBE2F6C2C4ECA13D9C7181AC197A9188\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T20:53:10.6398868Z\",\"endTime\":\"2024-10-21T20:53:18.1414198Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p?api-version=2024-02-28-preview+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "31" ], - "x-ms-client-request-id": [ "c9373da6-5f72-43aa-9e94-f4ca06cd0414" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8101c03d-0000-0800-0000-6716bf3e0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "97dded7a-dbf4-458d-9618-5cd9f8aedcd5" ], - "x-ms-correlation-request-id": [ "5de8a69a-d626-4bb1-a15c-55ac7ce94429" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205442Z:5de8a69a-d626-4bb1-a15c-55ac7ce94429" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2A7554D1A20047E39B4879C4AE862A9C Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:54:41Z" ], - "Date": [ "Mon, 21 Oct 2024 20:54:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8gln5p\",\"name\":\"8gln5p\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:53:10.4165568Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:53:10.4165568Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cjh4dygfgkf3hube.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateViaJsonFilePath+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs?api-version=2024-02-28-preview", - "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n }\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "100" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8101194a-0000-0800-0000-6716bf940000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "f600a6ec-b407-4d7f-8c25-73597a558053" ], - "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], - "x-ms-correlation-request-id": [ "7f29a5ed-4098-4247-8457-8efcfc5cfac1" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ" ], - "x-ms-request-id": [ "e993ac4c-b531-442e-80cd-4af39dd4b914" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205444Z:7f29a5ed-4098-4247-8457-8efcfc5cfac1" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BE41C301BF3849AC8346DFB5B41387D2 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:54:42Z" ], - "Date": [ "Mon, 21 Oct 2024 20:54:44 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "560" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs\",\"name\":\"ci9tzs\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:54:43.4429743Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:54:43.4429743Z\"},\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "33" ], - "x-ms-client-request-id": [ "e0dbbf68-34cf-416e-b351-f9055209c460" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonFilePath" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00eb28-0000-0800-0000-6716bf930000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "054fdc3a-6e2c-4de7-b6c5-671fd1bf20f3" ], - "x-ms-correlation-request-id": [ "275f3350-58a6-4e82-baad-f5c5690af7bf" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205514Z:275f3350-58a6-4e82-baad-f5c5690af7bf" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FA0D232FF4C54C60969B9E38792403BD Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:55:14Z" ], - "Date": [ "Mon, 21 Oct 2024 20:55:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "572" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"name\":\"e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:54:43.711147Z\"}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "34" ], - "x-ms-client-request-id": [ "e0dbbf68-34cf-416e-b351-f9055209c460" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonFilePath" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00eb28-0000-0800-0000-6716bf930000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "725529bd-9048-4fd0-aa95-d6dc40ac2c0b" ], - "x-ms-correlation-request-id": [ "05dac303-f301-45c6-b6f5-285cb0ec0c24" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205544Z:05dac303-f301-45c6-b6f5-285cb0ec0c24" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EC0B32850C1E4083A5D245986F30BB41 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:55:44Z" ], - "Date": [ "Mon, 21 Oct 2024 20:55:44 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "572" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"name\":\"e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:54:43.711147Z\"}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA?api-version=2024-02-28-preview\u0026t=638651408842398441\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NtG7LpkEerYYaZq9RVuj5UqiDYK1kVyjDRJMHioo6FODE2NgPJIg1U1aYkhDDLB5Xcl0bTWt3FP0Ff650kcdxdiC2fMWXrSIbk2HfyAcQBec25cpuRpXqfvA3mqdpX1YkBqV5JnnaQuikVFP228DEAaoFZ-VlQGnOkFsIuc_yqzx8-mQxPcFAkA942VtQTnE1wKUVfhPb-kt0ClQmwYE9Tv_yUrokkt2ro9xx1U8nNrR86QwSukH2KSJc8OPmZIyio4NdWvOU9-OvH6T8mtZYOV1z_BN7tpmFKqxGM4Nykfecp0XxBp-0JU1kl2Wcww0dNeXRnis7MeC6_INZN3MA\u0026h=aLLrTtn-DltiaYoc7YTxL0Qg7sZaXCF3_TTp9NSVZvQ", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "35" ], - "x-ms-client-request-id": [ "e0dbbf68-34cf-416e-b351-f9055209c460" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonFilePath" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a003a35-0000-0800-0000-6716bfd50000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "d79a298f-98fc-45e6-a353-4db8ee3871a7" ], - "x-ms-correlation-request-id": [ "1914fc23-bc99-4871-a4d9-d9bd98cd98e8" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205615Z:1914fc23-bc99-4871-a4d9-d9bd98cd98e8" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AB90010817584266B577CDF71BE9FDB8 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:56:14Z" ], - "Date": [ "Mon, 21 Oct 2024 20:56:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "632" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"name\":\"e993ac4c-b531-442e-80cd-4af39dd4b914*6E4165B44F9DA2EC7FE0D0A29801A394EB7082333CA513630EA159BD61818CEA\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T20:54:43.711147Z\",\"endTime\":\"2024-10-21T20:54:52.1793127Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs?api-version=2024-02-28-preview+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "36" ], - "x-ms-client-request-id": [ "e0dbbf68-34cf-416e-b351-f9055209c460" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonFilePath" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8101224b-0000-0800-0000-6716bf9c0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "227435d5-ecb9-4e02-b40f-52f0a1947508" ], - "x-ms-correlation-request-id": [ "d3771740-6771-42f0-9d41-ab916a8653b8" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205615Z:d3771740-6771-42f0-9d41-ab916a8653b8" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DCC6D21CE3D646958B1B7434DAA7C1D0 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:56:15Z" ], - "Date": [ "Mon, 21 Oct 2024 20:56:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "637" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ci9tzs\",\"name\":\"ci9tzs\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:54:43.4429743Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:54:43.4429743Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ayg7cyfma0e8dzb7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateViaJsonString+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n?api-version=2024-02-28-preview", - "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n }\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "100" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"81016b58-0000-0800-0000-6716bff00000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "e1c959f5-692e-4a4f-834d-ef62d309d08c" ], - "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], - "x-ms-correlation-request-id": [ "c8cff6d2-b87c-49e2-b17a-62ad18261134" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM" ], - "x-ms-request-id": [ "7fd242b4-727b-443b-8389-5104730f36e2" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205617Z:c8cff6d2-b87c-49e2-b17a-62ad18261134" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8D8E0F2264A143A68CA3B1A6D57A17EF Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:56:15Z" ], - "Date": [ "Mon, 21 Oct 2024 20:56:16 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "560" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n\",\"name\":\"4tkz1n\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:56:16.2627394Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:56:16.2627394Z\"},\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "38" ], - "x-ms-client-request-id": [ "fc5a769a-cb90-4d50-861b-47c890446e0b" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonString" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00ff3a-0000-0800-0000-6716bff00000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "a891b5db-e4d9-417c-98c8-6d7d032c380d" ], - "x-ms-correlation-request-id": [ "2d67abfb-3255-4215-a704-b590da489361" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205647Z:2d67abfb-3255-4215-a704-b590da489361" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 85902484A4D345DABFF8BFDCA79BE113 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:56:47Z" ], - "Date": [ "Mon, 21 Oct 2024 20:56:47 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "573" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"name\":\"7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:56:16.4897232Z\"}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "39" ], - "x-ms-client-request-id": [ "fc5a769a-cb90-4d50-861b-47c890446e0b" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonString" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00ff3a-0000-0800-0000-6716bff00000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "31c0950e-0681-4746-a7ee-c79fbde6866e" ], - "x-ms-correlation-request-id": [ "be90ebbc-68f0-425e-8891-d338e0acde18" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205717Z:be90ebbc-68f0-425e-8891-d338e0acde18" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E41F64E77FE465EA5F86D001AB6209F Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:57:17Z" ], - "Date": [ "Mon, 21 Oct 2024 20:57:17 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "573" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"name\":\"7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T20:56:16.4897232Z\"}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC?api-version=2024-02-28-preview\u0026t=638651409770752823\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=W6Np5FgLW_uwd0I8f7Lc4xrt6U7iezRgr3-sTtQbHFfbw1tYFIwmUb4GkpfdSYSw2dGd74g3ib73hrk7N_7yCQYIjVrhmwd0ycdCEOI_o94wMrvVCyAC5_vL7n3qdITd-swfVzqIx2QrmiOeW8oNcUwcurnYUxaD6XIDsAOmSPG-_QES_r2jyIESfqwqs9yL0wtSG_0ZKytUNvLc-PuePobqr6ybqpXcXsfxw1_Ujm32hivLxOI2-3uEzmOfpgOk8cZCWBCuxnfDtZvdu9UQPzZ4CYSnySYoRqS0yuwxbLtc9sBRiAQEUu678XFAF-WUKj_t-0MbcdMr1ESdrXblDg\u0026h=Xr8sT8wNO_9YiJhz0lDZQkJYDcVNX4krdb3Xeh6t5JM", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "40" ], - "x-ms-client-request-id": [ "fc5a769a-cb90-4d50-861b-47c890446e0b" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonString" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00c046-0000-0800-0000-6716c0320000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "5a522a96-6021-4b45-9320-352547e06258" ], - "x-ms-correlation-request-id": [ "9722b8a7-ef63-46a6-8394-754022878fb8" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205747Z:9722b8a7-ef63-46a6-8394-754022878fb8" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E1188E78A79449CAFAE8F671229EA00 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:57:47Z" ], - "Date": [ "Mon, 21 Oct 2024 20:57:47 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "633" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"name\":\"7fd242b4-727b-443b-8389-5104730f36e2*E7C9A850F51F3D9822863852ADECA8D307C25A172CC2DE2E706846CCCA7B60FC\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T20:56:16.4897232Z\",\"endTime\":\"2024-10-21T20:56:24.4303843Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "New-AzHealthDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n?api-version=2024-02-28-preview+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "41" ], - "x-ms-client-request-id": [ "fc5a769a-cb90-4d50-861b-47c890446e0b" ], - "CommandName": [ "New-AzHealthDeidService" ], - "FullCommandName": [ "New-AzHealthDeidService_CreateViaJsonString" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8101aa59-0000-0800-0000-6716bff80000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "81f0574f-7009-4b26-b2d1-19e724ac9775" ], - "x-ms-correlation-request-id": [ "77a1c616-331e-498d-b991-c7db8ba12ef5" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205748Z:77a1c616-331e-498d-b991-c7db8ba12ef5" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0E043BFC91504D26BF312D11927C1141 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:57:47Z" ], - "Date": [ "Mon, 21 Oct 2024 20:57:47 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "637" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/4tkz1n\",\"name\":\"4tkz1n\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:56:16.2627394Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:56:16.2627394Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9gnatbfdebhb8bm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", - "isContentBase64": false - } - } -} \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Recording.json b/src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Recording.json deleted file mode 100644 index 9ff697dafc27..000000000000 --- a/src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Recording.json +++ /dev/null @@ -1,577 +0,0 @@ -{ - "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "58" ], - "x-ms-client-request-id": [ "3dd0f8bb-bb19-4cd7-bec7-f49f972e8c7a" ], - "CommandName": [ "Update-AzHealthDeidService" ], - "FullCommandName": [ "Update-AzHealthDeidService_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8101b602-0000-0800-0000-6716bdc20000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "37c23278-8e8e-4c19-b0af-33839e0bb1d9" ], - "x-ms-correlation-request-id": [ "40bff2c3-5a76-4064-b9d7-e21d63ef87c0" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210301Z:40bff2c3-5a76-4064-b9d7-e21d63ef87c0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 954B0E069C8B458BA08C95719A0D375D Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:03:01Z" ], - "Date": [ "Mon, 21 Oct 2024 21:03:00 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+2": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", - "Content": "{\n \"location\": \"eastus2\",\n \"properties\": {\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n }\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "138" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8101b398-0000-0800-0000-6716c1870000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "0b3868f7-01e4-4675-bd4b-0e368b499105" ], - "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], - "x-ms-correlation-request-id": [ "b459768c-fb1a-457e-94b6-c794ea564680" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg" ], - "x-ms-request-id": [ "cb84517f-4c25-41e3-8597-cc5a7bb42991" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210303Z:b459768c-fb1a-457e-94b6-c794ea564680" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 09B7CCA2B13544279BA074D863D3654E Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:03:01Z" ], - "Date": [ "Mon, 21 Oct 2024 21:03:02 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "778" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T21:03:01.8143667Z\"},\"identity\":{\"principalId\":\"0c53d5ec-00e9-46a3-b662-2acee143ee3e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "60" ], - "x-ms-client-request-id": [ "3dd0f8bb-bb19-4cd7-bec7-f49f972e8c7a" ], - "CommandName": [ "Update-AzHealthDeidService" ], - "FullCommandName": [ "Update-AzHealthDeidService_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a008e87-0000-0800-0000-6716c1860000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "b24ee1c0-d24e-4c18-a5f2-abbb04943c6d" ], - "x-ms-correlation-request-id": [ "ee17370d-413b-4aad-bfc8-911524681a21" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210333Z:ee17370d-413b-4aad-bfc8-911524681a21" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3F1F993A62634C52A79410912304C231 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:03:33Z" ], - "Date": [ "Mon, 21 Oct 2024 21:03:32 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"name\":\"cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T21:03:02.7137485Z\"}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "61" ], - "x-ms-client-request-id": [ "3dd0f8bb-bb19-4cd7-bec7-f49f972e8c7a" ], - "CommandName": [ "Update-AzHealthDeidService" ], - "FullCommandName": [ "Update-AzHealthDeidService_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a008e87-0000-0800-0000-6716c1860000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "9f4e06be-fda8-4441-83c5-7b0c8550f824" ], - "x-ms-correlation-request-id": [ "98e63bd4-c1fd-47f5-92a6-6a45a4446dd7" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210403Z:98e63bd4-c1fd-47f5-92a6-6a45a4446dd7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C7063EC7E31842A6AA358AAC5F96FF23 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:03Z" ], - "Date": [ "Mon, 21 Oct 2024 21:04:03 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"name\":\"cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T21:03:02.7137485Z\"}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381?api-version=2024-02-28-preview\u0026t=638651413832987363\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ndvrJzNkrf6sOOZwWtimItHxBF5y9K2h7IqVFyPl1b3S70O3j0uO8LhES8MDtj3P1Gb3cd7Wigf-VXhUFHu-bUdXCDS3FTdHNXZ5SUqQA7-AXLibUwzpYCLtl7Yt8HtzknpWizcvaDpdc9SvUiIXIrgp7lYzJ4rhFygKO_bpXIxAqrW_NoTnxn7wRgS9ZPhDX3NGD71TEN-6G8cGEFaC5y740kAiyLyqbq3G1n7zTPNta0n1pkZprhooCBXBWsHewJTn1-7hqPehaTav0rVDjQoIysthPRwVmTwNbb0bCm2AlDwhLJL0J6kAlPHva333jl3zeMfoDtcu7uUGEp9JtQ\u0026h=ZYOoAGtel2KfrN9zzRenITuMryBl8g00YovwP7W_HJg", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "62" ], - "x-ms-client-request-id": [ "3dd0f8bb-bb19-4cd7-bec7-f49f972e8c7a" ], - "CommandName": [ "Update-AzHealthDeidService" ], - "FullCommandName": [ "Update-AzHealthDeidService_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a001493-0000-0800-0000-6716c1c80000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "e0aad1d4-2784-4f94-bf62-77c9c76676d0" ], - "x-ms-correlation-request-id": [ "ec90fa99-d55c-456c-923c-0800238614c6" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210433Z:ec90fa99-d55c-456c-923c-0800238614c6" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A8317CFD571A4FA89E145D543A2D3B07 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:33Z" ], - "Date": [ "Mon, 21 Oct 2024 21:04:33 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "634" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"name\":\"cb84517f-4c25-41e3-8597-cc5a7bb42991*D65E6F62D51B415791876AC8E515C6381FD5EB1AC7B5983B2E5CCD46D3F47381\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T21:03:02.7137485Z\",\"endTime\":\"2024-10-21T21:03:13.1643122Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "63" ], - "x-ms-client-request-id": [ "3dd0f8bb-bb19-4cd7-bec7-f49f972e8c7a" ], - "CommandName": [ "Update-AzHealthDeidService" ], - "FullCommandName": [ "Update-AzHealthDeidService_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8101589a-0000-0800-0000-6716c1910000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "2bcbc0fe-1ce9-427a-b520-9ae6b6cfd48b" ], - "x-ms-correlation-request-id": [ "1019237e-bc12-4060-b52e-3f185d6e70c6" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210434Z:1019237e-bc12-4060-b52e-3f185d6e70c6" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2D4A4E5204C843CC81A71D293EA110A0 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:33Z" ], - "Date": [ "Mon, 21 Oct 2024 21:04:33 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "779" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T21:03:01.8143667Z\"},\"identity\":{\"principalId\":\"0c53d5ec-00e9-46a3-b662-2acee143ee3e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "64" ], - "x-ms-client-request-id": [ "40d74ecf-d3e8-4645-83f2-1370c376c27b" ], - "CommandName": [ "Get-AzHealthDeidService" ], - "FullCommandName": [ "Get-AzHealthDeidService_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"81011911-0000-0800-0000-6716be1e0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "9e2729e1-2cae-448f-bdea-ef8fd9b9ce8e" ], - "x-ms-correlation-request-id": [ "ca50fa6a-46b8-41c4-936b-f210c8e998e4" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210434Z:ca50fa6a-46b8-41c4-936b-f210c8e998e4" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 31EA560AFE894596BA0674C7F2858204 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:34Z" ], - "Date": [ "Mon, 21 Oct 2024 21:04:33 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:48:23.0398549Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "f5948403-e648-4217-bb57-89307c39eaa7" ], - "CommandName": [ "Update-AzHealthDeidService" ], - "FullCommandName": [ "Update-AzHealthDeidService_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"81011911-0000-0800-0000-6716be1e0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "99d05d45-bf5e-4a87-9b68-70948ec39de5" ], - "x-ms-correlation-request-id": [ "3488f52c-c4cd-432c-8996-88754b62e863" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210434Z:3488f52c-c4cd-432c-8996-88754b62e863" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B962167395464D1A956AC2D276D7B564 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:34Z" ], - "Date": [ "Mon, 21 Oct 2024 21:04:34 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:48:23.0398549Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview+3": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview", - "Content": "{\n \"tags\": {\n \"AzPwshTestKey\": \"AzPwshTestValue\"\n },\n \"location\": \"eastus2\",\n \"properties\": {\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n }\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "194" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"81010ca7-0000-0800-0000-6716c1e40000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "939316c3-4409-4b09-8924-e73860d7c4d8" ], - "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], - "x-ms-correlation-request-id": [ "b183dfa1-e203-4a34-b8d0-1d8e7bd8bd06" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg" ], - "x-ms-request-id": [ "021f56c2-01f6-4383-b5db-1f23f04cece8" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210437Z:b183dfa1-e203-4a34-b8d0-1d8e7bd8bd06" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C6B330C6517B46D69B89DD695B6DF21D Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:04:34Z" ], - "Date": [ "Mon, 21 Oct 2024 21:04:37 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "811" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T21:04:35.4730752Z\"},\"identity\":{\"principalId\":\"afdd9308-2f50-4881-b954-2dfcbd9dd87a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "f5948403-e648-4217-bb57-89307c39eaa7" ], - "CommandName": [ "Update-AzHealthDeidService" ], - "FullCommandName": [ "Update-AzHealthDeidService_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00a598-0000-0800-0000-6716c1e40000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "34b878ec-85bf-4d7d-8a6e-21ae5f925fe6" ], - "x-ms-correlation-request-id": [ "718a5c57-ee88-43fc-952e-e35a8d0f61a2" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210508Z:718a5c57-ee88-43fc-952e-e35a8d0f61a2" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9A66D3C081714F80A5AA87ED04FB6CD0 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:05:07Z" ], - "Date": [ "Mon, 21 Oct 2024 21:05:07 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"name\":\"021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T21:04:36.4340498Z\"}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "68" ], - "x-ms-client-request-id": [ "f5948403-e648-4217-bb57-89307c39eaa7" ], - "CommandName": [ "Update-AzHealthDeidService" ], - "FullCommandName": [ "Update-AzHealthDeidService_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00a598-0000-0800-0000-6716c1e40000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "a544539a-90ce-4891-9a55-e112414e6e88" ], - "x-ms-correlation-request-id": [ "22f58c5c-0b0b-4875-a51c-28e902e8b441" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210538Z:22f58c5c-0b0b-4875-a51c-28e902e8b441" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 942C7822EFFE4BB3BA93E79EF25590E5 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:05:38Z" ], - "Date": [ "Mon, 21 Oct 2024 21:05:37 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"name\":\"021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"status\":\"Accepted\",\"startTime\":\"2024-10-21T21:04:36.4340498Z\"}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2?api-version=2024-02-28-preview\u0026t=638651414777857918\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=aqrb9LWAY2oDuCfsqQhStdd2Bhn64xeF86Lqy3mQ2_sGW3_c_i5YlT0-BL6SIGVIEYO2rr5fd_osRdmYFJA8YpHNMs-UG59CgMVKj0LNQk9Y_twR6wAhEF3hGFpzE1q83wOwxFhNvHR9UvlnboQV08BD_HHgxL6DR6POrjYsuimthptaBsROuPAWTSUasHmJkIa1qJ_MCS8YeAw4J9zotGj8LFYMnoPj24t9W50EB7iPAjy4ocPE_veutkBrXni0YJ33Sh_vSx5hnsSuAUoBqlZYQomilWlOKv8k55dhRTuIitBENAiLSqYvZcQbhhZy393uOIS-ajyqD-Jt6Eb4og\u0026h=YRcV_nYivcfsH3NwnXMtlJQw8ecsFCGJKn7ZAMNa3Gg", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "69" ], - "x-ms-client-request-id": [ "f5948403-e648-4217-bb57-89307c39eaa7" ], - "CommandName": [ "Update-AzHealthDeidService" ], - "FullCommandName": [ "Update-AzHealthDeidService_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00d9a6-0000-0800-0000-6716c2260000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "9b3d6ea2-8d43-4c3c-aa5d-f1d77b3c3c18" ], - "x-ms-correlation-request-id": [ "9f2e8e35-2af4-4c0d-b7cc-0f8783df1726" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210608Z:9f2e8e35-2af4-4c0d-b7cc-0f8783df1726" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80FD99DE2A224DF6A675039851277A76 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:06:08Z" ], - "Date": [ "Mon, 21 Oct 2024 21:06:07 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "634" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"name\":\"021f56c2-01f6-4383-b5db-1f23f04cece8*5408DFFE04281D5EBFAA431355AAA8E7F69AD72835336FF1C9EF6AE698AD94D2\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T21:04:36.4340498Z\",\"endTime\":\"2024-10-21T21:04:45.7632484Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "Update-AzHealthDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "70" ], - "x-ms-client-request-id": [ "f5948403-e648-4217-bb57-89307c39eaa7" ], - "CommandName": [ "Update-AzHealthDeidService" ], - "FullCommandName": [ "Update-AzHealthDeidService_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"810183a8-0000-0800-0000-6716c1ed0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "6ad9e82a-83cc-4a6a-94e8-ff7f038756a0" ], - "x-ms-correlation-request-id": [ "7c299eb1-d29e-4d61-a3b1-810b08fa255f" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210608Z:7c299eb1-d29e-4d61-a3b1-810b08fa255f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6C0650B07143457683E07E0B136A9D07 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:06:08Z" ], - "Date": [ "Mon, 21 Oct 2024 21:06:07 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "812" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T21:04:35.4730752Z\"},\"identity\":{\"principalId\":\"afdd9308-2f50-4881-b954-2dfcbd9dd87a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", - "isContentBase64": false - } - } -} \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/env.json b/src/HealthDeid/HealthDeid.Autorest/test/env.json deleted file mode 100644 index ac00d899ac27..000000000000 --- a/src/HealthDeid/HealthDeid.Autorest/test/env.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "deidServiceName": "khpfg9", - "resourceGroupName": "azps-test-rg-eus2", - "SubscriptionId": "a49b70b4-60ee-4422-a7e2-3a5223f5fae4", - "deidServiceToCreateInTests3": "4tkz1n", - "location": "eastus2", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "deidServiceNameToDelete1": "qv4mlb", - "deidServiceNameToDelete2": "9nbgfp", - "deidServiceName2": "7p4kc5", - "deidServiceToCreateInTests2": "ci9tzs", - "deidServiceToCreateInTests1": "8gln5p" -} diff --git a/src/HealthDeid/HealthDeid.Autorest/.gitattributes b/src/HealthDeidentification/HealthDeidentification.Autorest/.gitattributes similarity index 100% rename from src/HealthDeid/HealthDeid.Autorest/.gitattributes rename to src/HealthDeidentification/HealthDeidentification.Autorest/.gitattributes diff --git a/src/HealthDeid/HealthDeid.Autorest/.gitignore b/src/HealthDeidentification/HealthDeidentification.Autorest/.gitignore similarity index 100% rename from src/HealthDeid/HealthDeid.Autorest/.gitignore rename to src/HealthDeidentification/HealthDeidentification.Autorest/.gitignore diff --git a/src/HealthDeid/HealthDeid.Autorest/Properties/AssemblyInfo.cs b/src/HealthDeidentification/HealthDeidentification.Autorest/Properties/AssemblyInfo.cs similarity index 97% rename from src/HealthDeid/HealthDeid.Autorest/Properties/AssemblyInfo.cs rename to src/HealthDeidentification/HealthDeidentification.Autorest/Properties/AssemblyInfo.cs index 9ffcaa52e073..9604bddc5084 100644 --- a/src/HealthDeid/HealthDeid.Autorest/Properties/AssemblyInfo.cs +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/Properties/AssemblyInfo.cs @@ -19,7 +19,7 @@ [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 - HealthDeid")] +[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - HealthDeidentification")] [assembly: System.Reflection.AssemblyFileVersionAttribute("0.1.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("0.1.0.0")] [assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] diff --git a/src/HealthDeid/HealthDeid.Autorest/README.md b/src/HealthDeidentification/HealthDeidentification.Autorest/README.md similarity index 88% rename from src/HealthDeid/HealthDeid.Autorest/README.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/README.md index 2e27f50cf7a1..a9d00d566ca5 100644 --- a/src/HealthDeid/HealthDeid.Autorest/README.md +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/README.md @@ -1,6 +1,6 @@ -# Az.HealthDeid -This directory contains the PowerShell module for the HealthDeid service. +# Az.HealthDeidentification +This directory contains the PowerShell module for the HealthDeidentification service. --- ## Info @@ -20,12 +20,12 @@ This module was primarily generated via [AutoRest](https://github.com/Azure/auto AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. ## Development -For information on how to develop for `Az.HealthDeid`, see [how-to.md](how-to.md). +For information on how to develop for `Az.HealthDeidentification`, see [how-to.md](how-to.md). ### AutoRest Configuration > see https://aka.ms/autorest - + ```yaml # pin the swagger version by using the commit id instead of branch name commit: cde61328a54d392000b36882fec169fce5a983c1 @@ -36,21 +36,21 @@ require: - $(repo)/specification/healthdataaiservices/resource-manager/readme.md # If the swagger has not been put in the repo, you may uncomment the following line and refer to it locally # - (this-folder)/relative-path-to-your-local-readme.md - -try-require: + +try-require: - $(repo)/specification/healthdataaiservices/resource-manager/readme.powershell.md - + # For new RP, the version is 0.1.0 module-version: 0.1.0 # Normally, title is the service name -title: HealthDeid -subject-prefix: $(service-name) - +title: HealthDeidentification +subject-prefix: Deid + # The next three configurations are exclusive to v3, and in v4, they are activated by default. If you are still using v3, please uncomment them. # identity-correction-for-post: true # resourcegroup-append: true # nested-object-to-string: true - + directive: # Following are common directives which are normally required in all the RPs # 1. Remove the unexpanded parameter set @@ -62,11 +62,15 @@ directive: - where: variant: ^CreateViaIdentity.*$ remove: true + # Remove cmdlet for PrivateLink resource + - where: + subject: .*PrivateLink.* + remove: true # Follow directive is v3 specific. If you are using v3, uncomment following directive and comments out two directives above #- where: # variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ # remove: true - + # Remove the set-* cmdlet - where: verb: Set diff --git a/src/HealthDeid/HealthDeid.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json b/src/HealthDeidentification/HealthDeidentification.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json similarity index 92% rename from src/HealthDeid/HealthDeid.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json rename to src/HealthDeidentification/HealthDeidentification.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json index 8166acdad8aa..8c27557ce00d 100644 --- a/src/HealthDeid/HealthDeid.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json @@ -2,16 +2,16 @@ "resourceType": "deidServices", "apiVersion": "2024-02-28-preview", "learnMore": { - "url": "https://learn.microsoft.com/powershell/module/az.healthdeid" + "url": "https://learn.microsoft.com/powershell/module/az.healthdeidentification" }, "commands": [ { - "name": "Get-AzHealthDeidService", + "name": "Get-AzDeidService", "description": "Get a DeidService", "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthDataAIServices/deidServices/{deidServiceName}", "help": { "learnMore": { - "url": "https://learn.microsoft.com/powershell/module/az.healthdeid/get-azhealthdeidservice" + "url": "https://learn.microsoft.com/powershell/module/az.healthdeidentification/get-azdeidservice" }, "parameterSets": [ { @@ -44,12 +44,12 @@ ] }, { - "name": "Remove-AzHealthDeidService", + "name": "Remove-AzDeidService", "description": "Delete a DeidService", "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthDataAIServices/deidServices/{deidServiceName}", "help": { "learnMore": { - "url": "https://learn.microsoft.com/powershell/module/az.healthdeid/remove-azhealthdeidservice" + "url": "https://learn.microsoft.com/powershell/module/az.healthdeidentification/remove-azdeidservice" }, "parameterSets": [ { diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/custom/README.md b/src/HealthDeidentification/HealthDeidentification.Autorest/custom/README.md new file mode 100644 index 000000000000..79714ef09540 --- /dev/null +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/custom/README.md @@ -0,0 +1,41 @@ +# Custom +This directory contains custom implementation for non-generated cmdlets for the `Az.HealthDeidentification` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `../exports` folder. The only generated file into this folder is the `Az.HealthDeidentification.custom.psm1`. This file should not be modified. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: yes + +## Details +For `Az.HealthDeidentification` to use custom cmdlets, it does this two different ways. We **highly recommend** creating script cmdlets, as they are easier to write and allow access to the other exported cmdlets. C# cmdlets *cannot access exported cmdlets*. + +For C# cmdlets, they are compiled with the rest of the generated low-level cmdlets into the `./bin/Az.HealthDeidentification.private.dll`. The names of the cmdlets (methods) and files must follow the `[cmdletName]_[variantName]` syntax used for generated cmdlets. The `variantName` is used as the `ParameterSetName`, so use something appropriate that doesn't clash with already created variant or parameter set names. You cannot use the `ParameterSetName` property in the `Parameter` attribute on C# cmdlets. Each cmdlet must be separated into variants using the same pattern as seen in the `generated/cmdlets` folder. + +For script cmdlets, these are loaded via the `Az.HealthDeidentification.custom.psm1`. Then, during the build process, this module is loaded and processed in the same manner as the C# cmdlets. The fundamental difference is the script cmdlets use the `ParameterSetName` attribute and C# cmdlets do not. To create a script cmdlet variant of a generated cmdlet, simply decorate all parameters in the script with the new `ParameterSetName` in the `Parameter` attribute. This will appropriately treat each parameter set as a separate variant when processed to be exported during the build. + +## Purpose +This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `../exports` folder. + +## Usage +The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `../exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: +- Break +- DefaultProfile +- HttpPipelineAppend +- HttpPipelinePrepend +- Proxy +- ProxyCredential +- ProxyUseDefaultCredentials + +These provide functionality to our HTTP pipeline and other useful features. In script, you can forward these parameters using `$PSBoundParameters` to the other cmdlets you're calling within `Az.HealthDeidentification`. For C#, follow the usage seen in the `ProcessRecordAsync` method. + +### Attributes +For processing the cmdlets, we've created some additional attributes: +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.DescriptionAttribute` + - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts. +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.DoNotExportAttribute` + - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.HealthDeidentification`. +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.InternalExportAttribute` + - Used in C# cmdlets to route exported cmdlets to the `../internal`, which are *not exposed* by `Az.HealthDeidentification`. For more information, see [README.md](../internal/README.md) in the `../internal` folder. +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.ProfileAttribute` + - Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules. \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Az.HealthDeidentification.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Az.HealthDeidentification.md new file mode 100644 index 000000000000..453003e9e1f2 --- /dev/null +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Az.HealthDeidentification.md @@ -0,0 +1,25 @@ +--- +Module Name: Az.HealthDeidentification +Module Guid: d0c593a2-a3c6-4104-82e6-889857c5c3ef +Download Help Link: https://learn.microsoft.com/powershell/module/az.healthdeidentification +Help Version: 1.0.0.0 +Locale: en-US +--- + +# Az.HealthDeidentification Module +## Description +Microsoft Azure PowerShell: HealthDeidentification cmdlets + +## Az.HealthDeidentification Cmdlets +### [Get-AzDeidService](Get-AzDeidService.md) +Get a DeidService + +### [New-AzDeidService](New-AzDeidService.md) +create a DeidService + +### [Remove-AzDeidService](Remove-AzDeidService.md) +Delete a DeidService + +### [Update-AzDeidService](Update-AzDeidService.md) +update a DeidService + diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/Get-AzHealthDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Get-AzDeidService.md similarity index 82% rename from src/HealthDeid/HealthDeid.Autorest/docs/Get-AzHealthDeidService.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/docs/Get-AzDeidService.md index eade16f195f5..2e51a499fee9 100644 --- a/src/HealthDeid/HealthDeid.Autorest/docs/Get-AzHealthDeidService.md +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Get-AzDeidService.md @@ -1,11 +1,11 @@ --- external help file: -Module Name: Az.HealthDeid -online version: https://learn.microsoft.com/powershell/module/az.healthdeid/get-azhealthdeidservice +Module Name: Az.HealthDeidentification +online version: https://learn.microsoft.com/powershell/module/az.healthdeidentification/get-azdeidservice schema: 2.0.0 --- -# Get-AzHealthDeidService +# Get-AzDeidService ## SYNOPSIS Get a DeidService @@ -14,23 +14,24 @@ Get a DeidService ### List (Default) ``` -Get-AzHealthDeidService [-SubscriptionId ] [-DefaultProfile ] [] +Get-AzDeidService [-SubscriptionId ] [-DefaultProfile ] [] ``` ### Get ``` -Get-AzHealthDeidService -Name -ResourceGroupName [-SubscriptionId ] +Get-AzDeidService -Name -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] [] ``` ### GetViaIdentity ``` -Get-AzHealthDeidService -InputObject [-DefaultProfile ] [] +Get-AzDeidService -InputObject [-DefaultProfile ] + [] ``` ### List1 ``` -Get-AzHealthDeidService -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] +Get-AzDeidService -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] [] ``` @@ -41,7 +42,7 @@ Get a DeidService ### Example 1: Get a De-identification Service resource by name ```powershell -Get-AzHealthDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +Get-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg ``` ```output @@ -73,7 +74,7 @@ Gets a De-identification Service by its name and the resource group it belongs t ### Example 2: List all De-identification Service resources in a resource group ```powershell -Get-AzHealthDeidService -ResourceGroupName azpwsh-test-rg +Get-AzDeidService -ResourceGroupName azpwsh-test-rg ``` ```output @@ -107,7 +108,7 @@ Accept wildcard characters: False Identity Parameter ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity +Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity Parameter Sets: GetViaIdentity Aliases: @@ -170,11 +171,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IDeidService +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IDeidService ## NOTES diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/New-AzHealthDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/New-AzDeidService.md similarity index 87% rename from src/HealthDeid/HealthDeid.Autorest/docs/New-AzHealthDeidService.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/docs/New-AzDeidService.md index ebfded62b180..bb2fe0f443be 100644 --- a/src/HealthDeid/HealthDeid.Autorest/docs/New-AzHealthDeidService.md +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/New-AzDeidService.md @@ -1,11 +1,11 @@ --- external help file: -Module Name: Az.HealthDeid -online version: https://learn.microsoft.com/powershell/module/az.healthdeid/new-azhealthdeidservice +Module Name: Az.HealthDeidentification +online version: https://learn.microsoft.com/powershell/module/az.healthdeidentification/new-azdeidservice schema: 2.0.0 --- -# New-AzHealthDeidService +# New-AzDeidService ## SYNOPSIS create a DeidService @@ -14,34 +14,32 @@ create a DeidService ### CreateExpanded (Default) ``` -New-AzHealthDeidService -Name -ResourceGroupName -Location - [-SubscriptionId ] [-EnableSystemAssignedIdentity] [-PublicNetworkAccess ] [-Tag ] +New-AzDeidService -Name -ResourceGroupName -Location [-SubscriptionId ] + [-EnableSystemAssignedIdentity] [-PublicNetworkAccess ] [-Tag ] [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### CreateViaJsonFilePath ``` -New-AzHealthDeidService -Name -ResourceGroupName -JsonFilePath - [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] - [] +New-AzDeidService -Name -ResourceGroupName -JsonFilePath [-SubscriptionId ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### CreateViaJsonString ``` -New-AzHealthDeidService -Name -ResourceGroupName -JsonString - [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] - [] +New-AzDeidService -Name -ResourceGroupName -JsonString [-SubscriptionId ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION -Create a DeidService +create a DeidService ## EXAMPLES ### Example 1: Create a new De-identification Service resource ```powershell -New-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -Location eastus2 -EnableSystemAssignedIdentity -PublicNetworkAccess "Disabled" +New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -Location eastus2 -EnableSystemAssignedIdentity -PublicNetworkAccess "Disabled" ``` ```output @@ -73,7 +71,7 @@ Creates a new De-identification Service resource in the specified resource group ### Example 2: Create a new De-identification Service resource from a JSON file ```powershell -New-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -JsonFilePath path/to/json.json +New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -JsonFilePath path/to/json.json ``` ```output @@ -339,7 +337,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IDeidService +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IDeidService ## NOTES diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/README.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/README.md new file mode 100644 index 000000000000..9f2e3fc309fc --- /dev/null +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/README.md @@ -0,0 +1,11 @@ +# Docs +This directory contains the documentation of the cmdlets for the `Az.HealthDeidentification` module. To run documentation generation, use the `generate-help.ps1` script at the root module folder. Files in this folder will *always be overridden on regeneration*. To update documentation examples, please use the `../examples` folder. + +## Info +- Modifiable: no +- Generated: all +- Committed: yes +- Packaged: yes + +## Details +The process of documentation generation loads `Az.HealthDeidentification` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `../exports` folder. Additionally, when writing custom cmdlets in the `../custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `../examples` folder. \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/Remove-AzHealthDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Remove-AzDeidService.md similarity index 85% rename from src/HealthDeid/HealthDeid.Autorest/docs/Remove-AzHealthDeidService.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/docs/Remove-AzDeidService.md index cb08de005739..ae2dabf490a8 100644 --- a/src/HealthDeid/HealthDeid.Autorest/docs/Remove-AzHealthDeidService.md +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Remove-AzDeidService.md @@ -1,11 +1,11 @@ --- external help file: -Module Name: Az.HealthDeid -online version: https://learn.microsoft.com/powershell/module/az.healthdeid/remove-azhealthdeidservice +Module Name: Az.HealthDeidentification +online version: https://learn.microsoft.com/powershell/module/az.healthdeidentification/remove-azdeidservice schema: 2.0.0 --- -# Remove-AzHealthDeidService +# Remove-AzDeidService ## SYNOPSIS Delete a DeidService @@ -14,14 +14,14 @@ Delete a DeidService ### Delete (Default) ``` -Remove-AzHealthDeidService -Name -ResourceGroupName [-SubscriptionId ] +Remove-AzDeidService -Name -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] ``` ### DeleteViaIdentity ``` -Remove-AzHealthDeidService -InputObject [-DefaultProfile ] [-AsJob] [-NoWait] - [-PassThru] [-Confirm] [-WhatIf] [] +Remove-AzDeidService -InputObject [-DefaultProfile ] [-AsJob] + [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION @@ -31,7 +31,7 @@ Delete a DeidService ### Example: Remove a De-identification Service resource by name ```powershell -Remove-AzHealthDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +Remove-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg ``` Deletes the specifies De-identification Service resource. @@ -73,7 +73,7 @@ Accept wildcard characters: False Identity Parameter ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity +Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity Parameter Sets: DeleteViaIdentity Aliases: @@ -197,7 +197,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity ## OUTPUTS diff --git a/src/HealthDeid/HealthDeid.Autorest/docs/Update-AzHealthDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Update-AzDeidService.md similarity index 89% rename from src/HealthDeid/HealthDeid.Autorest/docs/Update-AzHealthDeidService.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/docs/Update-AzDeidService.md index 39aea83a8db1..d7f049977a70 100644 --- a/src/HealthDeid/HealthDeid.Autorest/docs/Update-AzHealthDeidService.md +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Update-AzDeidService.md @@ -1,11 +1,11 @@ --- external help file: -Module Name: Az.HealthDeid -online version: https://learn.microsoft.com/powershell/module/az.healthdeid/update-azhealthdeidservice +Module Name: Az.HealthDeidentification +online version: https://learn.microsoft.com/powershell/module/az.healthdeidentification/update-azdeidservice schema: 2.0.0 --- -# Update-AzHealthDeidService +# Update-AzDeidService ## SYNOPSIS update a DeidService @@ -14,7 +14,7 @@ update a DeidService ### UpdateExpanded (Default) ``` -Update-AzHealthDeidService -Name -ResourceGroupName [-SubscriptionId ] +Update-AzDeidService -Name -ResourceGroupName [-SubscriptionId ] [-EnableSystemAssignedIdentity ] [-PublicNetworkAccess ] [-Tag ] [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] @@ -22,19 +22,19 @@ Update-AzHealthDeidService -Name -ResourceGroupName [-Subscrip ### UpdateViaIdentityExpanded ``` -Update-AzHealthDeidService -InputObject [-EnableSystemAssignedIdentity ] +Update-AzDeidService -InputObject [-EnableSystemAssignedIdentity ] [-PublicNetworkAccess ] [-Tag ] [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION -Update a DeidService +update a DeidService ## EXAMPLES ### Example 1: Update a De-identification service to create a System Assigned Managed Identity ```powershell -Update-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $true +Update-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $true ``` ```output @@ -66,7 +66,7 @@ Updates an existing De-identification service to create a System Assigned Manage ### Example 2: Update the public network access and tags of a De-identification service ```powershell -Update-AzHealthDeidService -Name azpwshDeidService2 -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $false -PublicNetworkAccess "Enabled" -Tag @{ AzPwshTestKey = "AzPwshTestValue" } +Update-AzDeidService -Name azpwshDeidService2 -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $false -PublicNetworkAccess "Enabled" -Tag @{ AzPwshTestKey = "AzPwshTestValue" } ``` ```output @@ -149,7 +149,7 @@ Accept wildcard characters: False Identity Parameter ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity +Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity Parameter Sets: UpdateViaIdentityExpanded Aliases: @@ -304,11 +304,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IHealthDeidIdentity +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeid.Models.IDeidService +### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IDeidService ## NOTES diff --git a/src/HealthDeid/HealthDeid.Autorest/examples/Get-AzHealthDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Get-AzDeidService.md similarity index 93% rename from src/HealthDeid/HealthDeid.Autorest/examples/Get-AzHealthDeidService.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/examples/Get-AzDeidService.md index fc354f09cd2b..045fbb69a013 100644 --- a/src/HealthDeid/HealthDeid.Autorest/examples/Get-AzHealthDeidService.md +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Get-AzDeidService.md @@ -1,6 +1,6 @@ ### Example 1: Get a De-identification Service resource by name ```powershell -Get-AzHealthDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +Get-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg ``` ```output @@ -32,7 +32,7 @@ Gets a De-identification Service by its name and the resource group it belongs t ### Example 2: List all De-identification Service resources in a resource group ```powershell -Get-AzHealthDeidService -ResourceGroupName azpwsh-test-rg +Get-AzDeidService -ResourceGroupName azpwsh-test-rg ``` ```output @@ -42,4 +42,4 @@ eastus2 azpwshDeidService1 10/21/2024 12:00:35 AM contoso@microsoft.com User eastus2 azpwshDeidService2 10/21/2024 12:01:06 AM contoso@microsoft.com User 10/21/2024 12:01:06 AM contoso@microsoft.com User azpwsh-test-rg ``` -Lists all De-identification Service resources in the specified resource group. +Lists all De-identification Service resources in the specified resource group. \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/examples/New-AzHealthDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/New-AzDeidService.md similarity index 88% rename from src/HealthDeid/HealthDeid.Autorest/examples/New-AzHealthDeidService.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/examples/New-AzDeidService.md index 577a6ca43485..47546fbcb7e9 100644 --- a/src/HealthDeid/HealthDeid.Autorest/examples/New-AzHealthDeidService.md +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/New-AzDeidService.md @@ -1,6 +1,7 @@ + ### Example 1: Create a new De-identification Service resource ```powershell -New-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -Location eastus2 -EnableSystemAssignedIdentity -PublicNetworkAccess "Disabled" +New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -Location eastus2 -EnableSystemAssignedIdentity -PublicNetworkAccess "Disabled" ``` ```output @@ -32,7 +33,7 @@ Creates a new De-identification Service resource in the specified resource group ### Example 2: Create a new De-identification Service resource from a JSON file ```powershell -New-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -JsonFilePath path/to/json.json +New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -JsonFilePath path/to/json.json ``` ```output @@ -57,4 +58,4 @@ Tag : { Type : microsoft.healthdataaiservices/deidservices ``` -Creates a new De-identification Service resource with location and properties specified in the JSON file. \ No newline at end of file +Creates a new De-identification Service resource with location and properties specified in the JSON file. diff --git a/src/HealthDeid/HealthDeid.Autorest/examples/Remove-AzHealthDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Remove-AzDeidService.md similarity index 62% rename from src/HealthDeid/HealthDeid.Autorest/examples/Remove-AzHealthDeidService.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/examples/Remove-AzDeidService.md index 187d9fc8cf48..ee289ebc53e1 100644 --- a/src/HealthDeid/HealthDeid.Autorest/examples/Remove-AzHealthDeidService.md +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Remove-AzDeidService.md @@ -1,7 +1,7 @@ + ### Example: Remove a De-identification Service resource by name ```powershell -Remove-AzHealthDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +Remove-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg ``` Deletes the specifies De-identification Service resource. - diff --git a/src/HealthDeid/HealthDeid.Autorest/examples/Update-AzHealthDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Update-AzDeidService.md similarity index 89% rename from src/HealthDeid/HealthDeid.Autorest/examples/Update-AzHealthDeidService.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/examples/Update-AzDeidService.md index d87d056c81d2..1c0a3de6efde 100644 --- a/src/HealthDeid/HealthDeid.Autorest/examples/Update-AzHealthDeidService.md +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Update-AzDeidService.md @@ -1,6 +1,6 @@ ### Example 1: Update a De-identification service to create a System Assigned Managed Identity ```powershell -Update-AzHealthDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $true +Update-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $true ``` ```output @@ -32,7 +32,7 @@ Updates an existing De-identification service to create a System Assigned Manage ### Example 2: Update the public network access and tags of a De-identification service ```powershell -Update-AzHealthDeidService -Name azpwshDeidService2 -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $false -PublicNetworkAccess "Enabled" -Tag @{ AzPwshTestKey = "AzPwshTestValue" } +Update-AzDeidService -Name azpwshDeidService2 -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $false -PublicNetworkAccess "Enabled" -Tag @{ AzPwshTestKey = "AzPwshTestValue" } ``` ```output @@ -61,4 +61,4 @@ Tag : { Type : microsoft.healthdataaiservices/deidservices ``` -Update a De-identification Service by enabling public network access, removing the System Assigned Managed Identity and adding tags. +Update a De-identification Service by enabling public network access, removing the System Assigned Managed Identity and adding tags. \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/how-to.md b/src/HealthDeidentification/HealthDeidentification.Autorest/how-to.md similarity index 79% rename from src/HealthDeid/HealthDeid.Autorest/how-to.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/how-to.md index 98c228b62343..76fd36a7b1cb 100644 --- a/src/HealthDeid/HealthDeid.Autorest/how-to.md +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/how-to.md @@ -1,7 +1,7 @@ # How-To -This document describes how to develop for `Az.HealthDeid`. +This document describes how to develop for `Az.HealthDeidentification`. -## Building `Az.HealthDeid` +## Building `Az.HealthDeidentification` To build, run the `build-module.ps1` at the root of the module directory. This will generate the proxy script cmdlets that are the cmdlets being exported by this module. After the build completes, the proxy script cmdlets will be output to the `exports` folder. To read more about the proxy script cmdlets, look at the [README.md](exports/README.md) in the `exports` folder. ## Creating custom cmdlets @@ -10,18 +10,18 @@ To add cmdlets that were not generated by the REST specification, use the `custo ## Generating documentation To generate documentation, the process is now integrated into the `build-module.ps1` script. If you don't want to run this process as part of `build-module.ps1`, you can provide the `-NoDocs` switch. If you want to run documentation generation after the build process, you may still run the `generate-help.ps1` script. Overall, the process will look at the documentation comments in the generated and custom cmdlets and types, and create `.md` files into the `docs` folder. Additionally, this pulls in any examples from the `examples` folder and adds them to the generated help markdown documents. To read more about examples, look at the [README.md](examples/README.md) in the `examples` folder. To read more about documentation, look at the [README.md](docs/README.md) in the `docs` folder. -## Testing `Az.HealthDeid` +## Testing `Az.HealthDeidentification` To test the cmdlets, we use [Pester](https://github.com/pester/Pester). Tests scripts (`.ps1`) should be added to the `test` folder. To execute the Pester tests, run the `test-module.ps1` script. This will run all tests in `playback` mode within the `test` folder. To read more about testing cmdlets, look at the [README.md](examples/README.md) in the `examples` folder. -## Packing `Az.HealthDeid` -To pack `Az.HealthDeid` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://learn.microsoft.com/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team. +## Packing `Az.HealthDeidentification` +To pack `Az.HealthDeidentification` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://learn.microsoft.com/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team. ## Module Script Details -There are multiple scripts created for performing different actions for developing `Az.HealthDeid`. +There are multiple scripts created for performing different actions for developing `Az.HealthDeidentification`. - `build-module.ps1` - - Builds the module DLL (`./bin/Az.HealthDeid.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `./Az.HealthDeid.psd1` with Azure profile information. + - Builds the module DLL (`./bin/Az.HealthDeidentification.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `./Az.HealthDeidentification.psd1` with Azure profile information. - **Parameters**: [`Switch` parameters] - - `-Run`: After building, creates an isolated PowerShell session and loads `Az.HealthDeid`. + - `-Run`: After building, creates an isolated PowerShell session and loads `Az.HealthDeidentification`. - `-Test`: After building, runs the `Pester` tests defined in the `test` folder. - `-Docs`: After building, generates the Markdown documents for the modules into the `docs` folder. - `-Pack`: After building, packages the module into a `.nupkg`. @@ -30,7 +30,7 @@ There are multiple scripts created for performing different actions for developi - `-NoDocs`: Supresses writing the documentation markdown files as part of the cmdlet exporting process. - `-Debugger`: Used when attaching the debugger in Visual Studio to the PowerShell session, and running the build process without recompiling the DLL. This suppresses running the script as an isolated process. - `run-module.ps1` - - Creates an isolated PowerShell session and loads `Az.HealthDeid` into the session. + - Creates an isolated PowerShell session and loads `Az.HealthDeidentification` into the session. - Same as `-Run` in `build-module.ps1`. - **Parameters**: [`Switch` parameters] - `-Code`: Opens a VSCode window with the module's directory. diff --git a/src/HealthDeid/HealthDeid.Autorest/resources/README.md b/src/HealthDeidentification/HealthDeidentification.Autorest/resources/README.md similarity index 100% rename from src/HealthDeid/HealthDeid.Autorest/resources/README.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/resources/README.md diff --git a/src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Recording.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Recording.json similarity index 60% rename from src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Recording.json rename to src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Recording.json index 942b0a4b3556..06f3ca3e866b 100644 --- a/src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Recording.json +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Recording.json @@ -1,5 +1,5 @@ { - "Get-AzHealthDeidService+[NoContext]+List+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview+1": { + "Get-AzDeidService+[NoContext]+List+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview+1": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview", @@ -7,11 +7,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "22" ], - "x-ms-client-request-id": [ "c51b1c4a-b32d-455e-ba07-200a968b49ca" ], - "CommandName": [ "Get-AzHealthDeidService" ], - "FullCommandName": [ "Get-AzHealthDeidService_List" ], + "x-ms-client-request-id": [ "ad707682-7e56-4bda-9ce8-16043efd3c28" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,40 +22,40 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "1209bb30-9aab-47bf-a2f6-900ece44cb95", "7dfce0b9-f07a-4460-9603-ba2d00abf7e3", "01c32af2-6804-45ae-8f98-02ca043d4721", "1b7f286e-def4-43d2-a534-c812f9aea302", "ba25878d-e705-4350-8dff-1f32e21e5a5b", "4653ae2d-7208-4426-bc73-d0f07cd0020d", "dfe0199f-d818-4ace-8f83-e379d2ee6ab5", "e14b4466-d3dd-4309-9b18-3e587401fc7a" ], + "x-ms-original-request-ids": [ "ea8cfe7f-6b1f-4a87-a520-83349da95a3f", "a44c858a-8c1f-484e-9f39-c1caa87f09aa", "cc54a2e1-af02-40cd-93c3-4748a3e54e12", "c6aa3106-38cc-469d-8ed0-e9b0fffb925a", "6c16832f-df04-47ab-9f10-e94a2ca2b391", "b4cd8a25-4916-475b-b828-28fd29e4b247", "acde634c-e03f-41a8-8f60-23c2ba3f0e04", "2e883941-e712-44f4-8a18-327103bbe2d3" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "c1b02ce7-64da-4ec0-afae-8cb95076f792" ], - "x-ms-correlation-request-id": [ "c1b02ce7-64da-4ec0-afae-8cb95076f792" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205304Z:c1b02ce7-64da-4ec0-afae-8cb95076f792" ], + "x-ms-request-id": [ "81831838-30ac-4456-9ae9-adc5150b581e" ], + "x-ms-correlation-request-id": [ "81831838-30ac-4456-9ae9-adc5150b581e" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051244Z:81831838-30ac-4456-9ae9-adc5150b581e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AFEF5D8F77904B2F844840C2409290CC Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:03Z" ], - "Date": [ "Mon, 21 Oct 2024 20:53:04 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C1BEBEF373D240BA87B1CDC5C32F8CBA Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:43Z" ], + "Date": [ "Fri, 25 Oct 2024 05:12:44 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "443361" ], + "Content-Length": [ "442148" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8b3445a3-66e1-4f46-b\",\"name\":\"Test8b3445a3-66e1-4f46-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T15:44:03.6480108Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T15:44:03.6480108Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h7b4hxehbchtf2at.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5cf9363c-c402-4651-9\",\"name\":\"Test5cf9363c-c402-4651-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T15:54:03.5592076Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T15:54:03.5592076Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8cfd3dpe0hgdhev.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test67777892-f34f-42a1-a\",\"name\":\"Test67777892-f34f-42a1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T16:54:03.7993255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T16:54:03.7993255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b2a5frcdaph0endu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6c3a47dc-3080-403f-a\",\"name\":\"Test6c3a47dc-3080-403f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T17:04:04.4150641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T17:04:04.4150641Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b0dhe5cgctagemez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa5ecd3c1-ec0f-4876-9\",\"name\":\"Testa5ecd3c1-ec0f-4876-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T18:35:19.7507449Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:49:57.6127233Z\"},\"identity\":{\"principalId\":\"f346e0d5-5aa4-4f16-aa68-42934e5de67c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fwdwg7ecd8b3hqbb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test33b3e1ec-6107-4e50-8\",\"name\":\"Test33b3e1ec-6107-4e50-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T21:24:04.8223969Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T21:24:04.8223969Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hjh3d0g8g4fka9h7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a5392dd-790e-4ce2-b\",\"name\":\"Test7a5392dd-790e-4ce2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T21:34:04.5725778Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T21:34:04.5725778Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3gffebcfwegbrhu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf463ecca-53a7-4f6a-a\",\"name\":\"Testf463ecca-53a7-4f6a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T22:34:04.5563856Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T22:34:04.5563856Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bvhzb3g3g6guc4es.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test465ab8ce-688b-4413-9\",\"name\":\"Test465ab8ce-688b-4413-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T23:05:19.2592465Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:49:59.5223636Z\"},\"identity\":{\"principalId\":\"0bc19699-0f82-474b-b0fb-3324c24d77be\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://drh2agfyefczfthm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e7fba18-0942-4233-a\",\"name\":\"Test5e7fba18-0942-4233-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T06:24:06.2187878Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T06:24:06.2187878Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0fvchf7b5echzd6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9650ee05-5865-4343-b\",\"name\":\"Test9650ee05-5865-4343-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T07:24:05.6036751Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T07:24:05.6036751Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f5f6g6gadxcyfac5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test56f0398b-ce2e-4ba6-a\",\"name\":\"Test56f0398b-ce2e-4ba6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T20:44:07.732736Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T20:44:07.732736Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bjbmaff9bngfbjg2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdd9de45f-94f7-4721-b\",\"name\":\"Testdd9de45f-94f7-4721-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T00:55:23.5509592Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:28.5078351Z\"},\"identity\":{\"principalId\":\"f3cedb7e-8fd9-4917-a0ad-508c36399bff\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g5c4ghgjajcsffdy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbae1b7b5-fbbe-4243-a\",\"name\":\"Testbae1b7b5-fbbe-4243-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T09:55:24.5542831Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:30.2158476Z\"},\"identity\":{\"principalId\":\"fa466f94-3dbe-488f-9908-1ae510fa0718\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://btdgfgffeqf8hfam.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadd5435b-cc26-43fb-b\",\"name\":\"Testadd5435b-cc26-43fb-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T11:05:25.7167001Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:30.8115536Z\"},\"identity\":{\"principalId\":\"a3c8a647-185b-4fc2-8e87-770db3561e77\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5fac3e7gvbrbre5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8314a48b-97b3-4e9a-8\",\"name\":\"Test8314a48b-97b3-4e9a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T12:05:26.1936541Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:31.3584383Z\"},\"identity\":{\"principalId\":\"588de316-33ff-4914-a47a-9152e514e4d2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dfhucwhnhwh9ggbj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1a4ed21-cd5e-4948-a\",\"name\":\"Teste1a4ed21-cd5e-4948-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T06:55:34.9426332Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:33.6608297Z\"},\"identity\":{\"principalId\":\"00c399d8-7a5a-4508-a85e-da88a67acabf\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c8dyegbgbvcrhzht.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testeb4614b8-1a4e-4d05-9\",\"name\":\"Testeb4614b8-1a4e-4d05-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T07:05:34.7114373Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:34.2817688Z\"},\"identity\":{\"principalId\":\"4be5647d-80af-4044-b75e-04fa2da36c13\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aub2c8gec4aphphs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test593259f4-40e6-458a-8\",\"name\":\"Test593259f4-40e6-458a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T07:34:19.7404327Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T07:34:19.7404327Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bte2c9c8bzgsbfcs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test32674fcc-1bbc-42b9-a\",\"name\":\"Test32674fcc-1bbc-42b9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T08:44:20.0737467Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T08:44:20.0737467Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7d4c5fpdbcqfee0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa56e8022-df18-4406-a\",\"name\":\"Testa56e8022-df18-4406-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T09:25:35.0244097Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:34.6914264Z\"},\"identity\":{\"principalId\":\"d40d6dd4-3ee7-47cc-a1df-5e843dff46c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huh5e2bja7b4hvdt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb9987768-d6b1-45d2-a\",\"name\":\"Testb9987768-d6b1-45d2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T10:14:20.2693472Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T10:14:20.2693472Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d2ceg2drf4ambea0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf209e3a0-c445-4f53-b\",\"name\":\"Testf209e3a0-c445-4f53-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T10:54:20.2592306Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T10:54:20.2592306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://exgyc5hrdeg8b0ca.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste83299b4-3af3-46d4-b\",\"name\":\"Teste83299b4-3af3-46d4-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T11:25:36.4872367Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:39.8407735Z\"},\"identity\":{\"principalId\":\"a88238d9-d06f-4a91-9629-75db4e9aede9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0cwerffhpatb7aa.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test548883fc-610e-42a0-b\",\"name\":\"Test548883fc-610e-42a0-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T14:45:35.6917131Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:40.4624112Z\"},\"identity\":{\"principalId\":\"a227c313-5fbf-4510-8ea5-28be7d26425c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkh5e5a0cbg5cah9.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoneastus\",\"name\":\"jovinsoneastus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T16:21:32.2088677Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T00:03:41.9236289Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a9dua3ezhee5bahz.api.eus001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.Network/privateEndpoints/jovinsoneastys-pl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoneastus/privateEndpointConnections/jovinsoneastys-pl.0715aad2-a357-49ab-9909-c383bb40227d\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testeuspl\",\"name\":\"testeuspl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T17:05:34.7131699Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-28T17:05:34.7131699Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f2hbb3cucbddf8aq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testeuspl/privateEndpointConnections/petest.3e208034-9539-4be2-ad91-3bd069acae2d\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/petest\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg_dev_leakassab/providers/microsoft.healthdataaiservices/deidservices/deid-leakassab\",\"name\":\"deid-leakassab\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"leakassab@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T23:48:44.2725718Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:41.0083465Z\"},\"identity\":{\"principalId\":\"71b89795-6f5b-4903-b422-bab5e5f00d92\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfdsagcygshmehgu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test346052ed-6f6d-4b33-9\",\"name\":\"Test346052ed-6f6d-4b33-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T02:15:37.3172628Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:41.6262298Z\"},\"identity\":{\"principalId\":\"79aa25ec-b034-4b94-b017-6f05cbeee79f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gzf9d0araqh8ethr.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test38a886c3-2c32-415a-8\",\"name\":\"Test38a886c3-2c32-415a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T02:44:22.3535798Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T02:44:22.3535798Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bxcmdwakd7e7amb3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa03107f2-b261-4205-a\",\"name\":\"Testa03107f2-b261-4205-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T03:15:37.2240475Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:42.120944Z\"},\"identity\":{\"principalId\":\"a7352424-7276-492e-a536-ba8da71f93c7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://czaeekhjbegkbpc4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test77c49e23-6752-4c01-8\",\"name\":\"Test77c49e23-6752-4c01-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T06:45:39.1518773Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:42.6853523Z\"},\"identity\":{\"principalId\":\"856eb24c-d56f-425e-8f30-325db7e44891\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fuh0dwceauavetcm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb1361529-e78c-493f-a\",\"name\":\"Testb1361529-e78c-493f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T07:14:21.9690027Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T07:14:21.9690027Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ceeud9e5e6cnhhg6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0d42fb2-8f09-4b56-8\",\"name\":\"Testb0d42fb2-8f09-4b56-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T09:34:22.9446904Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T09:34:22.9446904Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gthcf0ccf8abaug3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test50226ab8-4a1b-41a4-a\",\"name\":\"Test50226ab8-4a1b-41a4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T09:55:39.5586516Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:43.1935443Z\"},\"identity\":{\"principalId\":\"e523578b-c28b-479b-8982-dd6eab50a128\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cphhf7bcg0hgfyg5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testda699e13-07bf-4a2f-8\",\"name\":\"Testda699e13-07bf-4a2f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T11:05:39.0788447Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:43.7351515Z\"},\"identity\":{\"principalId\":\"6e9d8013-482e-4992-b7d1-5d3bc0620c0e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfb2dbh3ghgjf9du.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd5d747c3-4c6d-4b15-b\",\"name\":\"Testd5d747c3-4c6d-4b15-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T14:04:23.8875945Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T14:04:23.8875945Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buateag2cjhfd2bw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.HealthDataAIServices/DeidServices/testing\",\"name\":\"testing\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"msoennichsen@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-29T22:10:02.2149644Z\",\"lastModifiedBy\":\"msoennichsen@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-29T22:10:02.2149644Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://akbcbhd4gpg8h5au.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc27dd89d-23d9-4a3c-9\",\"name\":\"Testc27dd89d-23d9-4a3c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T01:14:24.8592454Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T01:14:24.8592454Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fta2epatd3f4edez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ac675c0-e685-4299-9\",\"name\":\"Test5ac675c0-e685-4299-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T02:14:25.1933926Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T02:14:25.1933926Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3c9f7bjcud9e5ej.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testafe81e7c-7562-42ca-a\",\"name\":\"Testafe81e7c-7562-42ca-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T02:35:41.7566493Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:44.3316408Z\"},\"identity\":{\"principalId\":\"36af6e12-6c87-4b5b-af8e-c39ed6770d3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dedbcng9cpakfraf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92a71375-aaf6-49e3-b\",\"name\":\"Test92a71375-aaf6-49e3-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T07:54:25.6861814Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T07:54:25.6861814Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g4hzcqa4gmbvcdbx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test58bfd760-aa80-4662-a\",\"name\":\"Test58bfd760-aa80-4662-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T08:05:41.0908656Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:44.7808303Z\"},\"identity\":{\"principalId\":\"c0776d81-7979-4cc7-8d3d-281c6ac53d09\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g3bpbegcedggb5g9.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3520cf4b-8f9e-4a29-9\",\"name\":\"Test3520cf4b-8f9e-4a29-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T11:14:26.0450757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T11:14:26.0450757Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f7a8cfgxevcvgdde.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa525cb10-6ce0-4db0-a\",\"name\":\"Testa525cb10-6ce0-4db0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T11:34:29.647141Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-31T11:34:29.647141Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e5ejebe3h0a6bbgk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test76d1ddd8-dfba-4f18-a\",\"name\":\"Test76d1ddd8-dfba-4f18-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T12:35:45.3195802Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:52.7162847Z\"},\"identity\":{\"principalId\":\"a994b509-4be4-478d-a5f3-b5c931117bda\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://asgycvf0d4fnanh3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf243d998-0518-41c2-a\",\"name\":\"Testf243d998-0518-41c2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T14:45:46.3399087Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:53.378961Z\"},\"identity\":{\"principalId\":\"79acc55a-8910-447e-9ca4-7bb7245c4b7a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hud9ekavapf3fwet.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9b988de0-5d15-499d-b\",\"name\":\"Test9b988de0-5d15-499d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T21:35:46.652731Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:53.973208Z\"},\"identity\":{\"principalId\":\"4dc65534-be35-4dce-b14a-becd8eae7e45\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c2ecgfbvcec4h8h2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcea94dc1-27af-4ad2-b\",\"name\":\"Testcea94dc1-27af-4ad2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T21:44:31.3114152Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-31T21:44:31.3114152Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7g6hfhshac7ewfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test418fe284-34c6-4a5c-9\",\"name\":\"Test418fe284-34c6-4a5c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T01:46:20.8617847Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T01:46:20.8617847Z\"},\"identity\":{\"principalId\":\"2847d5db-8407-4666-a2b5-ca5e27ea985b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aedda6aeazemepcj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2dec70a3-a4c4-4883-b\",\"name\":\"Test2dec70a3-a4c4-4883-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T04:55:05.9148319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T04:55:05.9148319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adhcg7bvb2h0d9hn.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test25769ffe-af47-45e0-9\",\"name\":\"Test25769ffe-af47-45e0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T04:56:22.1680743Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T04:56:22.1680743Z\"},\"identity\":{\"principalId\":\"31ff749c-ccc2-4906-ba3e-130dc99dc112\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a6fkftadd6cngpgt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb770ec70-1ff0-400b-b\",\"name\":\"Testb770ec70-1ff0-400b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T05:05:06.2580805Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T05:05:06.2580805Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fqfdcwa8bdg9dpcf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa801711d-f24d-4021-9\",\"name\":\"Testa801711d-f24d-4021-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-11T08:21:51.2658018Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-11T08:21:51.2658018Z\"},\"identity\":{\"principalId\":\"4c0557c9-ac85-4a1e-a3b2-da80eaf232d0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hqfcebgqb2a9dpaj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d288a28-4ed9-4177-b\",\"name\":\"Test5d288a28-4ed9-4177-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-17T18:15:30.2225705Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-17T18:15:30.2225705Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b8erb8byenfrg3fz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0917\",\"name\":\"test0917\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-17T18:20:24.8225773Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-17T18:20:24.8225773Z\"},\"identity\":{\"principalId\":\"4356292b-b98b-4d57-8fb8-8a149f31076a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fzasaceeanhedmhx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste3bb74fd-54a0-43db-a\",\"name\":\"Teste3bb74fd-54a0-43db-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T03:05:30.9577748Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T03:05:30.9577748Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ctdkachwcxaaf3bq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test915bd3e8-6945-4cf7-8\",\"name\":\"Test915bd3e8-6945-4cf7-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T06:16:46.6190316Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T06:16:46.6190316Z\"},\"identity\":{\"principalId\":\"0f63741b-9549-4df4-bdb5-e5aea428c470\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fqd2e8d8gqabc9ea.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd2c2822f-0379-4665-9\",\"name\":\"Testd2c2822f-0379-4665-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-19T14:15:38.3720649Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T14:15:38.3720649Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g0dya4hgc5gdfvcy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8d133811-e76b-4db9-a\",\"name\":\"Test8d133811-e76b-4db9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-23T15:17:06.0218185Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-23T15:17:06.0218185Z\"},\"identity\":{\"principalId\":\"750ef212-1043-4b5c-bf84-cdffced37da4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efhngqgcgcaca6bk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4308f593-0f10-4553-a\",\"name\":\"Test4308f593-0f10-4553-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:22:54.5595634Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:22:54.5595634Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://arezb5craxe6gbha.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9e73f0f6-7db9-4ac8-9\",\"name\":\"Test9e73f0f6-7db9-4ac8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:24:08.8116625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:24:08.8116625Z\"},\"identity\":{\"principalId\":\"7cf3259b-a8ea-4c3e-8886-28ac2a046be7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hdevcghfgedmfyfe.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test89c36db5-af20-49a1-8\",\"name\":\"Test89c36db5-af20-49a1-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:44:07.7172255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:44:07.7172255Z\"},\"identity\":{\"principalId\":\"a3c355dd-459a-4f7c-8775-e4690538aaac\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fea5gcgecue6g3eb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf4d421c7-8c39-4e7b-8\",\"name\":\"Testf4d421c7-8c39-4e7b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:54:08.5925421Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:54:08.5925421Z\"},\"identity\":{\"principalId\":\"feace456-c589-4ab9-9354-0d5b73a7b17d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bndjbyg2a9deaefs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc83ede2e-21ee-4098-b\",\"name\":\"Testc83ede2e-21ee-4098-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:55:51.8042721Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:55:51.8042721Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a8b0bcaee6c3ekhd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test580f898a-49e6-4ff2-9\",\"name\":\"Test580f898a-49e6-4ff2-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:02:53.9674657Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:02:53.9674657Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eyacejfbanfqejgg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfc4c3949-7578-44b6-9\",\"name\":\"Testfc4c3949-7578-44b6-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:04:08.4179249Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:04:08.4179249Z\"},\"identity\":{\"principalId\":\"dbe1c3c1-b6ce-4650-a8c1-aabe45ccbfe1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dgbab5dehqayd0h8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3c33ceb3-6fca-4d3a-b\",\"name\":\"Test3c33ceb3-6fca-4d3a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:05:52.384128Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:05:52.384128Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fvczdgczfqa5aeag.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5f3cb0e3-53e6-48dc-8\",\"name\":\"Test5f3cb0e3-53e6-48dc-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:07:07.8721977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:07:07.8721977Z\"},\"identity\":{\"principalId\":\"81cfff8e-9467-4bb1-84da-ab882a3f819f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://e6chhmbmg4eqd2d2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf779332-9182-4e44-a\",\"name\":\"Testbf779332-9182-4e44-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:12:54.595405Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:12:54.595405Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ethsbae5hxgpe0az.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd347078c-4992-4218-a\",\"name\":\"Testd347078c-4992-4218-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:14:07.8532725Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:14:07.8532725Z\"},\"identity\":{\"principalId\":\"144f9b3e-dff6-4024-9e79-5661e70dd81f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzg3gjgccsenbab6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test479c1eff-43d1-46b6-8\",\"name\":\"Test479c1eff-43d1-46b6-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:17:08.0531881Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:17:08.0531881Z\"},\"identity\":{\"principalId\":\"f1d7c7d9-5c01-4235-9dbb-c6b8c7d24658\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fcevhcb3f9d2ddgz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb315f477-17f3-491c-8\",\"name\":\"Testb315f477-17f3-491c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:22:53.4588323Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:22:53.4588323Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dqhncmdqf7caaaeq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test42b4dfeb-3aa6-455a-8\",\"name\":\"Test42b4dfeb-3aa6-455a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:25:52.0604626Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:25:52.0604626Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h7dpa5hyegbrc9es.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9690c89a-8bb1-4dfb-a\",\"name\":\"Test9690c89a-8bb1-4dfb-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:32:53.5686881Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:32:53.5686881Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aycwfzfydhh3azh2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f470d36-ec33-42b7-a\",\"name\":\"Test7f470d36-ec33-42b7-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:35:51.8058708Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:35:51.8058708Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g0cgfgc7ajdaeeef.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6fff934d-605e-4df6-b\",\"name\":\"Test6fff934d-605e-4df6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:42:53.1345757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:42:53.1345757Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hgdsdhefdudhg3cx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa3d8495-f018-480b-9\",\"name\":\"Testfa3d8495-f018-480b-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:44:08.2153383Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:44:08.2153383Z\"},\"identity\":{\"principalId\":\"6ab384d2-5ecf-4d7e-8598-6ca18fa0e1ec\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://esdsg3fbcbbfg7eg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test70c4c87b-aa55-4528-a\",\"name\":\"Test70c4c87b-aa55-4528-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:55:52.1460493Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:55:52.1460493Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://abd9hefeeca0b4a7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdbdfed87-3b68-4092-8\",\"name\":\"Testdbdfed87-3b68-4092-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:57:07.3436085Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:57:07.3436085Z\"},\"identity\":{\"principalId\":\"9274a384-e27d-42e2-8c3c-a6b85fee897a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hjf7e8ghc5c3guh4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8f048f59-8d6b-4e09-8\",\"name\":\"Test8f048f59-8d6b-4e09-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:02:54.3896474Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:02:54.3896474Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h9facdephsg3etcu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa33d7162-26cf-422e-b\",\"name\":\"Testa33d7162-26cf-422e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:05:51.6715709Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:05:51.6715709Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a4eqd2dadmebgmcn.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test31ca4d54-68b3-4a53-8\",\"name\":\"Test31ca4d54-68b3-4a53-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:05:53.5889723Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:05:53.5889723Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eecgcye8a5fte3af.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc4df9124-1da8-44e8-b\",\"name\":\"Testc4df9124-1da8-44e8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:15:51.8454271Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:15:51.8454271Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://etdfbqcef6gtcnct.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb3b5cd63-4870-4711-9\",\"name\":\"Testb3b5cd63-4870-4711-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:47:07.0907309Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:47:07.0907309Z\"},\"identity\":{\"principalId\":\"a5b99819-de66-4d2a-8ec4-cd3a7dab813d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0b8g9f7gyd5aubk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8698c1bd-6daa-40c0-8\",\"name\":\"Test8698c1bd-6daa-40c0-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:02:53.7813795Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:02:53.7813795Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ehcnazchgcejhucc.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste0da86bb-bc73-456d-a\",\"name\":\"Teste0da86bb-bc73-456d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T13:07:07.5268999Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T13:07:07.5268999Z\"},\"identity\":{\"principalId\":\"014d266c-4c77-43c7-8af5-7c190456ad31\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://h3breuehdxdabdgz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2da15c47-fdf2-42d0-b\",\"name\":\"Test2da15c47-fdf2-42d0-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-26T18:06:02.4375998Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-26T18:06:02.4375998Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://guenekcyena4dgdj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus-pl\",\"name\":\"syntheticseus-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T21:07:59.6551376Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:07:59.6551376Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hra8hkghcjdvanhy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus-pl/privateEndpointConnections/pe-syntheticseus-pl.3ded7c36-1c24-4765-8320-386c4c1ef3fc\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticseus-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr-01/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdreus01\",\"name\":\"cchaobcdreus01\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-03T18:18:45.0275266Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T18:18:45.0275266Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dxdkg5c0gaaag9c0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testpldisabled\",\"name\":\"testpldisabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-14T19:14:19.2824911Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-14T19:14:19.2824911Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test57710f9d-f0b3-4825-b\",\"name\":\"Test57710f9d-f0b3-4825-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-15T15:19:34.4884593Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-15T15:19:34.4884593Z\"},\"identity\":{\"principalId\":\"6a073cf8-347c-432b-94f5-e66f942fd249\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ahh8gygufpand7ct.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/candelete\",\"name\":\"candelete\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-20T05:16:20.3981244Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-20T05:16:20.3981244Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aybraqbjhfbgf6e3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/azpwsh\",\"name\":\"azpwsh\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-20T05:57:23.0922259Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-20T05:57:23.0922259Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3c3dxdqaeendndf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus\",\"name\":\"syntheticseus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:05:54.1278213Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:07:22.2279447Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dharbharavdsaect.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa26b3347-fa92-4dbc-9\",\"name\":\"Testa26b3347-fa92-4dbc-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T01:43:57.0170716Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:51.2617536Z\"},\"identity\":{\"principalId\":\"8f264d85-9a0d-4f1e-8e5d-65a179941829\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://btgbgpg7czgmhydb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test785e9304-f25e-4ef8-b\",\"name\":\"Test785e9304-f25e-4ef8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T02:02:41.7866369Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T02:02:41.7866369Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://axehbdaedxdbcrdw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdfced180-6f55-40bf-8\",\"name\":\"Testdfced180-6f55-40bf-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T02:33:56.987299Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:52.3889988Z\"},\"identity\":{\"principalId\":\"86a5eafb-8cd1-4c7c-9ea3-786d969482fd\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e9daexfebhg3awgv.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test09019f67-5489-41cf-9\",\"name\":\"Test09019f67-5489-41cf-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T16:14:00.1910381Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:53.0058222Z\"},\"identity\":{\"principalId\":\"fcff4d9f-0be8-45b0-8c32-8feb0fd4dd0a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gjfmhxhcavc2bagu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste25a76cb-f142-42b9-8\",\"name\":\"Teste25a76cb-f142-42b9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T16:52:45.3134693Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T16:52:45.3134693Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adgxf8bcdqadcphz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d76b4cf-7662-4bfd-a\",\"name\":\"Test5d76b4cf-7662-4bfd-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T18:24:00.2605741Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:53.7145581Z\"},\"identity\":{\"principalId\":\"f6a4961f-4565-4387-8f6d-1de64ebe1924\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d4dccwevcddnewak.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testabcd2e92-de6e-4453-b\",\"name\":\"Testabcd2e92-de6e-4453-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T20:12:46.2080512Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T20:12:46.2080512Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g8degxd9exb0eccy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8277e68d-5264-4742-a\",\"name\":\"Test8277e68d-5264-4742-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T23:32:46.7822366Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T23:32:46.7822366Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://acbkajdkaaa9csbp.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6940a271-18eb-46d9-b\",\"name\":\"Test6940a271-18eb-46d9-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T02:44:02.4536637Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:54.3429847Z\"},\"identity\":{\"principalId\":\"a05f7ebe-35c3-4ac7-900c-d84c83d85ae0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcbtc0cza4cjdub4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2dc1139f-08b1-49cb-8\",\"name\":\"Test2dc1139f-08b1-49cb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T02:52:47.3669747Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-04T02:52:47.3669747Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cvfuagbhgkbahkfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2a5bd28-7de5-4204-8\",\"name\":\"Teste2a5bd28-7de5-4204-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T07:02:48.3732468Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-04T07:02:48.3732468Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hyc9aqb4btfrhphj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5871834c-b18c-4c28-b\",\"name\":\"Test5871834c-b18c-4c28-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T15:24:05.5915367Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:54.9737949Z\"},\"identity\":{\"principalId\":\"238e4836-9705-4c7d-9fc8-c18ba6a86dea\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8erbbe3bvg2bycq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-gthomasdeiddev009/providers/microsoft.healthdataaiservices/deidservices/gthomas-cli-deid-service\",\"name\":\"gthomas-cli-deid-service\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-06T17:57:32.8272399Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:00.4954843Z\"},\"identity\":{\"principalId\":\"4021988e-4656-4cd3-8207-93cf69cd9af4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5b9gjffeue5f0eb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-gthomasdeiddev009/providers/microsoft.healthdataaiservices/deidservices/gthomas-cli-deid\",\"name\":\"gthomas-cli-deid\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-06T20:14:51.7160954Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:01.3263731Z\"},\"identity\":{\"principalId\":\"39f2cf09-9ce0-4812-aa46-acc21f4b78be\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cng4c0budjaxcwfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd32cc208-760b-4361-b\",\"name\":\"Testd32cc208-760b-4361-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T09:53:04.2088507Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T09:53:04.2088507Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eggyg0c7bkckebdd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste76a072c-38bd-4c00-9\",\"name\":\"Teste76a072c-38bd-4c00-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T00:03:08.0003517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-08T00:03:08.0003517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fyerexethjbke0hh.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c03d46a-5afe-4a6c-a\",\"name\":\"Test4c03d46a-5afe-4a6c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T01:34:23.6364624Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:02.0555503Z\"},\"identity\":{\"principalId\":\"b37a7246-13d6-4d6d-96b2-624304918700\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a5bvgzg5hvdwcqcb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75f6cd6b-8cd0-483a-9\",\"name\":\"Test75f6cd6b-8cd0-483a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T03:23:08.1359355Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-08T03:23:08.1359355Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ayhfdff0fbccgpez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test48cb195e-2818-482a-a\",\"name\":\"Test48cb195e-2818-482a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T14:24:24.9025185Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:03.7572074Z\"},\"identity\":{\"principalId\":\"338328fc-7114-45ca-93c7-06cce1975d26\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ffh3b8gkh6gkb0f3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eus\",\"name\":\"plval0809eus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T18:32:09.6710255Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T18:32:09.6710255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://byfzdrh2fzddawe4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eus/privateEndpointConnections/peeus.2f055527-a9dd-4f2d-96a5-1373a0d1b334\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/peeus\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eus/privateEndpointConnections/peeustest.e73a3939-52d0-45d8-ab1b-8f5908c57705\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/peeustest\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eusv2\",\"name\":\"plval0809eusv2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:11:20.7050619Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:11:20.7050619Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deb7esd6bshyfkab.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eastus\",\"name\":\"plval0809eastus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T23:36:27.7953632Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T00:46:17.1865837Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bwbje2h0dqenfdan.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/eus0813en\",\"name\":\"eus0813en\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T17:27:27.981602Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-13T17:27:27.981602Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gqcudhaqfdb6huf4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0813eus\",\"name\":\"test0813eus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T22:03:12.6968366Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:46.1199566Z\"},\"identity\":{\"principalId\":\"e5c625b6-3ed8-49bd-ba34-b555e9030396\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g9a8f6a2g0fchzg4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0813\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Please approve my connection, thanks.\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0813eus/privateEndpointConnections/peeus0813.1162b02a-9511-4b71-a699-ef0f86782e70\"}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3fb04bac-8558-4c25-b\",\"name\":\"Test3fb04bac-8558-4c25-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-14T13:13:30.6451301Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-14T13:13:30.6451301Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dxd5hyg5gwgxf2cb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53c865a8-e209-49c6-b\",\"name\":\"Test53c865a8-e209-49c6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-14T16:55:47.7698702Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:47.8011606Z\"},\"identity\":{\"principalId\":\"c4cc8613-9007-435e-875f-d0de4165e0cf\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buf2f5bwarexgab5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Tested082d56-35dc-4aaf-8\",\"name\":\"Tested082d56-35dc-4aaf-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-16T00:44:49.8086187Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:48.7331827Z\"},\"identity\":{\"principalId\":\"7b7eb0b3-8581-4f6b-b69c-5270d674a2d4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dzg3gcaxdehjdrf6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc35e49b5-9c9f-45fb-8\",\"name\":\"Testc35e49b5-9c9f-45fb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-17T07:53:38.1009037Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-17T07:53:38.1009037Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gyabe9cbdkafepbb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7001a4b4-d6ae-4cb7-9\",\"name\":\"Test7001a4b4-d6ae-4cb7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-17T18:44:55.1906374Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:29.2220736Z\"},\"identity\":{\"principalId\":\"c27ac38d-22df-4086-9c49-8da20aa3d4b8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hde2aahffxgjavev.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9febe45f-f0f6-4b5b-a\",\"name\":\"Test9febe45f-f0f6-4b5b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-18T08:26:28.0625812Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:30.1418071Z\"},\"identity\":{\"principalId\":\"5d7cc055-b1bd-4a1b-a69e-9e37bed09c0b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fpasb5dmc0b3dvav.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test52b0b8e4-2690-4e9f-b\",\"name\":\"Test52b0b8e4-2690-4e9f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-20T16:03:52.0012532Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-20T16:03:52.0012532Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bgcweza3gsgmexhp.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test647418db-81d2-4c7a-9\",\"name\":\"Test647418db-81d2-4c7a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-20T22:43:52.3271505Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-20T22:43:52.3271505Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ede6egawbbg2gxba.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2e43b94b-5314-4805-8\",\"name\":\"Test2e43b94b-5314-4805-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T07:43:53.7556068Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-21T07:43:53.7556068Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aeeuhscmg3bsaxh8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9bec478f-3021-4b84-8\",\"name\":\"Test9bec478f-3021-4b84-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T09:05:09.7723564Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:33.6388298Z\"},\"identity\":{\"principalId\":\"ebb69717-c03f-4122-b350-f7f64a9456c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5f9ftgrbrcna5bm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8ed7114a-21bc-4837-8\",\"name\":\"Test8ed7114a-21bc-4837-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T11:15:09.4360491Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:34.4435565Z\"},\"identity\":{\"principalId\":\"b411d1ba-6bef-4508-b37e-00c5724948c3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gjbbgyhrddcmf3a8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4a94a19d-db3c-4b73-b\",\"name\":\"Test4a94a19d-db3c-4b73-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T13:25:09.3167565Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:35.50707Z\"},\"identity\":{\"principalId\":\"55c9788d-3a37-445f-aa2e-312bbb238258\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmawb5f6a3cdedf0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff4de099-42ae-4de3-9\",\"name\":\"Testff4de099-42ae-4de3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T16:55:11.1451351Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:36.3035088Z\"},\"identity\":{\"principalId\":\"d78f5778-7478-4ef4-a336-4c444ca3c936\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bae9apctcgd6fkag.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d52f902-5d97-45a6-a\",\"name\":\"Test5d52f902-5d97-45a6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T19:05:10.3089733Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:37.1029164Z\"},\"identity\":{\"principalId\":\"d13bbdf8-abaa-4663-88ee-3a7df2991df7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g6d4d3d7adfgb0cg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9104eab-d7c1-498b-b\",\"name\":\"Teste9104eab-d7c1-498b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T20:15:11.3046245Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:37.8939846Z\"},\"identity\":{\"principalId\":\"bdffe26d-6146-41f3-a010-b413c4ae14bb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b3hafmfgdje6e4cz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa3a325cd-276e-4b92-8\",\"name\":\"Testa3a325cd-276e-4b92-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T23:35:11.6873742Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:38.6439936Z\"},\"identity\":{\"principalId\":\"df9b6981-a613-4bfd-8c0b-6befa05c8aeb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cmh4hkd3hbdtecby.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test99312e4a-5283-4b4f-9\",\"name\":\"Test99312e4a-5283-4b4f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T02:55:10.6907352Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:01.061706Z\"},\"identity\":{\"principalId\":\"84026cb9-2bc7-44f6-9535-5ba3bd414d22\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gqc3b3d9dtcrejck.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea0405f4-fc15-4804-9\",\"name\":\"Testea0405f4-fc15-4804-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T06:15:11.7914388Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:01.7780035Z\"},\"identity\":{\"principalId\":\"0a3f366a-1924-4c57-889c-47c6e0e1a645\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ceeqbrdngzasb3gt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test57d01c2f-2309-4eaf-9\",\"name\":\"Test57d01c2f-2309-4eaf-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T10:45:12.083484Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:02.5239668Z\"},\"identity\":{\"principalId\":\"64c13767-e12f-4537-8391-d472a05082ca\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hke0hec8czd9asaw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf9d8a5f2-a2e6-40fe-b\",\"name\":\"Testf9d8a5f2-a2e6-40fe-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T14:25:12.9031661Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:03.2141795Z\"},\"identity\":{\"principalId\":\"a819b10e-88c7-4cb4-90a6-dbfe0253cb1d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bfhnbehdbpbragd5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5060aa6f-91bb-4664-9\",\"name\":\"Test5060aa6f-91bb-4664-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T22:45:14.4852819Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:05.4870227Z\"},\"identity\":{\"principalId\":\"11c2b2bc-c186-4916-a09b-18266819e2df\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cta8hkdnaehhb6ep.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcacc3fae-e5bf-4530-9\",\"name\":\"Testcacc3fae-e5bf-4530-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T09:15:14.2287089Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:06.2202225Z\"},\"identity\":{\"principalId\":\"d426f26f-a521-4d41-a045-cd783378e16c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d3gsbmccgpe2fabk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3633c48b-89b3-4406-8\",\"name\":\"Test3633c48b-89b3-4406-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T12:03:59.4224525Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-23T12:03:59.4224525Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a7hdevhmcycsh8cs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test91544ec5-3197-45b4-a\",\"name\":\"Test91544ec5-3197-45b4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T13:35:14.3210489Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:07.2072031Z\"},\"identity\":{\"principalId\":\"7831cc56-7ef4-4ce8-a1b7-fed9b0283197\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a2gua7ezcjb2gygz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testpleus2\",\"name\":\"testpleus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-01T06:38:59.6953715Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-01T06:38:59.6953715Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqdhdmhbdthab7du.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testpleus2/privateEndpointConnections/testpleus2-pe.e75a5e32-6543-4ec9-923d-b198008afbb2\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpleus2-pe\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a238827-6e2d-4496-8\",\"name\":\"Test7a238827-6e2d-4496-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T05:52:32.6163166Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T05:52:32.6163166Z\"},\"identity\":{\"principalId\":\"affee168-6f02-44f3-a3f8-c7a8292d142c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f8e0cjc6g6fcb6cx.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7606a1e1-905d-4b0c-b\",\"name\":\"Test7606a1e1-905d-4b0c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:10:07.4109967Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:10:07.4109967Z\"},\"identity\":{\"principalId\":\"d05def33-e601-48fd-a1a1-876314f1b1eb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fxb6gbhuejcscngc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcca612a4-b8f9-4062-a\",\"name\":\"Testcca612a4-b8f9-4062-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:21:20.3297431Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:21:20.3297431Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h2guhdhyg8h6h0da.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3bb3b22-387c-4665-9\",\"name\":\"Testf3bb3b22-387c-4665-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:31:20.367346Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:31:20.367346Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ckbsd4d3aaa0gmar.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7b6b6a45-cb81-4584-a\",\"name\":\"Test7b6b6a45-cb81-4584-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:38:53.3883786Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:38:53.3883786Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eva6gfdhetczfpft.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa825b64d-c278-4662-9\",\"name\":\"Testa825b64d-c278-4662-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:41:20.7574131Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:41:20.7574131Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hkhebcf4exenbkch.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test39d47bea-ada0-4625-8\",\"name\":\"Test39d47bea-ada0-4625-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:48:52.5953641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:48:52.5953641Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://byecg3cqgqdwcucd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test35886f50-4409-4d8c-b\",\"name\":\"Test35886f50-4409-4d8c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:52:32.9705776Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:52:32.9705776Z\"},\"identity\":{\"principalId\":\"9de84e1a-023a-4c72-9c46-02bab1cb1a7b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://azaah7ewd8czevhr.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9acbc1dc-3c29-495d-9\",\"name\":\"Test9acbc1dc-3c29-495d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:58:51.7648163Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:58:51.7648163Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://crenathdd9dqhbfb.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test333d3d33-d78e-475d-a\",\"name\":\"Test333d3d33-d78e-475d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:01:21.2447245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:01:21.2447245Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bbdgh4ethyhfbkba.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaaaf5fef-ef54-4b58-b\",\"name\":\"Testaaaf5fef-ef54-4b58-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:02:32.8710898Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:02:32.8710898Z\"},\"identity\":{\"principalId\":\"32147ee8-9d84-4320-bcbc-f2d217483ab0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a0g9hpcca0cvh9hu.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdc05c024-5ec2-4e47-9\",\"name\":\"Testdc05c024-5ec2-4e47-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:08:51.6459348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:08:51.6459348Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4hbe9ehe8d2dsh7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6bbc85f2-daed-4c3e-a\",\"name\":\"Test6bbc85f2-daed-4c3e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:11:20.9880638Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:11:20.9880638Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f3dqgzexg5bgaafg.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4c6a9ee-9023-4f58-a\",\"name\":\"Testd4c6a9ee-9023-4f58-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:12:33.973674Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:12:33.973674Z\"},\"identity\":{\"principalId\":\"d6dc4169-9664-4686-869c-a781977e76e1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://add3cqarc5dfh3ek.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1c8fb03-cffe-4d3b-8\",\"name\":\"Teste1c8fb03-cffe-4d3b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:21:21.3138133Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:21:21.3138133Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e9gaaqfva0ejhcbp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb7f12c69-ab20-45cc-a\",\"name\":\"Testb7f12c69-ab20-45cc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:28:52.59113Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:28:52.59113Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://g6f5gqgnh5d3azfg.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf0af8275-b36e-404b-a\",\"name\":\"Testf0af8275-b36e-404b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:31:20.577251Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:31:20.577251Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc60001bf-59e2-44da-8\",\"name\":\"Testc60001bf-59e2-44da-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:32:32.8926146Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:32:32.8926146Z\"},\"identity\":{\"principalId\":\"6e6234c2-f52d-4a5a-a467-ab50a9f7dea6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://crawg5gzafgne4ct.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test917a6607-34e1-4504-8\",\"name\":\"Test917a6607-34e1-4504-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:38:52.4924081Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:38:52.4924081Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e6b6c4ecdrgdaycj.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde5239a3-9848-435e-9\",\"name\":\"Testde5239a3-9848-435e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:51:21.6090854Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:51:21.6090854Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a9cbgnacfhcuf0aj.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2f76d8c1-e606-4aa0-9\",\"name\":\"Test2f76d8c1-e606-4aa0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:08:52.5343498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:08:52.5343498Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eedffagyg2b5fscx.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf861c4c6-45e7-4705-9\",\"name\":\"Testf861c4c6-45e7-4705-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:12:33.027495Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:12:33.027495Z\"},\"identity\":{\"principalId\":\"59aa473b-b49a-450a-8f93-4a82ffbc5e42\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hufcd6gdaqhgfjbp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9bd0646-3594-40ad-9\",\"name\":\"Teste9bd0646-3594-40ad-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:21:20.967923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:21:20.967923Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://crgsaee9dmb2f8g7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test77ad27d9-b285-4645-b\",\"name\":\"Test77ad27d9-b285-4645-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:22:33.6184753Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:22:33.6184753Z\"},\"identity\":{\"principalId\":\"1ab7d7ac-d5b3-40da-94a5-0aaf73b5e234\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfb6eqb7encnfjcw.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf288367-c5e9-42a9-9\",\"name\":\"Testbf288367-c5e9-42a9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:42:33.867541Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:42:33.867541Z\"},\"identity\":{\"principalId\":\"bd57709f-80f2-4084-9eca-c40a441055ad\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://cwdyg9ewc2ehgqdc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test403e02f9-aad8-4c29-a\",\"name\":\"Test403e02f9-aad8-4c29-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:12:34.1020629Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:12:34.1020629Z\"},\"identity\":{\"principalId\":\"c136cdff-faa6-4142-b418-98d7f73783f4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fyh0dghwcufrckd7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd2e5c89f-aca2-4ad3-8\",\"name\":\"Testd2e5c89f-aca2-4ad3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:21:22.8481879Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:21:22.8481879Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://ghdgaycteadaeshn.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea3b2f2c-dbf4-4c35-8\",\"name\":\"Testea3b2f2c-dbf4-4c35-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:11:21.7332385Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:11:21.7332385Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b7dmcgbva7h8dphw.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test83a231ca-ab94-4079-b\",\"name\":\"Test83a231ca-ab94-4079-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T18:42:37.4122264Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T18:42:37.4122264Z\"},\"identity\":{\"principalId\":\"b74e64a9-ae66-4211-ac6a-f78b419aa85c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c8ebhughecajcnfa.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test55be8efc-3cef-458a-a\",\"name\":\"Test55be8efc-3cef-458a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T19:01:24.4218521Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T19:01:24.4218521Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"publicNetworkAccess\":\"Enabled\",\"serviceUrl\":\"https://gug6c3b3cja3ang9.api.eus2001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemo\",\"name\":\"deiddemo\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-29T14:59:09.2833612Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T14:06:00.1344203Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4fzdeh9h2bkbphy.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/pedeid\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemo/privateEndpointConnections/pedeid.dd94e33d-9a4d-417b-b321-16878cd1b816\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2-pl\",\"name\":\"syntheticseus2-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T11:23:55.4578505Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:23:55.4578505Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adcxf8grb0fsehgv.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2-pl/privateEndpointConnections/pe-syntheticseus2-pl.9f6cefb9-7c29-4a1a-bfe2-c6f9b45a8958\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticseus2-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemopl\",\"name\":\"deiddemopl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T14:06:54.3350826Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T14:13:25.7051097Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h5dyh3d6dfazbgbe.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testnew1\",\"name\":\"testnew1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T15:15:58.8797652Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T15:26:23.7886016Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4cyfpe8gaguf2fc.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid1010\",\"name\":\"testdeid1010\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T16:38:20.6279051Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T16:54:43.8855843Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7d4hneycjd3fxc4.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/testdeidpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid1010/privateEndpointConnections/testdeidpl.975be0eb-b434-4f9a-adc4-9da4211b22a5\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d820961-6742-4bca-8\",\"name\":\"Test5d820961-6742-4bca-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-12T10:35:28.8213204Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-12T10:35:28.8213204Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f6g2h3cqa4gwcng2.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService2\",\"name\":\"azpwshDeidService2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T00:01:06.069132Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T05:46:45.1524668Z\"},\"identity\":{\"principalId\":\"1185f660-6621-4417-b51b-5ca4dc9e5fb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4cag7feawaubgbv.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService\",\"name\":\"myHealthDeidService\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T05:26:15.4607741Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T18:56:12.1361396Z\"},\"identity\":{\"principalId\":\"efab95dd-6969-4c43-bd96-4126dc372bfa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8bxaqamerbxd9a3.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:48:23.0398549Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"name\":\"qv4mlb\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:49:55.5396861Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:49:55.5396861Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://csepa9hngpaqfgaq.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"name\":\"9nbgfp\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:51:28.3911208Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:51:28.3911208Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bfcjhrceffcaeyby.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2\",\"name\":\"syntheticseus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:55:33.1324351Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:23:31.958195Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://acacfme2a4h6h0dp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eastus2\",\"name\":\"plval0809eastus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:39:21.8715941Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:39:21.8715941Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hphrenced8dweqf3.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eastus2/privateEndpointConnections/pl-eus2.a9aa0d96-3c8e-45bc-900a-7ef1da6280e0\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-eus2\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/deid0808v1\",\"name\":\"deid0808v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-01T18:36:16.9529026Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-01T18:36:16.9529026Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deid0808v1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1234\",\"name\":\"test1234\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-05T14:18:26.977372Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-05T14:18:26.977372Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1234.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/acs-test-jelinga/providers/Microsoft.HealthDataAIServices/DeidServices/jeltest1\",\"name\":\"jeltest1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"jelinga@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-06T17:35:23.2544311Z\",\"lastModifiedBy\":\"jelinga@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-06T17:35:23.2544311Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://jeltest1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testing\",\"name\":\"testing\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T19:32:32.3182808Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T19:32:32.3182808Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testing.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testwus2\",\"name\":\"testwus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T20:40:09.8352514Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T20:40:09.8352514Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testwus2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2\",\"name\":\"syntheticswus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T17:01:59.8699199Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T12:23:59.4845851Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9b5eaetb4ded8g2.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwus2pltest\",\"name\":\"deidwus2pltest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-08T21:51:51.3282527Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T23:49:24.9683938Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a5czemgacnf6dmg4.api.wus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/deidwus2pltest/privateEndpointConnections/testpl.becb48c9-d25b-4b42-9bb6-1595592be238\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testplwus2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwus2pltest/privateEndpointConnections/testplwus2.4f763525-af2f-4457-9109-2c55402a9c6d\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809westus2\",\"name\":\"plval0809westus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:40:46.5060336Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:40:46.5060336Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ddekf6b7h2h6hsgr.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809westus2/privateEndpointConnections/pewus2.0e2bf50a-b519-4a0e-9e1d-7c058a3b9b44\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pewus2\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf5ec6c2-28ab-4c5a-a\",\"name\":\"Testbf5ec6c2-28ab-4c5a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-02T01:53:40.3484055Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-02T01:53:40.3484055Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hmb4crh3ached4dv.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/SurrogationEvaluation\",\"name\":\"SurrogationEvaluation\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-20T00:23:08.2211657Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-20T00:23:08.2211657Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g4cpgmhehnc7gjh6.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test36b129dc-998b-4906-a\",\"name\":\"Test36b129dc-998b-4906-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:17:18.3194741Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:17:18.3194741Z\"},\"identity\":{\"principalId\":\"cded9449-05df-42cf-9257-119ceb611cf4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e8gjbscaffarewbs.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfac44423-d1b5-4803-a\",\"name\":\"Testfac44423-d1b5-4803-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:36:03.5111718Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:36:03.5111718Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dnf0emb0hkhwajey.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdcaa7561-a42b-4e98-9\",\"name\":\"Testdcaa7561-a42b-4e98-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:38:24.7013615Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:38:24.7013615Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cqh8gfbkbdc3c8bv.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd9909ef5-4fd7-42a1-9\",\"name\":\"Testd9909ef5-4fd7-42a1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:39:39.4185713Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:39:39.4185713Z\"},\"identity\":{\"principalId\":\"33a1d02c-b99e-4aeb-ab9a-df83df95ff57\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dgd7gqfxdaasetfb.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4291045e-4527-4836-8\",\"name\":\"Test4291045e-4527-4836-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:48:23.6745275Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:48:23.6745275Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://angvd3e6gndgdbc8.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6ef1d88b-8d0e-4375-a\",\"name\":\"Test6ef1d88b-8d0e-4375-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:49:39.6414876Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:49:39.6414876Z\"},\"identity\":{\"principalId\":\"cc21a847-f146-454e-be9c-9260e8977330\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hac7g5a4fkaab8bs.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test55bd2f0c-9e17-4558-9\",\"name\":\"Test55bd2f0c-9e17-4558-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:06:04.3485395Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:06:04.3485395Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hybuaxahhudjc0aw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5a5c16bc-ec62-443f-8\",\"name\":\"Test5a5c16bc-ec62-443f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:08:24.5208047Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:08:24.5208047Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gjamehdmccgcftbe.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa160d233-592e-4d08-8\",\"name\":\"Testa160d233-592e-4d08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:17:18.0309089Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:17:18.0309089Z\"},\"identity\":{\"principalId\":\"829edba6-5590-4e74-b1bd-6aaac07a8bee\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dncbhyatb5c9cnfb.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdf830dd3-3716-4d7e-a\",\"name\":\"Testdf830dd3-3716-4d7e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:18:24.1497699Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:18:24.1497699Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bvenfufhdzbfd7df.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test536584e5-fcd7-4877-a\",\"name\":\"Test536584e5-fcd7-4877-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:27:19.1482143Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:27:19.1482143Z\"},\"identity\":{\"principalId\":\"0b9fc245-a89c-4604-9842-f204bdfd9cb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a8hgcygbdphwd3ff.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test73e9ef3a-3d41-4066-8\",\"name\":\"Test73e9ef3a-3d41-4066-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:29:39.5433918Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:29:39.5433918Z\"},\"identity\":{\"principalId\":\"06f69a4a-81ab-4c17-bd53-e86616eb65df\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://are4bna2abazczfu.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f2d7905-3532-45fd-9\",\"name\":\"Test7f2d7905-3532-45fd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:36:04.1258754Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:36:04.1258754Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eqcne5dkc3aqexgk.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test624145e5-acfa-4dc1-a\",\"name\":\"Test624145e5-acfa-4dc1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:38:24.7118392Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:38:24.7118392Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bfcghcgbbuf6bec5.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc171c4c5-35bd-462c-9\",\"name\":\"Testc171c4c5-35bd-462c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:46:03.4772408Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:46:03.4772408Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dnbteha3d5bsceck.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcff71431-5673-4d08-9\",\"name\":\"Testcff71431-5673-4d08-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:47:18.8657333Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:47:18.8657333Z\"},\"identity\":{\"principalId\":\"4224fac9-a7b4-4b37-bcf4-8221f82815ce\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d6fgcahnheccd4b7.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test256acb69-630c-4d44-b\",\"name\":\"Test256acb69-630c-4d44-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:56:03.9963176Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:56:03.9963176Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://e6a3c9eyc4c0gtbw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fe8493d-1144-4f66-8\",\"name\":\"Test5fe8493d-1144-4f66-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:57:18.6911923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:57:18.6911923Z\"},\"identity\":{\"principalId\":\"d97a598d-afe4-4488-98d2-828d0428e14e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fdfaeuf0c8dmgcek.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste669edcf-6036-4acd-9\",\"name\":\"Teste669edcf-6036-4acd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:59:39.4011211Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:59:39.4011211Z\"},\"identity\":{\"principalId\":\"5675b15d-6160-4c64-8c99-a2a41498d572\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4dfd0b2haduedee.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test771d44f5-8697-4f7f-8\",\"name\":\"Test771d44f5-8697-4f7f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:07:18.5389813Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:07:18.5389813Z\"},\"identity\":{\"principalId\":\"2ad513ea-bb34-423a-9a6f-11604ce9cd8b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fta0f0bee9achmga.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test68d2f5db-be6d-455e-8\",\"name\":\"Test68d2f5db-be6d-455e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:17:20.0477674Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:17:20.0477674Z\"},\"identity\":{\"principalId\":\"25ffe56d-762b-4e3a-81d3-f1e573719575\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gda6d6fffmh5evdf.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc100f616-a532-4b16-9\",\"name\":\"Testc100f616-a532-4b16-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:18:24.543296Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:18:24.543296Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hwech0gmfthwhnfe.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa9299dc-0e5a-4523-8\",\"name\":\"Testfa9299dc-0e5a-4523-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:38:24.5783436Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:38:24.5783436Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://acfzhkacepgxbvcc.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcb520941-f24d-4ba0-a\",\"name\":\"Testcb520941-f24d-4ba0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:48:24.4358381Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:48:24.4358381Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hcgzcua5fwcfbkfc.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test0315c35e-b890-4131-b\",\"name\":\"Test0315c35e-b890-4131-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:58:24.493337Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:58:24.493337Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e2dvgfggevg3cmbq.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c1072f2-e8f5-4a88-8\",\"name\":\"Test4c1072f2-e8f5-4a88-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:59:40.407495Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:59:40.407495Z\"},\"identity\":{\"principalId\":\"4ee4df82-1686-4274-be13-d4c812fdcdf6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gdd4g2c8hcerggg7.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test90624075-28a0-4403-9\",\"name\":\"Test90624075-28a0-4403-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:48:26.0857525Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:48:26.0857525Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hhhdgrbte7djcwfw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test97d3f18b-35a1-4d88-9\",\"name\":\"Test97d3f18b-35a1-4d88-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:08:25.4729145Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:08:25.4729145Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dbhmhwf8e3bxhkda.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf7b5c1f1-8d28-401b-8\",\"name\":\"Testf7b5c1f1-8d28-401b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:59:41.3246256Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:59:41.3246256Z\"},\"identity\":{\"principalId\":\"63080029-d803-41a8-8b17-fc5f4628733f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://esb9gyc6b6bggkab.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ccbdf7b-6386-497d-9\",\"name\":\"Test5ccbdf7b-6386-497d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T18:48:29.4451958Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T18:48:29.4451958Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gyaaa9ccewbufbdr.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9c2aee80-9f8c-4e02-9\",\"name\":\"Test9c2aee80-9f8c-4e02-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-01T05:10:37.8467255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-01T05:10:37.8467255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hdb5aadkgcdnbhca.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2-pl\",\"name\":\"syntheticswus2-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"West US 2\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T12:24:16.9151724Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T12:24:16.9151724Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a7e3gqa5aphna7gj.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2-pl/privateEndpointConnections/pe-syntheticswus2-pl.902e448d-d4f9-407d-84dd-43dfd39ea931\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticswus2-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdrwus2\",\"name\":\"cchaobcdrwus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T23:31:26.2023911Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T00:24:14.4086951Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huf7dhadcnfkcder.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr-01/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdrwus201\",\"name\":\"cchaobcdrwus201\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-03T18:30:18.1995159Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T18:51:33.2139805Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hxh6gjdpdqd0h8ht.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test87a60ffd-1515-4d9d-9\",\"name\":\"Test87a60ffd-1515-4d9d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T17:56:29.1915531Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T17:56:29.1915531Z\"},\"identity\":{\"principalId\":\"a9e462a7-c9a3-4098-b684-a6ec5d720e33\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3gwhvfbejewbaey.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdb56e032-8366-4ab0-9\",\"name\":\"Testdb56e032-8366-4ab0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:06:12.9109253Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:06:12.9109253Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h2cmh0bzhtceb5g8.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e62d26f-d3c9-4a5f-b\",\"name\":\"Test5e62d26f-d3c9-4a5f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:11:19.6377483Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:11:19.6377483Z\"},\"identity\":{\"principalId\":\"d02f320a-9e35-4bf6-9f83-3f58fccd0bd9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b5byb3fsagazdtdr.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd3471136-2a74-49d9-8\",\"name\":\"Testd3471136-2a74-49d9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:20:03.5304574Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:20:03.5304574Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fuhea2bnh5facfg9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test979861da-4a10-45c9-a\",\"name\":\"Test979861da-4a10-45c9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:37:29.2072828Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:37:29.2072828Z\"},\"identity\":{\"principalId\":\"114172e0-db70-4371-9439-e93aaa97fdf3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://afhmdze3b8fca3a3.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Tested2e1ea5-f21f-4765-a\",\"name\":\"Tested2e1ea5-f21f-4765-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:46:13.0992052Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:46:13.0992052Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c5a9c7b4gffga2dj.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb58a1f89-fa7b-4f78-9\",\"name\":\"Testb58a1f89-fa7b-4f78-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:56:12.6778103Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:56:12.6778103Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://brd2bwafeth9a6fe.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7afdb4a5-227a-420b-a\",\"name\":\"Test7afdb4a5-227a-420b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:00:04.3892096Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:00:04.3892096Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ddhkgaa2a0fyd5eb.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test36d17348-5ce9-442a-9\",\"name\":\"Test36d17348-5ce9-442a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:07:28.2530398Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:07:28.2530398Z\"},\"identity\":{\"principalId\":\"8f06d417-b86a-492d-8f44-4a68c3ea0f3e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c5bsbjecdud6a4g9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test963e45f8-88ed-48aa-9\",\"name\":\"Test963e45f8-88ed-48aa-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:11:18.9114737Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:11:18.9114737Z\"},\"identity\":{\"principalId\":\"29848f7d-72bf-475a-917f-3d5918d388c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://g7gjbcapg2g2dycg.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fb1df8f-ee79-4954-a\",\"name\":\"Test5fb1df8f-ee79-4954-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:20:04.1374266Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:20:04.1374266Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://erg4gudbd9cvgydy.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4138b447-9f36-4cd6-9\",\"name\":\"Test4138b447-9f36-4cd6-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:21:19.5376965Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:21:19.5376965Z\"},\"identity\":{\"principalId\":\"6f921209-ce71-474b-a035-a8a2e3aae061\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0d3exdqfkb9abe9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test06d60cb1-40fe-4c30-8\",\"name\":\"Test06d60cb1-40fe-4c30-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:36:13.8248579Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:36:13.8248579Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f0dcathpaphscyc2.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3bca3559-91fb-404a-9\",\"name\":\"Test3bca3559-91fb-404a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:37:29.2955986Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:37:29.2955986Z\"},\"identity\":{\"principalId\":\"3d8c4d46-2769-4b99-a014-0a718f583aa3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://b8ctbshzetayd3ft.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9fd01eb7-b73f-4877-9\",\"name\":\"Test9fd01eb7-b73f-4877-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:40:04.0888992Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:40:04.0888992Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fvc9axgcarfnhfhw.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa2b57e59-9c40-4518-8\",\"name\":\"Testa2b57e59-9c40-4518-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:41:18.9983689Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:41:18.9983689Z\"},\"identity\":{\"principalId\":\"c7d574b1-0e0d-46fd-99c4-24a9cec4bbf4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fecjdxe6ara9hnd6.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc2e708c7-f442-4524-b\",\"name\":\"Testc2e708c7-f442-4524-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:46:13.5523727Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:46:13.5523727Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpfyasdmg9h2dkaq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd3885190-6372-4d11-b\",\"name\":\"Testd3885190-6372-4d11-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:47:29.5420829Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:47:29.5420829Z\"},\"identity\":{\"principalId\":\"332b92cd-d20d-45e6-854e-7a4dc2163d01\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://achmguevddg4d3fb.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa9d8a749-101b-4830-9\",\"name\":\"Testa9d8a749-101b-4830-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:50:04.1460196Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:50:04.1460196Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gzg3b3bkf2fafcgz.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test81afdc34-0624-43d8-b\",\"name\":\"Test81afdc34-0624-43d8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:51:19.7435069Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:51:19.7435069Z\"},\"identity\":{\"principalId\":\"7781e2b0-117e-464e-ac50-ab50801ddd13\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ezcdfwcnf2b8gkgy.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a2de449-b8bb-4f5d-9\",\"name\":\"Test7a2de449-b8bb-4f5d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:00:04.1448641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:00:04.1448641Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dua4ftbnghe5hccx.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3b3deeec-2bd1-4338-9\",\"name\":\"Test3b3deeec-2bd1-4338-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:01:19.156135Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:01:19.156135Z\"},\"identity\":{\"principalId\":\"1a05e0a1-5420-4c6d-bfcd-b5c34b9cc3e3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dbgtfbdqbmachcfp.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d3f5139-899c-4ad8-b\",\"name\":\"Test6d3f5139-899c-4ad8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:06:14.3521856Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:06:14.3521856Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gyajfshhepg5fda9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb66a51f0-2f5f-4f7d-b\",\"name\":\"Testb66a51f0-2f5f-4f7d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:31:19.5013391Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:31:19.5013391Z\"},\"identity\":{\"principalId\":\"9fd977d6-ae79-45fe-8b0e-6949377f06de\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://befdcneggka9azby.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd342b3ce-0618-4a94-a\",\"name\":\"Testd342b3ce-0618-4a94-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:46:14.7890365Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:46:14.7890365Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://d4g3byczgweue9cv.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff6faf74-32f3-40d9-9\",\"name\":\"Testff6faf74-32f3-40d9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:41:21.3401212Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:41:21.3401212Z\"},\"identity\":{\"principalId\":\"d4b736b1-980e-4610-97a5-f82d88dd96b1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dsbsgscjecd3dpck.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb90b744-f99a-414f-9\",\"name\":\"Testfb90b744-f99a-414f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T20:20:10.9313978Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T20:20:10.9313978Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bcf6d3hwgacsh0cq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3-pl\",\"name\":\"syntheticswus3-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"West US 3\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T13:53:11.6681304Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T13:53:11.6681304Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ehckb3ascab6atck.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3-pl/privateEndpointConnections/pe-syntheticswus3-pl.e37e9c53-5e6b-4d0d-9710-c9369dacd752\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticswus3-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test0d18c1c4-0e0e-4421-9\",\"name\":\"Test0d18c1c4-0e0e-4421-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-18T01:02:26.4437619Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-18T01:02:26.4437619Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cddheze2fbfge3d7.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa51c0868-e25e-4d1f-9\",\"name\":\"Testa51c0868-e25e-4d1f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-21T20:52:50.2795544Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-21T20:52:50.2795544Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dyatbaffc3eydjcq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testae94fdea-b480-4d08-a\",\"name\":\"Testae94fdea-b480-4d08-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-21T20:52:50.2648591Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-21T20:52:50.2648591Z\"},\"identity\":{\"principalId\":\"955f4f1b-b786-447e-9185-852cd3503594\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bddgg2g6b7hfefeq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3\",\"name\":\"syntheticswus3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:04:34.2050842Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T13:52:47.5867912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkckd4ebcgbmgddm.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809westus3\",\"name\":\"plval0809westus3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:41:35.2370207Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:41:35.2370207Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8h8g5dgead8fafn.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809westus3/privateEndpointConnections/pewus3.c4731e71-797c-445a-942d-2a54ab0f9059\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pewus3\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa64e0ba-6a8b-4210-b\",\"name\":\"Testfa64e0ba-6a8b-4210-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-13T14:58:51.554396Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-04T00:49:24.6575074Z\"},\"identity\":{\"principalId\":\"b6c8a87e-5a3e-4566-8639-e2bf010bdfa0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gmfwdpfcdscbaxg4.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb860af0a-22f8-442c-a\",\"name\":\"Testb860af0a-22f8-442c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-16T16:09:26.8553498Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-04T00:49:25.8089517Z\"},\"identity\":{\"principalId\":\"5f598bf2-d3bc-40ac-87ff-7c99cfa102ff\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://end7hse3d6bxemb0.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test835e6f9e-482b-4126-a\",\"name\":\"Test835e6f9e-482b-4126-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:00:52.8581939Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:00:52.8581939Z\"},\"identity\":{\"principalId\":\"e26205d5-7db9-472d-9e93-8042167d53da\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://djf7ggf9cdfyaxet.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdf17a0d8-5393-47bc-8\",\"name\":\"Testdf17a0d8-5393-47bc-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:13:40.1538332Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:13:40.1538332Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://axd0b4e9exapfkdj.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test64ddb767-0544-4d0e-b\",\"name\":\"Test64ddb767-0544-4d0e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:14:55.515111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:14:55.515111Z\"},\"identity\":{\"principalId\":\"12dcfc5f-550c-42f7-8655-731601f1c872\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c2epb3a9cvgzc2dz.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdbb96996-4064-4b2c-b\",\"name\":\"Testdbb96996-4064-4b2c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:20:52.855045Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:20:52.855045Z\"},\"identity\":{\"principalId\":\"8ec6bafe-4f3d-4e0b-8ad7-1dd911952e79\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e3hpb5h3emfscsav.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test87067302-e75f-412b-a\",\"name\":\"Test87067302-e75f-412b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:30:53.137443Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:30:53.137443Z\"},\"identity\":{\"principalId\":\"e234a940-2c5b-48bb-bd76-046d2f5bf162\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cngrhee2ddeqb7d6.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6079f216-75ad-4807-8\",\"name\":\"Test6079f216-75ad-4807-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:34:55.2619318Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:34:55.2619318Z\"},\"identity\":{\"principalId\":\"40c21f10-09cc-436c-b8fb-bf5b6cbde257\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gxawccgqedefd5bz.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test98b66745-fa73-42ae-8\",\"name\":\"Test98b66745-fa73-42ae-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:49:38.5842804Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:49:38.5842804Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d6etc4e9fkg9c6bt.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd87ed11b-f543-47f4-a\",\"name\":\"Testd87ed11b-f543-47f4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:54:54.9133622Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:54:54.9133622Z\"},\"identity\":{\"principalId\":\"f483e661-4f30-4f0b-a239-c07e866d1c06\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c7b6dkdthng0ffe0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf962794b-b861-48b8-a\",\"name\":\"Testf962794b-b861-48b8-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:00:53.1913114Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:00:53.1913114Z\"},\"identity\":{\"principalId\":\"8c8774d0-afec-42cb-b15e-c9751b327c95\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3auawambdcndgab.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4c7d4f6-1b17-4919-9\",\"name\":\"Testd4c7d4f6-1b17-4919-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:03:40.031421Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:03:40.031421Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adapeadeh4fhbbe3.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde2bb4c7-d950-4156-b\",\"name\":\"Testde2bb4c7-d950-4156-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:04:55.4828172Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:04:55.4828172Z\"},\"identity\":{\"principalId\":\"70dc411b-2da7-4b2a-b672-ec14c4dcdb58\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://erabddfdbqdphtcq.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2f3ef70d-bbd8-4547-b\",\"name\":\"Test2f3ef70d-bbd8-4547-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:10:53.3178724Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:10:53.3178724Z\"},\"identity\":{\"principalId\":\"54cde060-817f-480c-b5b8-f735a6c98d27\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3bvcjede0c0eje8.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test62b5305e-0158-41d2-8\",\"name\":\"Test62b5305e-0158-41d2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:13:40.0241864Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:13:40.0241864Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bvapashwgeerg3ad.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testba61348d-39b0-4458-b\",\"name\":\"Testba61348d-39b0-4458-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:20:52.8874317Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:20:52.8874317Z\"},\"identity\":{\"principalId\":\"916a0fec-134a-49c8-99e8-656570d19d32\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://geb8fmegauahasex.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7c1eb0f1-5cf4-4b2b-8\",\"name\":\"Test7c1eb0f1-5cf4-4b2b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:23:39.4653136Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:23:39.4653136Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://evd4b5h5b9h9d4g7.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste66688e5-30ad-4da0-8\",\"name\":\"Teste66688e5-30ad-4da0-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:29:37.9191976Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:29:37.9191976Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gfbhh9gjfza0cmb0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test388ef07d-ebba-4cbb-9\",\"name\":\"Test388ef07d-ebba-4cbb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:30:53.3380706Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:30:53.3380706Z\"},\"identity\":{\"principalId\":\"f9901763-b133-48fd-9971-57a9fe1990fa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hug3daccfvchhjej.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2489dec-8eb2-487e-b\",\"name\":\"Teste2489dec-8eb2-487e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:34:56.0937298Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:34:56.0937298Z\"},\"identity\":{\"principalId\":\"e756ec96-5c3f-4aca-b504-bbe39d02401c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hpchd2cvb6aafgfm.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf930485f-a694-4f71-9\",\"name\":\"Testf930485f-a694-4f71-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:39:38.5278598Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:39:38.5278598Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5fsfme2ede6hafr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53b65792-50fb-47b0-9\",\"name\":\"Test53b65792-50fb-47b0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:49:38.5256918Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:49:38.5256918Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gha7d2gje8gzfzca.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3b6bac20-f252-4b90-8\",\"name\":\"Test3b6bac20-f252-4b90-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:53:40.387144Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:53:40.387144Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a9g7aagjcrc6bye8.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd68b15cf-11dd-4fb6-a\",\"name\":\"Testd68b15cf-11dd-4fb6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:54:56.9183271Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:54:56.9183271Z\"},\"identity\":{\"principalId\":\"c12e2bea-3dfc-4261-aa49-3349944720f4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://chfxh9g2h6hch9eh.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6b99468d-dfab-4506-8\",\"name\":\"Test6b99468d-dfab-4506-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:59:37.8801423Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:59:37.8801423Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dyg4aeb4bfbka8f5.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test56d2ded4-38ef-4399-8\",\"name\":\"Test56d2ded4-38ef-4399-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:04:56.2874705Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:04:56.2874705Z\"},\"identity\":{\"principalId\":\"a05fbbb2-41e6-468e-bfa4-90b07108d44a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d8c4dth7fqcubucd.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfdb6bf0b-cee6-4962-8\",\"name\":\"Testfdb6bf0b-cee6-4962-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:09:38.541977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:09:38.541977Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://cpfqf5gpcpc5g0gb.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde617916-0f51-4953-a\",\"name\":\"Testde617916-0f51-4953-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:19:39.2824636Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:19:39.2824636Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bhhfevb7bzeqc0ap.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff4b7b89-5ebc-4fa4-a\",\"name\":\"Testff4b7b89-5ebc-4fa4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:20:53.2834288Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:20:53.2834288Z\"},\"identity\":{\"principalId\":\"46a5e6ca-9620-4cfa-b75d-3da7f4aaa9fa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b2f2erbfd8agchfh.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e979e6a-6f32-4ea2-b\",\"name\":\"Test5e979e6a-6f32-4ea2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:49:37.8357616Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:49:37.8357616Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d8cbf2dnheb6fuek.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb5148255-04b2-40e7-b\",\"name\":\"Testb5148255-04b2-40e7-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:59:38.54155Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:59:38.54155Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fdgrd6hscyhmb9cg.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3ff5ca4-b08e-4c7d-9\",\"name\":\"Testf3ff5ca4-b08e-4c7d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:40:53.4438821Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:40:53.4438821Z\"},\"identity\":{\"principalId\":\"9ef2437c-88af-4fc1-bdfd-807bb787bc80\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://duavc4dpaegra0gj.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2f2ff72-6b64-4f93-8\",\"name\":\"Teste2f2ff72-6b64-4f93-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:43:40.6249534Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:43:40.6249534Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://avemb2d5hnhmd9bb.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2fbf6574-c44d-4f1c-8\",\"name\":\"Test2fbf6574-c44d-4f1c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:44:56.527973Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:44:56.527973Z\"},\"identity\":{\"principalId\":\"240fedc2-4b7a-4f13-ba9d-480fdbd3a295\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fxbvhsamcvhthgc2.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0ad5360-2b93-4652-b\",\"name\":\"Testb0ad5360-2b93-4652-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:40:54.1467031Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:40:54.1467031Z\"},\"identity\":{\"principalId\":\"5feda2fe-9e96-4b0b-aa4e-7b5a21efbcaa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ghftcybbaefhfwep.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test894b7ab4-49ac-4f0a-9\",\"name\":\"Test894b7ab4-49ac-4f0a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:10:54.9420866Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:10:54.9420866Z\"},\"identity\":{\"principalId\":\"fa14ce0c-7b7e-4f8a-931b-5711dfbfa02f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hkh4aea8bpahhng9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4d628f6e-45c2-4334-8\",\"name\":\"Test4d628f6e-45c2-4334-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:20:56.3876235Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:20:56.3876235Z\"},\"identity\":{\"principalId\":\"b762a1f0-82a6-427e-97e6-8b637186af93\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c0fzbgg6e5grdce3.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste85a7926-1e1e-4de1-a\",\"name\":\"Teste85a7926-1e1e-4de1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:30:56.1343757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:30:56.1343757Z\"},\"identity\":{\"principalId\":\"a0da35ad-1636-43df-ad61-5643e62da9a3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e2bmfmdggea3bha0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbbc2a5ee-d452-4b63-8\",\"name\":\"Testbbc2a5ee-d452-4b63-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T16:43:43.1433326Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T16:43:43.1433326Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gqawdge2drbea6dr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa413c93e-30f9-4a96-8\",\"name\":\"Testa413c93e-30f9-4a96-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T17:59:42.0147642Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T17:59:42.0147642Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gmhuf7f2bmfxg4h9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test34f2e583-6e88-4822-9\",\"name\":\"Test34f2e583-6e88-4822-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T19:49:42.4645046Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T19:49:42.4645046Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dac0f9g6cuggdgdu.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus-pl\",\"name\":\"syntheticsscus-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"South Central US\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T21:17:55.1121961Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:17:55.1121961Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://czhdhshwfwchaxgk.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus-pl/privateEndpointConnections/pe-syntheticsscus-pl.b34b2b66-e7a7-420b-a9cd-17ba357a4917\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticsscus-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus\",\"name\":\"syntheticsscus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:06:27.9308928Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:17:38.3043211Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b3dchyfbd9c5f7d9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809scus\",\"name\":\"plval0809scus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:42:27.6946016Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-06T05:59:41.3984427Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f8ajedhjefaef7et.api.scus001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-scus\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809scus/privateEndpointConnections/pl-scus.9d739708-ca0b-4377-b992-aa12a78a59e4\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchao1214cac\",\"name\":\"testcchao1214cac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-14T22:15:16.7509833Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-14T22:15:16.7509833Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchao1214cac.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac\",\"name\":\"syntheticscac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T19:46:51.7616163Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:21:41.4155723Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticscac.api.cac001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscac\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac/privateEndpointConnections/pe-syntheticscac.350ccd7c-2652-4c8e-8da4-ac955a9da7ae\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/cac001test\",\"name\":\"cac001test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T20:40:25.9724565Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-21T20:40:25.9724565Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cac001test.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/testcchao1214\",\"name\":\"testcchao1214\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-14T20:34:56.1958631Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-14T20:34:56.1958631Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchao1214.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe141ff5-16a5-4d1a-8\",\"name\":\"Testbe141ff5-16a5-4d1a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:48:23.7560316Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:48:23.7560316Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbe141ff5-16a5-4d1a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb812004a-e516-47d7-9\",\"name\":\"Testb812004a-e516-47d7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T05:58:52.4766857Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T05:58:52.4766857Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb812004a-e516-47d7-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testee94f615-81d5-4516-b\",\"name\":\"Testee94f615-81d5-4516-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:08:23.3555244Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:08:23.3555244Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testee94f615-81d5-4516-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfc5814e5-2798-48b6-a\",\"name\":\"Testfc5814e5-2798-48b6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T08:08:51.8209589Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T08:08:51.8209589Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfc5814e5-2798-48b6-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfd7fbf70-6cbf-4b4a-8\",\"name\":\"Testfd7fbf70-6cbf-4b4a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T12:38:24.31318Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T12:38:24.31318Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfd7fbf70-6cbf-4b4a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadde277e-ccb3-471b-b\",\"name\":\"Testadde277e-ccb3-471b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T16:38:24.5291319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T16:38:24.5291319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testadde277e-ccb3-471b-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc37d9ddb-102f-4a1e-a\",\"name\":\"Testc37d9ddb-102f-4a1e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:58:52.8819245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:58:52.8819245Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc37d9ddb-102f-4a1e-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe524207-9bee-4eeb-8\",\"name\":\"Testbe524207-9bee-4eeb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:48:52.0938714Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:48:52.0938714Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbe524207-9bee-4eeb-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfe40715a-b9b6-438a-9\",\"name\":\"Testfe40715a-b9b6-438a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:38:53.1112198Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:38:53.1112198Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfe40715a-b9b6-438a-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste93d760d-e861-4f8a-b\",\"name\":\"Teste93d760d-e861-4f8a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:48:52.8765576Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:48:52.8765576Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste93d760d-e861-4f8a-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbde92518-4561-4272-b\",\"name\":\"Testbde92518-4561-4272-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T05:48:24.9302907Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T05:48:24.9302907Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbde92518-4561-4272-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9ab90f7-ead2-4a22-a\",\"name\":\"Teste9ab90f7-ead2-4a22-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T08:48:24.8275683Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T08:48:24.8275683Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste9ab90f7-ead2-4a22-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb96faeb2-c7a8-4fb6-8\",\"name\":\"Testb96faeb2-c7a8-4fb6-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T08:48:52.2765884Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T08:48:52.2765884Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb96faeb2-c7a8-4fb6-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb5e1d8f-5a10-4f3d-b\",\"name\":\"Testfb5e1d8f-5a10-4f3d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:08:24.6121269Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:08:24.6121269Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfb5e1d8f-5a10-4f3d-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc37ecb64-bee9-48c4-8\",\"name\":\"Testc37ecb64-bee9-48c4-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:18:53.0484634Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:18:53.0484634Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc37ecb64-bee9-48c4-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea87009e-cd5f-434a-8\",\"name\":\"Testea87009e-cd5f-434a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:28:24.9152706Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:28:24.9152706Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testea87009e-cd5f-434a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste72d78f2-0c81-47e2-9\",\"name\":\"Teste72d78f2-0c81-47e2-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T14:48:53.4841049Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T14:48:53.4841049Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste72d78f2-0c81-47e2-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbec339eb-b20e-4e71-b\",\"name\":\"Testbec339eb-b20e-4e71-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T18:28:25.0354485Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T18:28:25.0354485Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbec339eb-b20e-4e71-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3cad9ac-ca11-4d7f-b\",\"name\":\"Testf3cad9ac-ca11-4d7f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T23:08:24.6260425Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T23:08:24.6260425Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf3cad9ac-ca11-4d7f-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9a0e6f6-8315-4f4e-a\",\"name\":\"Teste9a0e6f6-8315-4f4e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T17:19:54.9641644Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T17:19:54.9641644Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvgzgtcyb0f0bcbr.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/c052301\",\"name\":\"c052301\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-23T21:50:04.9325652Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-23T21:50:04.9325652Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cuh0cya8geb3e5er.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test74a6af4b-e408-4a48-b\",\"name\":\"Test74a6af4b-e408-4a48-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-08T12:24:51.824032Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-08T12:24:51.824032Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://awhcasf8c9defuex.api.cac001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/contoso\",\"name\":\"contoso\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-11T01:15:32.4282974Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-16T01:24:44.0721271Z\"},\"identity\":{\"principalId\":\"bb138c5e-1f10-4af5-8f8c-b5900ee6c028\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d0gufsabftehaafy.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd00ec2e0-d149-486c-8\",\"name\":\"Testd00ec2e0-d149-486c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-14T19:56:59.5837521Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-14T19:56:59.5837521Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hwcaakcmc5b0gqfu.api.cac001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75c4f4f7-e747-40d7-b\",\"name\":\"Test75c4f4f7-e747-40d7-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-23T09:19:32.7259893Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-23T09:19:32.7259893Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hgcxhrf6cvgzgvbk.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoncac\",\"name\":\"jovinsoncac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T00:33:24.6944776Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T18:44:08.4356876Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d0bfayg0ezfnhchn.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7376b54d-00bb-404a-a\",\"name\":\"Test7376b54d-00bb-404a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-10T05:21:32.7798717Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-10T05:21:32.7798717Z\"},\"identity\":{\"principalId\":\"462a8c95-b62b-4eda-9347-fea1340533fc\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac2\",\"name\":\"plval0809cac2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T18:18:27.2675958Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T18:18:27.2675958Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ajgqfsf9a8dgfvbc.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac2/privateEndpointConnections/testcac.b6b70409-687b-4feb-8e1b-9b0c00232a13\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testcac\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cac0813\",\"name\":\"cac0813\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T23:52:55.8307582Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-13T23:52:55.8307582Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8gnakgpd7ghdmd3.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cac0813/privateEndpointConnections/pl-in-wus2-for-cac.063e5043-24ca-487c-ad39-cc26aa507a42\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-in-wus2-for-cac\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac\",\"name\":\"plval0809cac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:43:37.8772867Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T01:29:19.7481984Z\"},\"identity\":{\"principalId\":\"d52e151e-d189-4586-8a21-3c6d6b82608b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoodeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-asmahmoodeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h3bvakc4esfwhudx.api.cac001.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/plval0809cac/privateEndpointConnections/testmove.a9247899-9665-43d8-accb-3b5bd8f51977\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testmove\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test38aa4849-70f1-457f-9\",\"name\":\"Test38aa4849-70f1-457f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-27T04:02:53.1118952Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-27T04:02:53.1118952Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f9fme8cffdgyh8dq.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac-pl\",\"name\":\"syntheticscac-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"Canada Central\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T20:21:54.6470188Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:21:54.6470188Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://guewfrfee0bth4bq.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac-pl/privateEndpointConnections/pe-syntheticscac-pl.fbc886dc-b7a0-4c9d-ad6d-ab497de44e33\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscac-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fc7b202-806d-41fc-a\",\"name\":\"Test5fc7b202-806d-41fc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-21T20:52:59.1012277Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-21T20:52:59.1012277Z\"},\"properties\":{\"provisioningState\":\"Accepted\",\"serviceUrl\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks-pl\",\"name\":\"syntheticsuks-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"UK South\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T11:41:59.3973637Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:41:59.3973637Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fwhydne8fdbrfrg7.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks-pl/privateEndpointConnections/pe-syntheticsuks-pl.ae3f666c-dce1-4e29-8dc6-6f7005c4be59\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticsuks-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test50da495d-d139-4adb-9\",\"name\":\"Test50da495d-d139-4adb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-09T15:30:21.7885277Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-09T15:30:21.7885277Z\"},\"identity\":{\"principalId\":\"17cde715-3f38-4979-b34a-9b118e239f5d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcgpfrfbd9a0hrhz.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test10a21a5e-f0f5-4167-a\",\"name\":\"Test10a21a5e-f0f5-4167-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-09T18:19:30.3378838Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-09T18:19:30.3378838Z\"},\"identity\":{\"principalId\":\"9bfce899-2b8e-4c56-aa44-cb7087d29eeb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cmfggnf6ahbedcg3.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6edfe863-0bd7-40d2-b\",\"name\":\"Test6edfe863-0bd7-40d2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-19T00:34:18.8578543Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T00:34:18.8578543Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a2azawg2hxh6bwf7.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeiduks022601\",\"name\":\"testdeiduks022601\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-02-26T03:21:53.3851448Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-02-26T03:21:53.3851448Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeiduks022601.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks\",\"name\":\"syntheticsuks\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-02-26T17:46:58.9333107Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:41:45.7581489Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticsuks.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3d88a515-d60b-4703-a\",\"name\":\"Test3d88a515-d60b-4703-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T00:20:52.4814496Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T00:20:52.4814496Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3d88a515-d60b-4703-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ba1db05-66af-48ba-a\",\"name\":\"Test5ba1db05-66af-48ba-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:09:09.8063221Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:09:09.8063221Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5ba1db05-66af-48ba-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf18e9bc0-59be-4369-a\",\"name\":\"Testf18e9bc0-59be-4369-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:50:52.7531111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:50:52.7531111Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf18e9bc0-59be-4369-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste4c0a9ae-e437-4e53-8\",\"name\":\"Teste4c0a9ae-e437-4e53-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T03:40:52.9722546Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T03:40:52.9722546Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste4c0a9ae-e437-4e53-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92f14301-de10-485d-8\",\"name\":\"Test92f14301-de10-485d-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:19:09.9377812Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:19:09.9377812Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test92f14301-de10-485d-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test67f1b55a-e123-411f-9\",\"name\":\"Test67f1b55a-e123-411f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:40:53.8336883Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:40:53.8336883Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test67f1b55a-e123-411f-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test80fc6be1-06ed-4f72-b\",\"name\":\"Test80fc6be1-06ed-4f72-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:09:10.0735771Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:09:10.0735771Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test80fc6be1-06ed-4f72-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d69a0eb-c729-4a0c-8\",\"name\":\"Test6d69a0eb-c729-4a0c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:10:54.531239Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:10:54.531239Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test6d69a0eb-c729-4a0c-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8e3398a8-6bc2-42c3-9\",\"name\":\"Test8e3398a8-6bc2-42c3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:20:55.315193Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:20:55.315193Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test8e3398a8-6bc2-42c3-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf8b49b46-e5c2-4c94-b\",\"name\":\"Testf8b49b46-e5c2-4c94-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:40:55.2306005Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:40:55.2306005Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf8b49b46-e5c2-4c94-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c8394b6-3dc3-4140-9\",\"name\":\"Test4c8394b6-3dc3-4140-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T08:09:10.5504903Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T08:09:10.5504903Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test4c8394b6-3dc3-4140-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4b02e0b7-6770-433e-b\",\"name\":\"Test4b02e0b7-6770-433e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:19:10.6554416Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:19:10.6554416Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test4b02e0b7-6770-433e-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ec15027-e591-4627-9\",\"name\":\"Test5ec15027-e591-4627-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:20:56.2812694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:20:56.2812694Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5ec15027-e591-4627-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test39c6475a-f8e4-4af6-a\",\"name\":\"Test39c6475a-f8e4-4af6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:50:56.3741348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:50:56.3741348Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test39c6475a-f8e4-4af6-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc8ad4567-533a-4ce8-9\",\"name\":\"Testc8ad4567-533a-4ce8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T13:29:10.5194548Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T13:29:10.5194548Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc8ad4567-533a-4ce8-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa3b87661-7164-420b-a\",\"name\":\"Testa3b87661-7164-420b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T14:29:11.0114811Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T14:29:11.0114811Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testa3b87661-7164-420b-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb1f5a668-d4bf-46c0-a\",\"name\":\"Testb1f5a668-d4bf-46c0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T16:10:58.9386977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T16:10:58.9386977Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb1f5a668-d4bf-46c0-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaf570861-5083-4b08-8\",\"name\":\"Testaf570861-5083-4b08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T17:10:59.5199062Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T17:10:59.5199062Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testaf570861-5083-4b08-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf9809517-bd2a-4a85-a\",\"name\":\"Testf9809517-bd2a-4a85-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T18:21:00.1198972Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T18:21:00.1198972Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf9809517-bd2a-4a85-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testceb3c51e-c97e-4036-a\",\"name\":\"Testceb3c51e-c97e-4036-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T18:51:00.9735653Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T18:51:00.9735653Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testceb3c51e-c97e-4036-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test41e236dc-2118-4148-b\",\"name\":\"Test41e236dc-2118-4148-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T20:19:10.7686625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T20:19:10.7686625Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test41e236dc-2118-4148-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test42c68520-0d29-4fda-9\",\"name\":\"Test42c68520-0d29-4fda-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T20:39:10.6042131Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T20:39:10.6042131Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test42c68520-0d29-4fda-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5f0f9b1b-e3f6-4543-b\",\"name\":\"Test5f0f9b1b-e3f6-4543-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T21:01:01.2975633Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T21:01:01.2975633Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5f0f9b1b-e3f6-4543-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9b9a0260-5400-4dd1-9\",\"name\":\"Test9b9a0260-5400-4dd1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T21:21:00.992689Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T21:21:00.992689Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test9b9a0260-5400-4dd1-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc5af0427-b99b-41bb-8\",\"name\":\"Testc5af0427-b99b-41bb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:29:11.3443757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:29:11.3443757Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc5af0427-b99b-41bb-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcf8556e6-f2a0-4b12-b\",\"name\":\"Testcf8556e6-f2a0-4b12-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:31:01.9937927Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:31:01.9937927Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testcf8556e6-f2a0-4b12-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd6c86137-5f31-4b4f-a\",\"name\":\"Testd6c86137-5f31-4b4f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T23:21:02.5314215Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T23:21:02.5314215Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testd6c86137-5f31-4b4f-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test746d3a9e-cf75-4eab-b\",\"name\":\"Test746d3a9e-cf75-4eab-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:19:10.8767157Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:19:10.8767157Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test746d3a9e-cf75-4eab-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test45a63904-b7fc-41ac-8\",\"name\":\"Test45a63904-b7fc-41ac-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:29:10.9908989Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:29:10.9908989Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test45a63904-b7fc-41ac-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa37ff03f-594e-4639-9\",\"name\":\"Testa37ff03f-594e-4639-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T01:11:03.4663176Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T01:11:03.4663176Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testa37ff03f-594e-4639-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3d03640f-d1d3-46de-9\",\"name\":\"Test3d03640f-d1d3-46de-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:39:10.8625319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:39:10.8625319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3d03640f-d1d3-46de-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test591ad95a-c223-4b08-8\",\"name\":\"Test591ad95a-c223-4b08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:41:04.1150678Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:41:04.1150678Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test591ad95a-c223-4b08-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5dcea7f4-d323-45a9-b\",\"name\":\"Test5dcea7f4-d323-45a9-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T03:29:11.4528903Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T03:29:11.4528903Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5dcea7f4-d323-45a9-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92cfa1b9-9151-4b89-8\",\"name\":\"Test92cfa1b9-9151-4b89-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T04:51:05.074173Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T04:51:05.074173Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test92cfa1b9-9151-4b89-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test95987d55-100c-43d8-8\",\"name\":\"Test95987d55-100c-43d8-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T05:31:05.7753462Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T05:31:05.7753462Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test95987d55-100c-43d8-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste5dfad94-0de5-455c-a\",\"name\":\"Teste5dfad94-0de5-455c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T06:29:11.6867739Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T06:29:11.6867739Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste5dfad94-0de5-455c-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9a4d97b4-d5f3-42e4-a\",\"name\":\"Test9a4d97b4-d5f3-42e4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T07:09:11.8674261Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T07:09:11.8674261Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test9a4d97b4-d5f3-42e4-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc3805fea-9033-4b98-8\",\"name\":\"Testc3805fea-9033-4b98-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:31:07.5462811Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:31:07.5462811Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc3805fea-9033-4b98-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7125cf10-0ac8-4bf9-a\",\"name\":\"Test7125cf10-0ac8-4bf9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:41:08.3309937Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:41:08.3309937Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test7125cf10-0ac8-4bf9-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d26c847-6613-40f2-8\",\"name\":\"Test5d26c847-6613-40f2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:49:11.7472977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:49:11.7472977Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5d26c847-6613-40f2-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3f4bf4b0-ba09-480e-a\",\"name\":\"Test3f4bf4b0-ba09-480e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T13:49:11.9394943Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T13:49:11.9394943Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3f4bf4b0-ba09-480e-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc501e94f-d1e5-41c2-8\",\"name\":\"Testc501e94f-d1e5-41c2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T14:41:08.9028567Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T14:41:08.9028567Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc501e94f-d1e5-41c2-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc76a0899-5149-4990-9\",\"name\":\"Testc76a0899-5149-4990-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-03T09:43:58.6456183Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-03T09:43:58.6456183Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmdea3e3e4fuexd6.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9edb5065-a37f-4251-9\",\"name\":\"Test9edb5065-a37f-4251-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-03T12:03:58.2570665Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-03T12:03:58.2570665Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eaaaaze7hmawb6dz.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test537b661d-5b25-4b05-a\",\"name\":\"Test537b661d-5b25-4b05-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-09T11:35:15.9950351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-09T11:35:15.9950351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ftcyfjasg0cyhuac.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test58fb831b-3206-4d1c-8\",\"name\":\"Test58fb831b-3206-4d1c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-09T13:55:16.6422517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-09T13:55:16.6422517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gpfdghashmfqevgm.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test78efa6a0-01f3-4805-a\",\"name\":\"Test78efa6a0-01f3-4805-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T07:54:14.6339935Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T07:54:14.6339935Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvc8dbhqf7cxd8c9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfcc689cc-63de-4471-8\",\"name\":\"Testfcc689cc-63de-4471-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-15T10:24:17.1738232Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-15T10:24:17.1738232Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d4aycyfehvhbfqcs.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa59884e6-b0f3-4768-9\",\"name\":\"Testa59884e6-b0f3-4768-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-22T15:38:28.3543348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-22T15:38:28.3543348Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b3chdfdqe3dph4he.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.HealthDataAIServices/deidServices/deidService756\",\"name\":\"deidService756\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-29T18:57:54.0556359Z\",\"lastModifiedBy\":\"gthomas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-29T18:57:54.0556359Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dndqcbaxfngdh3be.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.HealthDataAIServices/deidServices/deidService756/privateEndpointConnections/deid-pe-6242.f8d562cf-4796-40df-84a1-e911f4cf8119\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.Network/privateEndpoints/deid-pe-6242\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"SDK test\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6c445d05-8a04-40d1-9\",\"name\":\"Test6c445d05-8a04-40d1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T20:18:08.8233351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T20:18:08.8233351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9fme0cmfycxcyda.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test667df1aa-2ea2-4184-9\",\"name\":\"Test667df1aa-2ea2-4184-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T20:24:41.4000305Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T20:24:41.4000305Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huchfaeuhrhuf3bu.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd42eca40-d463-41f3-9\",\"name\":\"Testd42eca40-d463-41f3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T21:26:50.9377625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T21:26:50.9377625Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bkbvcmbkcraecyfw.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8aa6c493-0cc1-4566-9\",\"name\":\"Test8aa6c493-0cc1-4566-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T22:29:21.7100366Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T19:32:08.0474887Z\"},\"identity\":{\"principalId\":\"0d71e7bd-429f-4c3c-82a6-3852d3b8e3a5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aybnbyavd2ejhzfd.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3e530210-4444-43a1-9\",\"name\":\"Test3e530210-4444-43a1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T10:56:57.0258009Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T10:56:57.0258009Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fwfch8gde3gvbwhz.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa8051ac4-966b-4183-8\",\"name\":\"Testa8051ac4-966b-4183-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T17:13:31.2614966Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T17:13:31.2614966Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://d7cwffedg0d2a5a6.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test40eea777-40b0-4680-b\",\"name\":\"Test40eea777-40b0-4680-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-09T07:53:34.2437985Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-09T07:53:34.2437985Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://byg5frajbxhfdcf6.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809\",\"name\":\"plval0809\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T17:33:06.4759332Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-12T19:22:00.4727578Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d9dfeaajhcafe7aw.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809/privateEndpointConnections/pl-uks.024e1c37-90f0-4d5e-8d16-8801adc29384\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-uks\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809dis2\",\"name\":\"plval0809dis2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:09:47.4289174Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:27:25.7954862Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://avesemfzbecrdjc4.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809dis2/privateEndpointConnections/plval0809dis2-pe.f950a94c-5b4b-4a31-bdee-e459f933aea9\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/plval0809dis2-pe\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsonuks\",\"name\":\"jovinsonuks\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-15T16:09:58.6334969Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-15T16:09:58.6334969Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dhdqagccangwhcdk.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test\",\"name\":\"test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T20:05:42.8384639Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T20:05:42.8384639Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0926v1\",\"name\":\"test0926v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T02:45:59.3438672Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T02:45:59.3438672Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0926v1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0926v2\",\"name\":\"test0926v2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T02:47:31.7472967Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T02:47:31.7472967Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0926v2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0927\",\"name\":\"test0927\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T16:46:05.2162306Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T16:46:05.2162306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0927.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0928\",\"name\":\"test0928\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-28T17:38:42.3842671Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-28T17:38:42.3842671Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0928.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0928v2\",\"name\":\"test0928v2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-28T17:57:11.4511743Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-28T17:57:11.4511743Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0928v2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1002\",\"name\":\"test1002\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-02T13:13:48.4976059Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-02T13:13:48.4976059Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1002.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test123\",\"name\":\"test123\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-03T20:40:59.3297043Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-03T20:40:59.3297043Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test123.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1\",\"name\":\"test1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-26T20:24:59.1914056Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-26T20:25:37.9297376Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchaoeus2euap1207\",\"name\":\"testcchaoeus2euap1207\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-07T21:59:57.2279724Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-07T21:59:57.2279724Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchaoeus2euap1207.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchaoeuap1212\",\"name\":\"testcchaoeuap1212\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-12T18:33:15.9987695Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-12T18:33:15.9987695Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchaoeuap1212.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny\",\"name\":\"syntheticscny\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T19:45:57.5795884Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:16:39.1087058Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticscny.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscny\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny/privateEndpointConnections/pe-syntheticscny.9884c0cc-4d3b-43ae-a149-b37abf040780\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/deid0921\",\"name\":\"deid0921\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-21T22:11:25.2178241Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-21T22:11:25.2178241Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deid0921.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanistesting2024\",\"name\":\"daszanistesting2024\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-03T16:17:22.3144659Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-03T16:17:22.3144659Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanistesting2024.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis202402\",\"name\":\"daszanis202402\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-03T18:11:45.7645355Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-03T18:11:45.7645355Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanis202402.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240404\",\"name\":\"testdeid20240404\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-04T21:33:53.4405002Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-04T21:33:53.4405002Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeid20240404.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240405\",\"name\":\"testdeid20240405\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-05T17:21:33.6289145Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-05T17:21:33.6289145Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeid20240405.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test689709c7-09b1-47ca-8\",\"name\":\"Test689709c7-09b1-47ca-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-12T23:56:49.2787259Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-12T23:56:49.2787259Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test689709c7-09b1-47ca-8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test773f4669-3a29-49fc-a\",\"name\":\"Test773f4669-3a29-49fc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:06:49.801438Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:06:49.801438Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test773f4669-3a29-49fc-a.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb939892-2d36-4af1-b\",\"name\":\"Testfb939892-2d36-4af1-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:55:16.2530902Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:55:16.2530902Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfb939892-2d36-4af1-b.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test636a77c6-bb93-4c48-9\",\"name\":\"Test636a77c6-bb93-4c48-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:56:49.9404785Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:56:49.9404785Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test636a77c6-bb93-4c48-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc469c263-d5cf-48a9-9\",\"name\":\"Testc469c263-d5cf-48a9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:55:16.4535138Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:55:16.4535138Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc469c263-d5cf-48a9-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testeabc36c7-733c-4eb8-a\",\"name\":\"Testeabc36c7-733c-4eb8-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:56:50.448085Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:56:50.448085Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testeabc36c7-733c-4eb8-a.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testec267f69-a8bf-4575-8\",\"name\":\"Testec267f69-a8bf-4575-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:05:17.4033647Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:05:17.4033647Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testec267f69-a8bf-4575-8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test86a1c01e-27ca-4506-9\",\"name\":\"Test86a1c01e-27ca-4506-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-16T18:46:56.1179547Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-16T18:46:56.1179547Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test86a1c01e-27ca-4506-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240416\",\"name\":\"daszanis20240416\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-16T20:36:46.8661158Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-16T20:36:46.8661158Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanis20240416.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/c041601\",\"name\":\"c041601\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-17T00:47:59.1402568Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-15T00:45:17.1793437Z\"},\"identity\":{\"principalId\":\"6e539289-0cfc-471c-9bcb-cbc69a2cee57\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gwfqcrezeqafatg4.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd7b005bb-5337-42a9-8\",\"name\":\"Testd7b005bb-5337-42a9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T00:56:03.5007718Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T00:56:03.5007718Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b5gvggdnd6btcrf4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3abb1b75-72ca-4dc3-9\",\"name\":\"Test3abb1b75-72ca-4dc3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:06:55.6174028Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:06:55.6174028Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://htaacnh7dndrffgt.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbfdd288c-7fea-48ec-9\",\"name\":\"Testbfdd288c-7fea-48ec-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:36:55.8693213Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:36:55.8693213Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g3bra2a4bfbzhwh4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5dcc63e3-df2e-4516-9\",\"name\":\"Test5dcc63e3-df2e-4516-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:46:55.7630063Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:46:55.7630063Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzb4ftfmcqg7cahr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test789c6bc9-679b-46ff-a\",\"name\":\"Test789c6bc9-679b-46ff-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T08:26:06.1766861Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T08:26:06.1766861Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dzc8h7hehfhze6ey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa6980ee4-2421-497e-9\",\"name\":\"Testa6980ee4-2421-497e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T14:26:55.3211498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T14:26:55.3211498Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpfmddfnd6c7d0ff.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53bbe941-ecf8-4e64-8\",\"name\":\"Test53bbe941-ecf8-4e64-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T17:46:12.2182371Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T17:46:12.2182371Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bjfmhzh8anhuacge.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test60cbbac8-cf49-46cd-a\",\"name\":\"Test60cbbac8-cf49-46cd-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T01:16:55.472584Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T01:16:55.472584Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hpe8hrhfd0f0bugm.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9ef5b7ba-12f1-451e-8\",\"name\":\"Test9ef5b7ba-12f1-451e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T05:46:17.5183098Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T05:46:17.5183098Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cxhah8g2ezexa9c3.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test684f4d00-b1d3-418b-b\",\"name\":\"Test684f4d00-b1d3-418b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T06:16:56.4082904Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T06:16:56.4082904Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b2hdb3gtb7edawe4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf66e2fb8-fe37-464c-a\",\"name\":\"Testf66e2fb8-fe37-464c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T12:56:55.427874Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T12:56:55.427874Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dvf0dufdbud8g7ec.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa69c6c6a-1c54-43a7-9\",\"name\":\"Testa69c6c6a-1c54-43a7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T15:26:56.3308432Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T15:26:56.3308432Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hahca8czaahfayeb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/c041801\",\"name\":\"c041801\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-18T19:34:43.4241066Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-18T19:34:43.4241066Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hshae9gwhudke2bd.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0419\",\"name\":\"test0419\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-19T16:55:49.9694669Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-19T16:55:49.9694669Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efhwdwdkdxhzd3cr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0423\",\"name\":\"test0423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T18:48:50.4444369Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cwg6c8hnamdfd2fw.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240423\",\"name\":\"daszanis20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T20:16:50.967515Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T20:16:50.967515Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aygfhrgyf3dddwd4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanisstringtest\",\"name\":\"daszanisstringtest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T20:48:07.9822169Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T20:48:07.9822169Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3eqhthegcbebda8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwithtags20240423\",\"name\":\"deidwithtags20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"test\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T21:25:59.6619497Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T21:26:34.327989Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fhfga7e0fkhgcqc0.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/danitagtest20240423\",\"name\":\"danitagtest20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"NonProd\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T22:19:45.4929556Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T22:19:45.4929556Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dbhmh3anfxgwddey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test774a83ad-b850-4275-a\",\"name\":\"Test774a83ad-b850-4275-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-25T16:07:44.1772498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-25T16:07:44.1772498Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gshxbph2gnh6bect.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240425\",\"name\":\"daszanis20240425\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-25T17:52:29.0785344Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-25T17:52:29.0785344Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hubfd9fxc4btcybf.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6dc7b759-44c6-40bb-a\",\"name\":\"Test6dc7b759-44c6-40bb-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-26T00:37:48.5866059Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-26T00:37:48.5866059Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkg0gmedgtfcaaba.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240430\",\"name\":\"testdeid20240430\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"prod\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-30T22:59:53.7170445Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-30T22:59:53.7170445Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dtbafdemctajayg8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoo-deid/providers/Microsoft.HealthDataAIServices/DeidServices/testresource\",\"name\":\"testresource\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-09T04:00:42.7519139Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-09T04:00:42.7519139Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hzaxc2cmgnh4fpcz.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8c26233c-3784-4c58-9\",\"name\":\"Test8c26233c-3784-4c58-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-13T07:38:19.1922537Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-13T07:38:19.1922537Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a4cwbhcsf4dqcbdb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3cd577fe-ccf5-47bd-9\",\"name\":\"Test3cd577fe-ccf5-47bd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T18:40:35.8341966Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T18:40:35.8341966Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aka6fgfcdcdjgqcp.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadeb2e2d-3427-4166-a\",\"name\":\"Testadeb2e2d-3427-4166-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-15T00:58:27.3004666Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-15T00:58:27.3004666Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bvdtcuagdsbkabcr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test600d8e71-b5c7-414a-b\",\"name\":\"Test600d8e71-b5c7-414a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T17:20:56.3643351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T17:20:56.3643351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gtd0g3d0hpf0cqau.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6a3294b5-2a1e-4504-9\",\"name\":\"Test6a3294b5-2a1e-4504-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T19:20:58.1160517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T19:20:58.1160517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dba6b5hxdwadf7ah.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3845680e-e8ad-45e7-8\",\"name\":\"Test3845680e-e8ad-45e7-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T21:51:33.7943111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T21:51:33.7943111Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c32fecf-8010-484f-a\",\"name\":\"Test4c32fecf-8010-484f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T21:54:45.3278696Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T21:54:45.3278696Z\"},\"identity\":{\"principalId\":\"e8302371-66e9-425c-87bf-3c8f0d76ad47\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfe015d69-5e8e-4db9-9\",\"name\":\"Testfe015d69-5e8e-4db9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T01:11:02.9479853Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T01:11:02.9479853Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://anc8cbgmgzdreuey.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test51eb2ea0-227c-4a00-8\",\"name\":\"Test51eb2ea0-227c-4a00-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T01:28:31.9856996Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T01:28:31.9856996Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fjfkeqgvahfndzeh.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7783075a-2910-462c-b\",\"name\":\"Test7783075a-2910-462c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T02:08:32.7778744Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T02:08:32.7778744Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hgc0ead5htc3e6fp.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3af887a9-3bc4-41cd-8\",\"name\":\"Test3af887a9-3bc4-41cd-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T18:51:11.6799956Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T18:51:11.6799956Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daf7ejf0bnehbjc7.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9c0b39d6-d6aa-475f-9\",\"name\":\"Test9c0b39d6-d6aa-475f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-18T04:28:33.9687313Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-18T04:28:33.9687313Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gxh8acacatddbdcd.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9dbf2336-b2ec-4338-b\",\"name\":\"Test9dbf2336-b2ec-4338-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-22T05:31:32.0845694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-22T05:31:32.0845694Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://chfudxeygvc7dxau.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522\",\"name\":\"daszanis20240522\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T20:49:06.0137785Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T20:49:06.0137785Z\"},\"identity\":{\"principalId\":\"8110cbfe-f3ad-4a49-997b-d4eb60ddee10\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-dogfood/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-prtl-storagedogfood\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cpfbe0buawc9ftcr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste0dc89e3-c33e-4ae3-a\",\"name\":\"Teste0dc89e3-c33e-4ae3-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-22T20:59:13.3299697Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-22T20:59:13.3299697Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fbcadra9e5c8embk.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522test\",\"name\":\"daszanis20240522test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T21:36:43.3944001Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T21:36:43.3944001Z\"},\"identity\":{\"principalId\":\"9b38fc08-1656-443d-8821-d4c7d94ee1f0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-deid-test\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcbjdwagemhfg5an.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522nomi\",\"name\":\"daszanis20240522nomi\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T21:40:05.1624641Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T21:40:42.4963112Z\"},\"identity\":{\"principalId\":\"7feeda4e-c86d-4b99-a042-36c343485c8f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hybhfjg9avchasbw.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf90a630b-a35d-4f9b-a\",\"name\":\"Testf90a630b-a35d-4f9b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-23T18:46:45.7957393Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-23T18:46:45.7957393Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://csh6hza0gdf2d0dj.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testca65b6d3-2a97-48cf-a\",\"name\":\"Testca65b6d3-2a97-48cf-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-23T18:51:40.8224467Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-23T18:51:40.8224467Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://apf5cvckc2dqh2cg.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaab13d0d-8125-49de-9\",\"name\":\"Testaab13d0d-8125-49de-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-26T21:42:21.8688923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-26T21:42:21.8688923Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a9ckf5dddcc7h4fb.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test827e783b-9474-4462-9\",\"name\":\"Test827e783b-9474-4462-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-28T18:50:04.3557874Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-28T18:50:04.3557874Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvdkfqeye2hjgcaq.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdd829060-0f10-41fd-8\",\"name\":\"Testdd829060-0f10-41fd-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T19:41:38.6128968Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T19:41:38.6128968Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf809b7a-8c49-44eb-9\",\"name\":\"Testbf809b7a-8c49-44eb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T20:33:58.7936914Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T20:33:58.7936914Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d161887-93d9-4323-b\",\"name\":\"Test6d161887-93d9-4323-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T21:51:38.5411648Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T21:51:38.5411648Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test891681e9-196d-40ae-9\",\"name\":\"Test891681e9-196d-40ae-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T22:31:38.6737266Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T22:31:38.6737266Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test89d7cdb6-6940-42ed-a\",\"name\":\"Test89d7cdb6-6940-42ed-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T22:51:39.0104824Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T22:51:39.0104824Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb2891ee5-e88b-43ac-8\",\"name\":\"Testb2891ee5-e88b-43ac-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T23:11:39.1197957Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T23:11:39.1197957Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test80079631-0116-43da-9\",\"name\":\"Test80079631-0116-43da-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T23:31:39.090987Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T23:31:39.090987Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6ba2a676-2516-4029-b\",\"name\":\"Test6ba2a676-2516-4029-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T00:03:59.7132209Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T00:03:59.7132209Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4f69f23-cb37-4705-b\",\"name\":\"Testd4f69f23-cb37-4705-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T01:43:59.5879161Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T01:43:59.5879161Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3374b9b3-03d4-4ee3-8\",\"name\":\"Test3374b9b3-03d4-4ee3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:25:15.2694455Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:25:15.2694455Z\"},\"identity\":{\"principalId\":\"2fb528ba-b590-4e27-94e8-39661649c648\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcd109a6d-d21f-4c30-9\",\"name\":\"Testcd109a6d-d21f-4c30-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:31:38.9365402Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:31:38.9365402Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdb7bce88-b82f-4ec7-9\",\"name\":\"Testdb7bce88-b82f-4ec7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:41:39.530014Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:41:39.530014Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test347eea87-86a1-4c6e-8\",\"name\":\"Test347eea87-86a1-4c6e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T03:31:38.9037178Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T03:31:38.9037178Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test753a4b03-f443-4738-8\",\"name\":\"Test753a4b03-f443-4738-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T03:51:39.1294278Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T03:51:39.1294278Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7c255c37-cbb6-455b-9\",\"name\":\"Test7c255c37-cbb6-455b-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T04:22:54.0101005Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T04:22:54.0101005Z\"},\"identity\":{\"principalId\":\"bea96f89-2aae-4568-b0d6-ff627c028de9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4b0c1b40-3c3a-4041-9\",\"name\":\"Test4b0c1b40-3c3a-4041-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T05:14:00.4477353Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T05:14:00.4477353Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe23f1c8-b066-4bfd-b\",\"name\":\"Testbe23f1c8-b066-4bfd-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T05:21:39.3794908Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T05:21:39.3794908Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test533d1087-fa1a-4d48-8\",\"name\":\"Test533d1087-fa1a-4d48-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T06:11:39.0430579Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T06:11:39.0430579Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test31016491-cc34-48ee-8\",\"name\":\"Test31016491-cc34-48ee-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T06:31:39.5467214Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T06:31:39.5467214Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb7034b34-8ba1-44cc-a\",\"name\":\"Testb7034b34-8ba1-44cc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:02:54.7424212Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:02:54.7424212Z\"},\"identity\":{\"principalId\":\"cffe13e0-04d4-4265-aad7-edec13a5c537\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testac380ad3-9242-4958-8\",\"name\":\"Testac380ad3-9242-4958-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:21:39.7639298Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:21:39.7639298Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test71fac46b-5c7f-420d-9\",\"name\":\"Test71fac46b-5c7f-420d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:54:00.6689223Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:54:00.6689223Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0d61a64-d510-4ef9-a\",\"name\":\"Testb0d61a64-d510-4ef9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:11:39.8407325Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:11:39.8407325Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test86c726fa-48a5-4a5a-a\",\"name\":\"Test86c726fa-48a5-4a5a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:24:02.0222694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:24:02.0222694Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5980e2bd-03d4-4565-9\",\"name\":\"Test5980e2bd-03d4-4565-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:51:39.9126155Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:51:39.9126155Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste043c2f4-882f-4552-b\",\"name\":\"Teste043c2f4-882f-4552-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:01:39.6096595Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:01:39.6096595Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75c11604-1975-45f8-9\",\"name\":\"Test75c11604-1975-45f8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:24:01.2383064Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:24:01.2383064Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaa6f6641-9ed9-43be-9\",\"name\":\"Testaa6f6641-9ed9-43be-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:45:16.617112Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:45:16.617112Z\"},\"identity\":{\"principalId\":\"0745d086-db0e-4fb1-95f0-8aebd32ba241\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7198b83b-6b3a-4dc3-8\",\"name\":\"Test7198b83b-6b3a-4dc3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T10:05:16.8085486Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T10:05:16.8085486Z\"},\"identity\":{\"principalId\":\"e03c7b85-3cc7-42b3-9da7-22dfbbfeaada\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4030ec65-8515-4a0d-a\",\"name\":\"Test4030ec65-8515-4a0d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T10:12:54.6732148Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T10:12:54.6732148Z\"},\"identity\":{\"principalId\":\"fa1d7f60-3a49-4b2a-bad8-28375a528cb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcafc9570-2b83-4cce-8\",\"name\":\"Testcafc9570-2b83-4cce-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:01:40.8270471Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:01:40.8270471Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2df465b-b2ac-496d-b\",\"name\":\"Teste2df465b-b2ac-496d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:11:39.8547744Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:11:39.8547744Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test76e0e1c1-d5c5-4938-8\",\"name\":\"Test76e0e1c1-d5c5-4938-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:21:39.6737222Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:21:39.6737222Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf11e191c-b75b-4123-8\",\"name\":\"Testf11e191c-b75b-4123-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T12:54:01.7129779Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T12:54:01.7129779Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc54697fe-46d1-4bb5-a\",\"name\":\"Testc54697fe-46d1-4bb5-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T14:32:54.5977307Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T14:32:54.5977307Z\"},\"identity\":{\"principalId\":\"902b6500-529a-4a15-a5a8-e726a7bb0eb1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf4e0b6d9-697d-4ad6-b\",\"name\":\"Testf4e0b6d9-697d-4ad6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:21:40.1775459Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:21:40.1775459Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdfbed109-a6c5-480a-b\",\"name\":\"Testdfbed109-a6c5-480a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:31:40.9668291Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:31:40.9668291Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb5b31ad2-6791-42b0-9\",\"name\":\"Testb5b31ad2-6791-42b0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:32:55.160759Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:32:55.160759Z\"},\"identity\":{\"principalId\":\"1bbba220-ae0c-4bfd-952c-f941a0937249\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcc3925b2-3a24-4ce5-8\",\"name\":\"Testcc3925b2-3a24-4ce5-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T16:24:02.9486206Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T16:24:02.9486206Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc2e2ef11-b48e-4722-a\",\"name\":\"Testc2e2ef11-b48e-4722-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T18:12:55.747161Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T18:12:55.747161Z\"},\"identity\":{\"principalId\":\"d21101cd-e5c4-4d45-98d9-8846b3d99eab\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf93ad24-0371-4edc-a\",\"name\":\"Testbf93ad24-0371-4edc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T18:21:40.4476683Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T18:21:40.4476683Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf04bf269-e865-4f9f-8\",\"name\":\"Testf04bf269-e865-4f9f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T19:05:18.7879983Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T19:05:18.7879983Z\"},\"identity\":{\"principalId\":\"6a131146-4e94-453b-abcb-2bc7c24e5f37\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaa56ce54-d5e3-49a4-a\",\"name\":\"Testaa56ce54-d5e3-49a4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T20:32:55.8138899Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T20:32:55.8138899Z\"},\"identity\":{\"principalId\":\"5b0586b9-fe11-4d77-ab7a-84e05ea69656\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfde27719-7f42-4eb3-9\",\"name\":\"Testfde27719-7f42-4eb3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T20:41:40.2770381Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T20:41:40.2770381Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbb708d2c-7750-490e-9\",\"name\":\"Testbb708d2c-7750-490e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T21:01:40.4120533Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T21:01:40.4120533Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9f7bb514-95da-4805-b\",\"name\":\"Test9f7bb514-95da-4805-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T21:11:39.7696278Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T21:11:39.7696278Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl\",\"name\":\"deidServiceTestPl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"tag1\":\"newtag\"},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-03T21:34:12.3839943Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-03T21:34:12.3839943Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://erhdhgfdc7gfbnha.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl/privateEndpointConnections/newPL.205ebeb8-8c5e-4a53-af5e-65a8b1742b6d\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/newPL\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl/privateEndpointConnections/deidprivend.f9aba2fb-1155-47fa-9340-fe3e400bfdb2\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/deidprivend\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/testPL\",\"name\":\"testPL\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-10T21:12:59.6131826Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-10T21:12:59.6131826Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fjbkh4cqdpe8hwet.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/sysAssignedId\",\"name\":\"sysAssignedId\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"tag1\":\"newtag\"},\"systemData\":{\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-13T17:37:14.3387424Z\"},\"identity\":{\"principalId\":\"9a1d969f-e6a8-49b4-8b7e-a5433995abb2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hvadefchfua6ftev.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6321f916-25fb-4fc8-8\",\"name\":\"Test6321f916-25fb-4fc8-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-21T16:40:05.0949754Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-21T16:40:05.0949754Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bdawgsb7hrbbe6bn.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test541e6e55-704c-44f2-a\",\"name\":\"Test541e6e55-704c-44f2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-22T03:20:10.7601885Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-22T03:20:10.7601885Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f6akaxfpafdxh0ar.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testPL2\",\"name\":\"testPL2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-24T19:33:59.0327006Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-24T19:33:59.0327006Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://avazb0ghcmcgakb2.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testPL2/privateEndpointConnections/deidPrivateEndpoint321.96cf71d4-af45-45be-96f2-3d8fc595ca36\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/deidPrivateEndpoint321\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved by johndoe@company.com\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste7a29369-726b-4c84-a\",\"name\":\"Teste7a29369-726b-4c84-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-25T21:20:06.3244568Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-25T21:20:06.3244568Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c8dagne0d5emhya9.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f29e51f-926a-4677-9\",\"name\":\"Test7f29e51f-926a-4677-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-25T21:20:30.3680815Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-25T21:20:30.3680815Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hnaze8acb6dvhndg.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testDeidPlManual\",\"name\":\"testDeidPlManual\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-15T22:24:50.2812382Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-15T22:24:50.2812382Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzcqfdgrfkg2huhw.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled\",\"name\":\"pltestdisabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T19:16:27.8732354Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fzesd4dfenh6bsd9.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe770d1b-6980-4e18-9\",\"name\":\"Testbe770d1b-6980-4e18-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-17T20:23:18.4418245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-17T20:23:18.4418245Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fad7bjbneth9gzdf.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testcny002\",\"name\":\"testcny002\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-17T21:09:44.1667859Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T21:09:44.1667859Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efbedbeebubfdebs.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test84095079-4b98-4ec9-9\",\"name\":\"Test84095079-4b98-4ec9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-17T21:46:16.0393478Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-17T21:46:16.0393478Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4a5c3deevd3ezf4.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testdeidplauto2\",\"name\":\"testdeidplauto2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-17T22:29:37.8729156Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T22:29:37.8729156Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buf4cndqfaesgtcg.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testdeidplauto2/privateEndpointConnections/newPLManualTest123.e6577b74-5744-4234-8cf6-111c19d4057e\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/newPLManualTest123\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled2\",\"name\":\"pltestdisabled2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T00:28:31.2703799Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T00:28:31.2703799Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dycxeub6gfbcbzas.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled3\",\"name\":\"pltestdisabled3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T04:35:01.0885005Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T04:35:01.0885005Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c5cne0gtaxc2dzcx.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestenabled\",\"name\":\"pltestenabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T04:35:32.6234762Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T04:53:43.2223465Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gja2azg9bkcmbkgv.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste433caae-9c9b-4c16-b\",\"name\":\"Teste433caae-9c9b-4c16-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T14:37:31.2052991Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:14.3152293Z\"},\"identity\":{\"principalId\":\"1e798ce0-7a7a-4ee3-aa8f-7fc9bb9f707f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9h7b5a2ewg6e5du.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test91886748-2f52-447d-9\",\"name\":\"Test91886748-2f52-447d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T16:26:16.5199502Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-18T16:26:16.5199502Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hqg6h7cqecc0f2fy.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-sdk-dev-gthomas/providers/microsoft.healthdataaiservices/deidservices/deid-sdk-dev-gthomas-eup\",\"name\":\"deid-sdk-dev-gthomas-eup\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T17:13:41.2375465Z\",\"lastModifiedBy\":\"gthomas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-24T23:57:18.5416697Z\"},\"identity\":{\"principalId\":\"0129a479-6294-4906-9e12-2e9e05dbefb7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dpg2gkb3a2bkfwg3.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testda62732d-0828-4397-b\",\"name\":\"Testda62732d-0828-4397-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T22:17:32.6395661Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:15.9234672Z\"},\"identity\":{\"principalId\":\"ed6bad84-1d9b-43b8-a161-1919e5dc00ed\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmavgea3baddhrgq.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cnydisableddelete\",\"name\":\"cnydisableddelete\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T01:08:30.63945Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T02:27:24.6559072Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hterfhf2e5aebfgx.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cny002alexa\",\"name\":\"cny002alexa\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T04:45:26.5402585Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T04:45:26.5402585Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d6a3cpanhvekf7d2.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cny002alexaenabled\",\"name\":\"cny002alexaenabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T05:04:17.5859606Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T05:05:37.6592602Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h2egckfgfpaaeqba.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6875fb8c-481b-44fb-b\",\"name\":\"Test6875fb8c-481b-44fb-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-19T18:07:33.8763819Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:16.6336799Z\"},\"identity\":{\"principalId\":\"41d0b01d-da21-42e0-952b-6d9008ea5bab\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gecxhydbh2cnerdb.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0722\",\"name\":\"test0722\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-22T13:19:49.4618059Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-23T21:20:04.7661563Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8f6c9axgyanfdaj.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0722/privateEndpointConnections/test0722pl.72fabf6a-01c1-4911-88f5-a96420ceb718\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0722pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1a880c9-e1d7-414e-8\",\"name\":\"Teste1a880c9-e1d7-414e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-23T02:15:13.2322497Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-23T02:15:13.2322497Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fnhza2e9avd8htep.api.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa073patch\",\"name\":\"alexa073patch\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-23T18:38:37.804077Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:29:08.1219026Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqadfygeagdkhygp.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0723\",\"name\":\"test0723\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-23T21:36:14.4676287Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-23T22:14:49.0339527Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brg9dsapavg2c6dk.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0723/privateEndpointConnections/test0723pl.3de8fd1e-d76f-4286-b90e-e4a75d9be521\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0723pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0725\",\"name\":\"test0725\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-25T21:35:17.4224809Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T22:50:45.2266916Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e5apabg2hnche4bv.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0725auto\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0725/privateEndpointConnections/test0725auto.99c3fb28-c9c2-4764-9754-962a5661c1ff\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0725manual\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0725/privateEndpointConnections/test0725manual.71316cb7-8f96-4078-8b93-1a55acc21f85\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725\",\"name\":\"alexa0725\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-25T23:54:40.0387919Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-25T23:55:33.4079214Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dvc4gmgpfdctc0c3.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725again2\",\"name\":\"alexa0725again2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-26T00:20:50.7189692Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:27:38.3288062Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g7d4e7hpdza2hgca.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725again3\",\"name\":\"alexa0725again3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-26T00:43:08.1376806Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:44:02.8776556Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h5emfaatg3bfefaz.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0729\",\"name\":\"test0729\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-29T13:30:21.5934928Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-16T20:47:56.5044908Z\"},\"identity\":{\"principalId\":\"075c8b2d-a1e2-4948-b9bd-56ae75b0072c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpf6cvhzh7g0h0dj.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0729v1\",\"name\":\"test0729v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T00:22:08.4404723Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-30T16:38:50.1818986Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://and2dtdxgnfcedd0.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/privateendpoint2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0729v1/privateEndpointConnections/privateendpoint2.ffc3ed5a-0f5b-4cd5-acc7-5d417356a16f\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0730v1\",\"name\":\"test0730v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T16:39:22.9446072Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-05T23:04:28.1814769Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ezcfh6hpdjf4e6as.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0730v1/privateEndpointConnections/test0806.e9cd3a40-e666-4c80-9aea-3d514c9c2bd3\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/test0806\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"}}}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0730demo\",\"name\":\"test0730demo\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T17:14:54.7706591Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-30T17:14:54.7706591Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c6czgkabb6gnh7d9.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801all\",\"name\":\"test0801all\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T00:09:57.9314888Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T00:07:40.714Z\"},\"identity\":{\"principalId\":\"4e596332-04f0-4743-95bf-e9c6ce3c76c0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://arh2bwaaeqewehhx.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801public\",\"name\":\"test0801public\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T00:58:54.8826933Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T00:07:41.903045Z\"},\"identity\":{\"principalId\":\"c6048863-1678-4608-a185-1e2bf49d250e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmdtg3dag0axaxfe.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801deid\",\"name\":\"test0801deid\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T12:24:14.486183Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T18:57:54.0730875Z\"},\"identity\":{\"principalId\":\"38185316-41b3-4dac-b0d9-b19efdb3be99\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoodeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-asmahmoodeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f9dybbdshvend4dz.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809euap\",\"name\":\"plval0809euap\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T21:43:51.418236Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-28T16:50:02.1741996Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eseebtd3ajaxgxh4.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-euap2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809euap/privateEndpointConnections/pl-euap2.f110014f-e8aa-4917-8663-e2e618c52017\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0809\",\"name\":\"alexa0809\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:46:47.3233012Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:46:47.3233012Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvffgqfecnhgaxef.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/alexa0809/privateEndpointConnections/peeuap.5f1a0318-ddf4-40f8-85b8-ce58ee5e85f7\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeuap\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0809/privateEndpointConnections/peeus0814manual.aeec8437-917c-470b-b148-b344a67efab9\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0814manual\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"approved pe\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/alexa0809/privateEndpointConnections/testpecrossregion.c8058284-0f31-4dd2-838d-7b966c490e9b\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpecrossregion\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814\",\"name\":\"test0814\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-14T20:14:19.4225466Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-30T20:20:46.1466584Z\"},\"identity\":{\"principalId\":\"5d8d9efd-4649-47d5-8a41-46df205b6a9d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvbhevf3bwfkg8h7.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0814manual2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/peeus0814manual2.c199e81e-9008-4e36-b847-ba1d0e98a57d\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testpe2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/testpe2.28ca2e9a-5e25-4870-b7af-5529c50605cb\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"reject\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/testpl.068fad0b-c8ac-40d7-a0fb-dccebc629644\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/pev2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814/privateEndpointConnections/pev2.d875c1a8-f613-49da-ab46-16eaf0b79ba2\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/private-endpoint\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814/privateEndpointConnections/private-endpoint.3db275cc-6678-4cde-824f-0cae45812cc7\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/demo0815auto\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/demo0815auto.f290340a-f490-4c8f-b4b7-90b76afe1e12\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/demo0815manual\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/demo0815manual.c5c54b02-454f-43ea-8e56-0f054096a405\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.HealthDataAIServices/DeidServices/msoenntest\",\"name\":\"msoenntest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"msoennichsen@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-19T18:51:13.8508128Z\",\"lastModifiedBy\":\"msoennichsen@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T18:57:11.3280852Z\"},\"identity\":{\"principalId\":\"84bdc5ea-f750-44d4-9b6d-bd2af1d6eb37\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-msoennicdeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5ffdxhkg7aua4g0.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/SwaggerResource\",\"name\":\"SwaggerResource\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-24T21:05:12.2878593Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-24T21:05:12.2878593Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gch5gycpe2f6apbb.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny-pl\",\"name\":\"syntheticscny-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T20:16:50.9705435Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:16:50.9705435Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aab7gvc5hkh6ejhz.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny-pl/privateEndpointConnections/pe-syntheticscny-pl.f8e97798-4c5b-406f-8c4e-692bc6413fa1\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscny-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuap1\",\"name\":\"testeuap1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-15T21:47:03.1351325Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-15T21:47:03.1351325Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuapfix\",\"name\":\"testeuapfix\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-16T00:04:52.5975153Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-16T00:04:52.5975153Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e0h7f9cycfhwevg6.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuapfix/privateEndpointConnections/plfix.031101be-b2b3-4373-921d-4b0c25d3e530\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/plfix\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/test1015\",\"name\":\"test1015\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-16T00:09:04.4778867Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-16T00:09:04.4778867Z\"},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/deid-identity\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://atahbsdcdnahhveq.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8b3445a3-66e1-4f46-b\",\"name\":\"Test8b3445a3-66e1-4f46-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T15:44:03.6480108Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T15:44:03.6480108Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h7b4hxehbchtf2at.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5cf9363c-c402-4651-9\",\"name\":\"Test5cf9363c-c402-4651-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T15:54:03.5592076Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T15:54:03.5592076Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8cfd3dpe0hgdhev.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test67777892-f34f-42a1-a\",\"name\":\"Test67777892-f34f-42a1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T16:54:03.7993255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T16:54:03.7993255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b2a5frcdaph0endu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6c3a47dc-3080-403f-a\",\"name\":\"Test6c3a47dc-3080-403f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T17:04:04.4150641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T17:04:04.4150641Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b0dhe5cgctagemez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa5ecd3c1-ec0f-4876-9\",\"name\":\"Testa5ecd3c1-ec0f-4876-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T18:35:19.7507449Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:49:57.6127233Z\"},\"identity\":{\"principalId\":\"f346e0d5-5aa4-4f16-aa68-42934e5de67c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fwdwg7ecd8b3hqbb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test33b3e1ec-6107-4e50-8\",\"name\":\"Test33b3e1ec-6107-4e50-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T21:24:04.8223969Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T21:24:04.8223969Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hjh3d0g8g4fka9h7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a5392dd-790e-4ce2-b\",\"name\":\"Test7a5392dd-790e-4ce2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T21:34:04.5725778Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T21:34:04.5725778Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3gffebcfwegbrhu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf463ecca-53a7-4f6a-a\",\"name\":\"Testf463ecca-53a7-4f6a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T22:34:04.5563856Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T22:34:04.5563856Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bvhzb3g3g6guc4es.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test465ab8ce-688b-4413-9\",\"name\":\"Test465ab8ce-688b-4413-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T23:05:19.2592465Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:49:59.5223636Z\"},\"identity\":{\"principalId\":\"0bc19699-0f82-474b-b0fb-3324c24d77be\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://drh2agfyefczfthm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e7fba18-0942-4233-a\",\"name\":\"Test5e7fba18-0942-4233-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T06:24:06.2187878Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T06:24:06.2187878Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0fvchf7b5echzd6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9650ee05-5865-4343-b\",\"name\":\"Test9650ee05-5865-4343-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T07:24:05.6036751Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T07:24:05.6036751Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f5f6g6gadxcyfac5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test56f0398b-ce2e-4ba6-a\",\"name\":\"Test56f0398b-ce2e-4ba6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T20:44:07.732736Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T20:44:07.732736Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bjbmaff9bngfbjg2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdd9de45f-94f7-4721-b\",\"name\":\"Testdd9de45f-94f7-4721-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T00:55:23.5509592Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:28.5078351Z\"},\"identity\":{\"principalId\":\"f3cedb7e-8fd9-4917-a0ad-508c36399bff\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g5c4ghgjajcsffdy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbae1b7b5-fbbe-4243-a\",\"name\":\"Testbae1b7b5-fbbe-4243-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T09:55:24.5542831Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:30.2158476Z\"},\"identity\":{\"principalId\":\"fa466f94-3dbe-488f-9908-1ae510fa0718\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://btdgfgffeqf8hfam.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadd5435b-cc26-43fb-b\",\"name\":\"Testadd5435b-cc26-43fb-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T11:05:25.7167001Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:30.8115536Z\"},\"identity\":{\"principalId\":\"a3c8a647-185b-4fc2-8e87-770db3561e77\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5fac3e7gvbrbre5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8314a48b-97b3-4e9a-8\",\"name\":\"Test8314a48b-97b3-4e9a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T12:05:26.1936541Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:31.3584383Z\"},\"identity\":{\"principalId\":\"588de316-33ff-4914-a47a-9152e514e4d2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dfhucwhnhwh9ggbj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1a4ed21-cd5e-4948-a\",\"name\":\"Teste1a4ed21-cd5e-4948-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T06:55:34.9426332Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:33.6608297Z\"},\"identity\":{\"principalId\":\"00c399d8-7a5a-4508-a85e-da88a67acabf\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c8dyegbgbvcrhzht.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testeb4614b8-1a4e-4d05-9\",\"name\":\"Testeb4614b8-1a4e-4d05-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T07:05:34.7114373Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:34.2817688Z\"},\"identity\":{\"principalId\":\"4be5647d-80af-4044-b75e-04fa2da36c13\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aub2c8gec4aphphs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test593259f4-40e6-458a-8\",\"name\":\"Test593259f4-40e6-458a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T07:34:19.7404327Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T07:34:19.7404327Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bte2c9c8bzgsbfcs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test32674fcc-1bbc-42b9-a\",\"name\":\"Test32674fcc-1bbc-42b9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T08:44:20.0737467Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T08:44:20.0737467Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7d4c5fpdbcqfee0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa56e8022-df18-4406-a\",\"name\":\"Testa56e8022-df18-4406-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T09:25:35.0244097Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:34.6914264Z\"},\"identity\":{\"principalId\":\"d40d6dd4-3ee7-47cc-a1df-5e843dff46c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huh5e2bja7b4hvdt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb9987768-d6b1-45d2-a\",\"name\":\"Testb9987768-d6b1-45d2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T10:14:20.2693472Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T10:14:20.2693472Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d2ceg2drf4ambea0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf209e3a0-c445-4f53-b\",\"name\":\"Testf209e3a0-c445-4f53-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T10:54:20.2592306Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T10:54:20.2592306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://exgyc5hrdeg8b0ca.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste83299b4-3af3-46d4-b\",\"name\":\"Teste83299b4-3af3-46d4-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T11:25:36.4872367Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:39.8407735Z\"},\"identity\":{\"principalId\":\"a88238d9-d06f-4a91-9629-75db4e9aede9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0cwerffhpatb7aa.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test548883fc-610e-42a0-b\",\"name\":\"Test548883fc-610e-42a0-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T14:45:35.6917131Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:40.4624112Z\"},\"identity\":{\"principalId\":\"a227c313-5fbf-4510-8ea5-28be7d26425c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkh5e5a0cbg5cah9.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoneastus\",\"name\":\"jovinsoneastus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T16:21:32.2088677Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T00:03:41.9236289Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a9dua3ezhee5bahz.api.eus001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.Network/privateEndpoints/jovinsoneastys-pl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoneastus/privateEndpointConnections/jovinsoneastys-pl.0715aad2-a357-49ab-9909-c383bb40227d\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testeuspl\",\"name\":\"testeuspl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T17:05:34.7131699Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-28T17:05:34.7131699Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f2hbb3cucbddf8aq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testeuspl/privateEndpointConnections/petest.3e208034-9539-4be2-ad91-3bd069acae2d\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/petest\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg_dev_leakassab/providers/microsoft.healthdataaiservices/deidservices/deid-leakassab\",\"name\":\"deid-leakassab\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"leakassab@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T23:48:44.2725718Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:41.0083465Z\"},\"identity\":{\"principalId\":\"71b89795-6f5b-4903-b422-bab5e5f00d92\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfdsagcygshmehgu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test346052ed-6f6d-4b33-9\",\"name\":\"Test346052ed-6f6d-4b33-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T02:15:37.3172628Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:41.6262298Z\"},\"identity\":{\"principalId\":\"79aa25ec-b034-4b94-b017-6f05cbeee79f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gzf9d0araqh8ethr.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test38a886c3-2c32-415a-8\",\"name\":\"Test38a886c3-2c32-415a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T02:44:22.3535798Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T02:44:22.3535798Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bxcmdwakd7e7amb3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa03107f2-b261-4205-a\",\"name\":\"Testa03107f2-b261-4205-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T03:15:37.2240475Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:42.120944Z\"},\"identity\":{\"principalId\":\"a7352424-7276-492e-a536-ba8da71f93c7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://czaeekhjbegkbpc4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test77c49e23-6752-4c01-8\",\"name\":\"Test77c49e23-6752-4c01-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T06:45:39.1518773Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:42.6853523Z\"},\"identity\":{\"principalId\":\"856eb24c-d56f-425e-8f30-325db7e44891\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fuh0dwceauavetcm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb1361529-e78c-493f-a\",\"name\":\"Testb1361529-e78c-493f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T07:14:21.9690027Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T07:14:21.9690027Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ceeud9e5e6cnhhg6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0d42fb2-8f09-4b56-8\",\"name\":\"Testb0d42fb2-8f09-4b56-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T09:34:22.9446904Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T09:34:22.9446904Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gthcf0ccf8abaug3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test50226ab8-4a1b-41a4-a\",\"name\":\"Test50226ab8-4a1b-41a4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T09:55:39.5586516Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:43.1935443Z\"},\"identity\":{\"principalId\":\"e523578b-c28b-479b-8982-dd6eab50a128\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cphhf7bcg0hgfyg5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testda699e13-07bf-4a2f-8\",\"name\":\"Testda699e13-07bf-4a2f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T11:05:39.0788447Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:43.7351515Z\"},\"identity\":{\"principalId\":\"6e9d8013-482e-4992-b7d1-5d3bc0620c0e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfb2dbh3ghgjf9du.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd5d747c3-4c6d-4b15-b\",\"name\":\"Testd5d747c3-4c6d-4b15-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T14:04:23.8875945Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T14:04:23.8875945Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buateag2cjhfd2bw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.HealthDataAIServices/DeidServices/testing\",\"name\":\"testing\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"msoennichsen@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-29T22:10:02.2149644Z\",\"lastModifiedBy\":\"msoennichsen@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-29T22:10:02.2149644Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://akbcbhd4gpg8h5au.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc27dd89d-23d9-4a3c-9\",\"name\":\"Testc27dd89d-23d9-4a3c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T01:14:24.8592454Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T01:14:24.8592454Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fta2epatd3f4edez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ac675c0-e685-4299-9\",\"name\":\"Test5ac675c0-e685-4299-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T02:14:25.1933926Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T02:14:25.1933926Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3c9f7bjcud9e5ej.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testafe81e7c-7562-42ca-a\",\"name\":\"Testafe81e7c-7562-42ca-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T02:35:41.7566493Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:44.3316408Z\"},\"identity\":{\"principalId\":\"36af6e12-6c87-4b5b-af8e-c39ed6770d3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dedbcng9cpakfraf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92a71375-aaf6-49e3-b\",\"name\":\"Test92a71375-aaf6-49e3-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T07:54:25.6861814Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T07:54:25.6861814Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g4hzcqa4gmbvcdbx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test58bfd760-aa80-4662-a\",\"name\":\"Test58bfd760-aa80-4662-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T08:05:41.0908656Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:44.7808303Z\"},\"identity\":{\"principalId\":\"c0776d81-7979-4cc7-8d3d-281c6ac53d09\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g3bpbegcedggb5g9.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3520cf4b-8f9e-4a29-9\",\"name\":\"Test3520cf4b-8f9e-4a29-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T11:14:26.0450757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T11:14:26.0450757Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f7a8cfgxevcvgdde.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa525cb10-6ce0-4db0-a\",\"name\":\"Testa525cb10-6ce0-4db0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T11:34:29.647141Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-31T11:34:29.647141Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e5ejebe3h0a6bbgk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test76d1ddd8-dfba-4f18-a\",\"name\":\"Test76d1ddd8-dfba-4f18-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T12:35:45.3195802Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:52.7162847Z\"},\"identity\":{\"principalId\":\"a994b509-4be4-478d-a5f3-b5c931117bda\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://asgycvf0d4fnanh3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf243d998-0518-41c2-a\",\"name\":\"Testf243d998-0518-41c2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T14:45:46.3399087Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:53.378961Z\"},\"identity\":{\"principalId\":\"79acc55a-8910-447e-9ca4-7bb7245c4b7a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hud9ekavapf3fwet.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9b988de0-5d15-499d-b\",\"name\":\"Test9b988de0-5d15-499d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T21:35:46.652731Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:53.973208Z\"},\"identity\":{\"principalId\":\"4dc65534-be35-4dce-b14a-becd8eae7e45\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c2ecgfbvcec4h8h2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcea94dc1-27af-4ad2-b\",\"name\":\"Testcea94dc1-27af-4ad2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T21:44:31.3114152Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-31T21:44:31.3114152Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7g6hfhshac7ewfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test418fe284-34c6-4a5c-9\",\"name\":\"Test418fe284-34c6-4a5c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T01:46:20.8617847Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T01:46:20.8617847Z\"},\"identity\":{\"principalId\":\"2847d5db-8407-4666-a2b5-ca5e27ea985b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aedda6aeazemepcj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2dec70a3-a4c4-4883-b\",\"name\":\"Test2dec70a3-a4c4-4883-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T04:55:05.9148319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T04:55:05.9148319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adhcg7bvb2h0d9hn.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test25769ffe-af47-45e0-9\",\"name\":\"Test25769ffe-af47-45e0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T04:56:22.1680743Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T04:56:22.1680743Z\"},\"identity\":{\"principalId\":\"31ff749c-ccc2-4906-ba3e-130dc99dc112\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a6fkftadd6cngpgt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb770ec70-1ff0-400b-b\",\"name\":\"Testb770ec70-1ff0-400b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T05:05:06.2580805Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T05:05:06.2580805Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fqfdcwa8bdg9dpcf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa801711d-f24d-4021-9\",\"name\":\"Testa801711d-f24d-4021-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-11T08:21:51.2658018Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-11T08:21:51.2658018Z\"},\"identity\":{\"principalId\":\"4c0557c9-ac85-4a1e-a3b2-da80eaf232d0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hqfcebgqb2a9dpaj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d288a28-4ed9-4177-b\",\"name\":\"Test5d288a28-4ed9-4177-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-17T18:15:30.2225705Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-17T18:15:30.2225705Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b8erb8byenfrg3fz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0917\",\"name\":\"test0917\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-17T18:20:24.8225773Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-17T18:20:24.8225773Z\"},\"identity\":{\"principalId\":\"4356292b-b98b-4d57-8fb8-8a149f31076a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fzasaceeanhedmhx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste3bb74fd-54a0-43db-a\",\"name\":\"Teste3bb74fd-54a0-43db-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T03:05:30.9577748Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T03:05:30.9577748Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ctdkachwcxaaf3bq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test915bd3e8-6945-4cf7-8\",\"name\":\"Test915bd3e8-6945-4cf7-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T06:16:46.6190316Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T06:16:46.6190316Z\"},\"identity\":{\"principalId\":\"0f63741b-9549-4df4-bdb5-e5aea428c470\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fqd2e8d8gqabc9ea.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd2c2822f-0379-4665-9\",\"name\":\"Testd2c2822f-0379-4665-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-19T14:15:38.3720649Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T14:15:38.3720649Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g0dya4hgc5gdfvcy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8d133811-e76b-4db9-a\",\"name\":\"Test8d133811-e76b-4db9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-23T15:17:06.0218185Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-23T15:17:06.0218185Z\"},\"identity\":{\"principalId\":\"750ef212-1043-4b5c-bf84-cdffced37da4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efhngqgcgcaca6bk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4308f593-0f10-4553-a\",\"name\":\"Test4308f593-0f10-4553-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:22:54.5595634Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:22:54.5595634Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://arezb5craxe6gbha.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9e73f0f6-7db9-4ac8-9\",\"name\":\"Test9e73f0f6-7db9-4ac8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:24:08.8116625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:24:08.8116625Z\"},\"identity\":{\"principalId\":\"7cf3259b-a8ea-4c3e-8886-28ac2a046be7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hdevcghfgedmfyfe.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test89c36db5-af20-49a1-8\",\"name\":\"Test89c36db5-af20-49a1-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:44:07.7172255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:44:07.7172255Z\"},\"identity\":{\"principalId\":\"a3c355dd-459a-4f7c-8775-e4690538aaac\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fea5gcgecue6g3eb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf4d421c7-8c39-4e7b-8\",\"name\":\"Testf4d421c7-8c39-4e7b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:54:08.5925421Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:54:08.5925421Z\"},\"identity\":{\"principalId\":\"feace456-c589-4ab9-9354-0d5b73a7b17d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bndjbyg2a9deaefs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc83ede2e-21ee-4098-b\",\"name\":\"Testc83ede2e-21ee-4098-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:55:51.8042721Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:55:51.8042721Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a8b0bcaee6c3ekhd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test580f898a-49e6-4ff2-9\",\"name\":\"Test580f898a-49e6-4ff2-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:02:53.9674657Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:02:53.9674657Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eyacejfbanfqejgg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfc4c3949-7578-44b6-9\",\"name\":\"Testfc4c3949-7578-44b6-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:04:08.4179249Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:04:08.4179249Z\"},\"identity\":{\"principalId\":\"dbe1c3c1-b6ce-4650-a8c1-aabe45ccbfe1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dgbab5dehqayd0h8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3c33ceb3-6fca-4d3a-b\",\"name\":\"Test3c33ceb3-6fca-4d3a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:05:52.384128Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:05:52.384128Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fvczdgczfqa5aeag.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5f3cb0e3-53e6-48dc-8\",\"name\":\"Test5f3cb0e3-53e6-48dc-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:07:07.8721977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:07:07.8721977Z\"},\"identity\":{\"principalId\":\"81cfff8e-9467-4bb1-84da-ab882a3f819f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://e6chhmbmg4eqd2d2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf779332-9182-4e44-a\",\"name\":\"Testbf779332-9182-4e44-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:12:54.595405Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:12:54.595405Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ethsbae5hxgpe0az.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd347078c-4992-4218-a\",\"name\":\"Testd347078c-4992-4218-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:14:07.8532725Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:14:07.8532725Z\"},\"identity\":{\"principalId\":\"144f9b3e-dff6-4024-9e79-5661e70dd81f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzg3gjgccsenbab6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test479c1eff-43d1-46b6-8\",\"name\":\"Test479c1eff-43d1-46b6-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:17:08.0531881Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:17:08.0531881Z\"},\"identity\":{\"principalId\":\"f1d7c7d9-5c01-4235-9dbb-c6b8c7d24658\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fcevhcb3f9d2ddgz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb315f477-17f3-491c-8\",\"name\":\"Testb315f477-17f3-491c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:22:53.4588323Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:22:53.4588323Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dqhncmdqf7caaaeq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test42b4dfeb-3aa6-455a-8\",\"name\":\"Test42b4dfeb-3aa6-455a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:25:52.0604626Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:25:52.0604626Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h7dpa5hyegbrc9es.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9690c89a-8bb1-4dfb-a\",\"name\":\"Test9690c89a-8bb1-4dfb-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:32:53.5686881Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:32:53.5686881Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aycwfzfydhh3azh2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f470d36-ec33-42b7-a\",\"name\":\"Test7f470d36-ec33-42b7-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:35:51.8058708Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:35:51.8058708Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g0cgfgc7ajdaeeef.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6fff934d-605e-4df6-b\",\"name\":\"Test6fff934d-605e-4df6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:42:53.1345757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:42:53.1345757Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hgdsdhefdudhg3cx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa3d8495-f018-480b-9\",\"name\":\"Testfa3d8495-f018-480b-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:44:08.2153383Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:44:08.2153383Z\"},\"identity\":{\"principalId\":\"6ab384d2-5ecf-4d7e-8598-6ca18fa0e1ec\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://esdsg3fbcbbfg7eg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test70c4c87b-aa55-4528-a\",\"name\":\"Test70c4c87b-aa55-4528-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:55:52.1460493Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:55:52.1460493Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://abd9hefeeca0b4a7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdbdfed87-3b68-4092-8\",\"name\":\"Testdbdfed87-3b68-4092-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:57:07.3436085Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:57:07.3436085Z\"},\"identity\":{\"principalId\":\"9274a384-e27d-42e2-8c3c-a6b85fee897a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hjf7e8ghc5c3guh4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8f048f59-8d6b-4e09-8\",\"name\":\"Test8f048f59-8d6b-4e09-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:02:54.3896474Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:02:54.3896474Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h9facdephsg3etcu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa33d7162-26cf-422e-b\",\"name\":\"Testa33d7162-26cf-422e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:05:51.6715709Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:05:51.6715709Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a4eqd2dadmebgmcn.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test31ca4d54-68b3-4a53-8\",\"name\":\"Test31ca4d54-68b3-4a53-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:05:53.5889723Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:05:53.5889723Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eecgcye8a5fte3af.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc4df9124-1da8-44e8-b\",\"name\":\"Testc4df9124-1da8-44e8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:15:51.8454271Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:15:51.8454271Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://etdfbqcef6gtcnct.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb3b5cd63-4870-4711-9\",\"name\":\"Testb3b5cd63-4870-4711-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:47:07.0907309Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:47:07.0907309Z\"},\"identity\":{\"principalId\":\"a5b99819-de66-4d2a-8ec4-cd3a7dab813d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0b8g9f7gyd5aubk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8698c1bd-6daa-40c0-8\",\"name\":\"Test8698c1bd-6daa-40c0-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:02:53.7813795Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:02:53.7813795Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ehcnazchgcejhucc.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste0da86bb-bc73-456d-a\",\"name\":\"Teste0da86bb-bc73-456d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T13:07:07.5268999Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T13:07:07.5268999Z\"},\"identity\":{\"principalId\":\"014d266c-4c77-43c7-8af5-7c190456ad31\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://h3breuehdxdabdgz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2da15c47-fdf2-42d0-b\",\"name\":\"Test2da15c47-fdf2-42d0-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-26T18:06:02.4375998Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-26T18:06:02.4375998Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://guenekcyena4dgdj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus-pl\",\"name\":\"syntheticseus-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T21:07:59.6551376Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:07:59.6551376Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hra8hkghcjdvanhy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus-pl/privateEndpointConnections/pe-syntheticseus-pl.3ded7c36-1c24-4765-8320-386c4c1ef3fc\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticseus-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr-01/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdreus01\",\"name\":\"cchaobcdreus01\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-03T18:18:45.0275266Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T18:18:45.0275266Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dxdkg5c0gaaag9c0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testpldisabled\",\"name\":\"testpldisabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-14T19:14:19.2824911Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-14T19:14:19.2824911Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test57710f9d-f0b3-4825-b\",\"name\":\"Test57710f9d-f0b3-4825-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-15T15:19:34.4884593Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-15T15:19:34.4884593Z\"},\"identity\":{\"principalId\":\"6a073cf8-347c-432b-94f5-e66f942fd249\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ahh8gygufpand7ct.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/candelete\",\"name\":\"candelete\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-20T05:16:20.3981244Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-20T05:16:20.3981244Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aybraqbjhfbgf6e3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/azpwsh\",\"name\":\"azpwsh\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-20T05:57:23.0922259Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-20T05:57:23.0922259Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3c3dxdqaeendndf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus\",\"name\":\"syntheticseus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:05:54.1278213Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:07:22.2279447Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dharbharavdsaect.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa26b3347-fa92-4dbc-9\",\"name\":\"Testa26b3347-fa92-4dbc-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T01:43:57.0170716Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:51.2617536Z\"},\"identity\":{\"principalId\":\"8f264d85-9a0d-4f1e-8e5d-65a179941829\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://btgbgpg7czgmhydb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test785e9304-f25e-4ef8-b\",\"name\":\"Test785e9304-f25e-4ef8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T02:02:41.7866369Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T02:02:41.7866369Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://axehbdaedxdbcrdw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdfced180-6f55-40bf-8\",\"name\":\"Testdfced180-6f55-40bf-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T02:33:56.987299Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:52.3889988Z\"},\"identity\":{\"principalId\":\"86a5eafb-8cd1-4c7c-9ea3-786d969482fd\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e9daexfebhg3awgv.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test09019f67-5489-41cf-9\",\"name\":\"Test09019f67-5489-41cf-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T16:14:00.1910381Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:53.0058222Z\"},\"identity\":{\"principalId\":\"fcff4d9f-0be8-45b0-8c32-8feb0fd4dd0a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gjfmhxhcavc2bagu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste25a76cb-f142-42b9-8\",\"name\":\"Teste25a76cb-f142-42b9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T16:52:45.3134693Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T16:52:45.3134693Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adgxf8bcdqadcphz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d76b4cf-7662-4bfd-a\",\"name\":\"Test5d76b4cf-7662-4bfd-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T18:24:00.2605741Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:53.7145581Z\"},\"identity\":{\"principalId\":\"f6a4961f-4565-4387-8f6d-1de64ebe1924\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d4dccwevcddnewak.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testabcd2e92-de6e-4453-b\",\"name\":\"Testabcd2e92-de6e-4453-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T20:12:46.2080512Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T20:12:46.2080512Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g8degxd9exb0eccy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8277e68d-5264-4742-a\",\"name\":\"Test8277e68d-5264-4742-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T23:32:46.7822366Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T23:32:46.7822366Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://acbkajdkaaa9csbp.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6940a271-18eb-46d9-b\",\"name\":\"Test6940a271-18eb-46d9-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T02:44:02.4536637Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:54.3429847Z\"},\"identity\":{\"principalId\":\"a05f7ebe-35c3-4ac7-900c-d84c83d85ae0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcbtc0cza4cjdub4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2dc1139f-08b1-49cb-8\",\"name\":\"Test2dc1139f-08b1-49cb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T02:52:47.3669747Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-04T02:52:47.3669747Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cvfuagbhgkbahkfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2a5bd28-7de5-4204-8\",\"name\":\"Teste2a5bd28-7de5-4204-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T07:02:48.3732468Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-04T07:02:48.3732468Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hyc9aqb4btfrhphj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5871834c-b18c-4c28-b\",\"name\":\"Test5871834c-b18c-4c28-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T15:24:05.5915367Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:54.9737949Z\"},\"identity\":{\"principalId\":\"238e4836-9705-4c7d-9fc8-c18ba6a86dea\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8erbbe3bvg2bycq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-gthomasdeiddev009/providers/microsoft.healthdataaiservices/deidservices/gthomas-cli-deid-service\",\"name\":\"gthomas-cli-deid-service\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-06T17:57:32.8272399Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:00.4954843Z\"},\"identity\":{\"principalId\":\"4021988e-4656-4cd3-8207-93cf69cd9af4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5b9gjffeue5f0eb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-gthomasdeiddev009/providers/microsoft.healthdataaiservices/deidservices/gthomas-cli-deid\",\"name\":\"gthomas-cli-deid\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-06T20:14:51.7160954Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:01.3263731Z\"},\"identity\":{\"principalId\":\"39f2cf09-9ce0-4812-aa46-acc21f4b78be\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cng4c0budjaxcwfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd32cc208-760b-4361-b\",\"name\":\"Testd32cc208-760b-4361-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T09:53:04.2088507Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T09:53:04.2088507Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eggyg0c7bkckebdd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste76a072c-38bd-4c00-9\",\"name\":\"Teste76a072c-38bd-4c00-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T00:03:08.0003517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-08T00:03:08.0003517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fyerexethjbke0hh.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c03d46a-5afe-4a6c-a\",\"name\":\"Test4c03d46a-5afe-4a6c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T01:34:23.6364624Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:02.0555503Z\"},\"identity\":{\"principalId\":\"b37a7246-13d6-4d6d-96b2-624304918700\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a5bvgzg5hvdwcqcb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75f6cd6b-8cd0-483a-9\",\"name\":\"Test75f6cd6b-8cd0-483a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T03:23:08.1359355Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-08T03:23:08.1359355Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ayhfdff0fbccgpez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test48cb195e-2818-482a-a\",\"name\":\"Test48cb195e-2818-482a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T14:24:24.9025185Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:03.7572074Z\"},\"identity\":{\"principalId\":\"338328fc-7114-45ca-93c7-06cce1975d26\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ffh3b8gkh6gkb0f3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eus\",\"name\":\"plval0809eus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T18:32:09.6710255Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T18:32:09.6710255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://byfzdrh2fzddawe4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eus/privateEndpointConnections/peeus.2f055527-a9dd-4f2d-96a5-1373a0d1b334\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/peeus\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eus/privateEndpointConnections/peeustest.e73a3939-52d0-45d8-ab1b-8f5908c57705\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/peeustest\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eusv2\",\"name\":\"plval0809eusv2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:11:20.7050619Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:11:20.7050619Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deb7esd6bshyfkab.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eastus\",\"name\":\"plval0809eastus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T23:36:27.7953632Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T00:46:17.1865837Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bwbje2h0dqenfdan.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/eus0813en\",\"name\":\"eus0813en\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T17:27:27.981602Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-13T17:27:27.981602Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gqcudhaqfdb6huf4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0813eus\",\"name\":\"test0813eus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T22:03:12.6968366Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:46.1199566Z\"},\"identity\":{\"principalId\":\"e5c625b6-3ed8-49bd-ba34-b555e9030396\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g9a8f6a2g0fchzg4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0813\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Please approve my connection, thanks.\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0813eus/privateEndpointConnections/peeus0813.1162b02a-9511-4b71-a699-ef0f86782e70\"}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3fb04bac-8558-4c25-b\",\"name\":\"Test3fb04bac-8558-4c25-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-14T13:13:30.6451301Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-14T13:13:30.6451301Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dxd5hyg5gwgxf2cb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53c865a8-e209-49c6-b\",\"name\":\"Test53c865a8-e209-49c6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-14T16:55:47.7698702Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:47.8011606Z\"},\"identity\":{\"principalId\":\"c4cc8613-9007-435e-875f-d0de4165e0cf\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buf2f5bwarexgab5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Tested082d56-35dc-4aaf-8\",\"name\":\"Tested082d56-35dc-4aaf-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-16T00:44:49.8086187Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:48.7331827Z\"},\"identity\":{\"principalId\":\"7b7eb0b3-8581-4f6b-b69c-5270d674a2d4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dzg3gcaxdehjdrf6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc35e49b5-9c9f-45fb-8\",\"name\":\"Testc35e49b5-9c9f-45fb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-17T07:53:38.1009037Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-17T07:53:38.1009037Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gyabe9cbdkafepbb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7001a4b4-d6ae-4cb7-9\",\"name\":\"Test7001a4b4-d6ae-4cb7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-17T18:44:55.1906374Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:29.2220736Z\"},\"identity\":{\"principalId\":\"c27ac38d-22df-4086-9c49-8da20aa3d4b8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hde2aahffxgjavev.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9febe45f-f0f6-4b5b-a\",\"name\":\"Test9febe45f-f0f6-4b5b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-18T08:26:28.0625812Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:30.1418071Z\"},\"identity\":{\"principalId\":\"5d7cc055-b1bd-4a1b-a69e-9e37bed09c0b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fpasb5dmc0b3dvav.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test52b0b8e4-2690-4e9f-b\",\"name\":\"Test52b0b8e4-2690-4e9f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-20T16:03:52.0012532Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-20T16:03:52.0012532Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bgcweza3gsgmexhp.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test647418db-81d2-4c7a-9\",\"name\":\"Test647418db-81d2-4c7a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-20T22:43:52.3271505Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-20T22:43:52.3271505Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ede6egawbbg2gxba.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2e43b94b-5314-4805-8\",\"name\":\"Test2e43b94b-5314-4805-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T07:43:53.7556068Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-21T07:43:53.7556068Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aeeuhscmg3bsaxh8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9bec478f-3021-4b84-8\",\"name\":\"Test9bec478f-3021-4b84-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T09:05:09.7723564Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:33.6388298Z\"},\"identity\":{\"principalId\":\"ebb69717-c03f-4122-b350-f7f64a9456c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5f9ftgrbrcna5bm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8ed7114a-21bc-4837-8\",\"name\":\"Test8ed7114a-21bc-4837-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T11:15:09.4360491Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:34.4435565Z\"},\"identity\":{\"principalId\":\"b411d1ba-6bef-4508-b37e-00c5724948c3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gjbbgyhrddcmf3a8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4a94a19d-db3c-4b73-b\",\"name\":\"Test4a94a19d-db3c-4b73-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T13:25:09.3167565Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:35.50707Z\"},\"identity\":{\"principalId\":\"55c9788d-3a37-445f-aa2e-312bbb238258\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmawb5f6a3cdedf0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff4de099-42ae-4de3-9\",\"name\":\"Testff4de099-42ae-4de3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T16:55:11.1451351Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:36.3035088Z\"},\"identity\":{\"principalId\":\"d78f5778-7478-4ef4-a336-4c444ca3c936\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bae9apctcgd6fkag.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d52f902-5d97-45a6-a\",\"name\":\"Test5d52f902-5d97-45a6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T19:05:10.3089733Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:37.1029164Z\"},\"identity\":{\"principalId\":\"d13bbdf8-abaa-4663-88ee-3a7df2991df7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g6d4d3d7adfgb0cg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9104eab-d7c1-498b-b\",\"name\":\"Teste9104eab-d7c1-498b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T20:15:11.3046245Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:37.8939846Z\"},\"identity\":{\"principalId\":\"bdffe26d-6146-41f3-a010-b413c4ae14bb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b3hafmfgdje6e4cz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa3a325cd-276e-4b92-8\",\"name\":\"Testa3a325cd-276e-4b92-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T23:35:11.6873742Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:38.6439936Z\"},\"identity\":{\"principalId\":\"df9b6981-a613-4bfd-8c0b-6befa05c8aeb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cmh4hkd3hbdtecby.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test99312e4a-5283-4b4f-9\",\"name\":\"Test99312e4a-5283-4b4f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T02:55:10.6907352Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:01.061706Z\"},\"identity\":{\"principalId\":\"84026cb9-2bc7-44f6-9535-5ba3bd414d22\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gqc3b3d9dtcrejck.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea0405f4-fc15-4804-9\",\"name\":\"Testea0405f4-fc15-4804-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T06:15:11.7914388Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:01.7780035Z\"},\"identity\":{\"principalId\":\"0a3f366a-1924-4c57-889c-47c6e0e1a645\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ceeqbrdngzasb3gt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test57d01c2f-2309-4eaf-9\",\"name\":\"Test57d01c2f-2309-4eaf-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T10:45:12.083484Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:02.5239668Z\"},\"identity\":{\"principalId\":\"64c13767-e12f-4537-8391-d472a05082ca\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hke0hec8czd9asaw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf9d8a5f2-a2e6-40fe-b\",\"name\":\"Testf9d8a5f2-a2e6-40fe-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T14:25:12.9031661Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:03.2141795Z\"},\"identity\":{\"principalId\":\"a819b10e-88c7-4cb4-90a6-dbfe0253cb1d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bfhnbehdbpbragd5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5060aa6f-91bb-4664-9\",\"name\":\"Test5060aa6f-91bb-4664-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T22:45:14.4852819Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:05.4870227Z\"},\"identity\":{\"principalId\":\"11c2b2bc-c186-4916-a09b-18266819e2df\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cta8hkdnaehhb6ep.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcacc3fae-e5bf-4530-9\",\"name\":\"Testcacc3fae-e5bf-4530-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T09:15:14.2287089Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:06.2202225Z\"},\"identity\":{\"principalId\":\"d426f26f-a521-4d41-a045-cd783378e16c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d3gsbmccgpe2fabk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3633c48b-89b3-4406-8\",\"name\":\"Test3633c48b-89b3-4406-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T12:03:59.4224525Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-23T12:03:59.4224525Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a7hdevhmcycsh8cs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test91544ec5-3197-45b4-a\",\"name\":\"Test91544ec5-3197-45b4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T13:35:14.3210489Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:07.2072031Z\"},\"identity\":{\"principalId\":\"7831cc56-7ef4-4ce8-a1b7-fed9b0283197\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a2gua7ezcjb2gygz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testpleus2\",\"name\":\"testpleus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-01T06:38:59.6953715Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-01T06:38:59.6953715Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqdhdmhbdthab7du.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testpleus2/privateEndpointConnections/testpleus2-pe.e75a5e32-6543-4ec9-923d-b198008afbb2\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpleus2-pe\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a238827-6e2d-4496-8\",\"name\":\"Test7a238827-6e2d-4496-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T05:52:32.6163166Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T05:52:32.6163166Z\"},\"identity\":{\"principalId\":\"affee168-6f02-44f3-a3f8-c7a8292d142c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f8e0cjc6g6fcb6cx.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7606a1e1-905d-4b0c-b\",\"name\":\"Test7606a1e1-905d-4b0c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:10:07.4109967Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:10:07.4109967Z\"},\"identity\":{\"principalId\":\"d05def33-e601-48fd-a1a1-876314f1b1eb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fxb6gbhuejcscngc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcca612a4-b8f9-4062-a\",\"name\":\"Testcca612a4-b8f9-4062-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:21:20.3297431Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:21:20.3297431Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h2guhdhyg8h6h0da.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3bb3b22-387c-4665-9\",\"name\":\"Testf3bb3b22-387c-4665-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:31:20.367346Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:31:20.367346Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ckbsd4d3aaa0gmar.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7b6b6a45-cb81-4584-a\",\"name\":\"Test7b6b6a45-cb81-4584-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:38:53.3883786Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:38:53.3883786Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eva6gfdhetczfpft.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa825b64d-c278-4662-9\",\"name\":\"Testa825b64d-c278-4662-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:41:20.7574131Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:41:20.7574131Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hkhebcf4exenbkch.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test39d47bea-ada0-4625-8\",\"name\":\"Test39d47bea-ada0-4625-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:48:52.5953641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:48:52.5953641Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://byecg3cqgqdwcucd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test35886f50-4409-4d8c-b\",\"name\":\"Test35886f50-4409-4d8c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:52:32.9705776Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:52:32.9705776Z\"},\"identity\":{\"principalId\":\"9de84e1a-023a-4c72-9c46-02bab1cb1a7b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://azaah7ewd8czevhr.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9acbc1dc-3c29-495d-9\",\"name\":\"Test9acbc1dc-3c29-495d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:58:51.7648163Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:58:51.7648163Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://crenathdd9dqhbfb.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test333d3d33-d78e-475d-a\",\"name\":\"Test333d3d33-d78e-475d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:01:21.2447245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:01:21.2447245Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bbdgh4ethyhfbkba.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaaaf5fef-ef54-4b58-b\",\"name\":\"Testaaaf5fef-ef54-4b58-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:02:32.8710898Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:02:32.8710898Z\"},\"identity\":{\"principalId\":\"32147ee8-9d84-4320-bcbc-f2d217483ab0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a0g9hpcca0cvh9hu.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdc05c024-5ec2-4e47-9\",\"name\":\"Testdc05c024-5ec2-4e47-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:08:51.6459348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:08:51.6459348Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4hbe9ehe8d2dsh7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6bbc85f2-daed-4c3e-a\",\"name\":\"Test6bbc85f2-daed-4c3e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:11:20.9880638Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:11:20.9880638Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f3dqgzexg5bgaafg.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4c6a9ee-9023-4f58-a\",\"name\":\"Testd4c6a9ee-9023-4f58-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:12:33.973674Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:12:33.973674Z\"},\"identity\":{\"principalId\":\"d6dc4169-9664-4686-869c-a781977e76e1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://add3cqarc5dfh3ek.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1c8fb03-cffe-4d3b-8\",\"name\":\"Teste1c8fb03-cffe-4d3b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:21:21.3138133Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:21:21.3138133Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e9gaaqfva0ejhcbp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb7f12c69-ab20-45cc-a\",\"name\":\"Testb7f12c69-ab20-45cc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:28:52.59113Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:28:52.59113Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://g6f5gqgnh5d3azfg.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf0af8275-b36e-404b-a\",\"name\":\"Testf0af8275-b36e-404b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:31:20.577251Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:31:20.577251Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc60001bf-59e2-44da-8\",\"name\":\"Testc60001bf-59e2-44da-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:32:32.8926146Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:32:32.8926146Z\"},\"identity\":{\"principalId\":\"6e6234c2-f52d-4a5a-a467-ab50a9f7dea6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://crawg5gzafgne4ct.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test917a6607-34e1-4504-8\",\"name\":\"Test917a6607-34e1-4504-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:38:52.4924081Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:38:52.4924081Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e6b6c4ecdrgdaycj.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde5239a3-9848-435e-9\",\"name\":\"Testde5239a3-9848-435e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:51:21.6090854Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:51:21.6090854Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a9cbgnacfhcuf0aj.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2f76d8c1-e606-4aa0-9\",\"name\":\"Test2f76d8c1-e606-4aa0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:08:52.5343498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:08:52.5343498Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eedffagyg2b5fscx.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf861c4c6-45e7-4705-9\",\"name\":\"Testf861c4c6-45e7-4705-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:12:33.027495Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:12:33.027495Z\"},\"identity\":{\"principalId\":\"59aa473b-b49a-450a-8f93-4a82ffbc5e42\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hufcd6gdaqhgfjbp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9bd0646-3594-40ad-9\",\"name\":\"Teste9bd0646-3594-40ad-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:21:20.967923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:21:20.967923Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://crgsaee9dmb2f8g7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test77ad27d9-b285-4645-b\",\"name\":\"Test77ad27d9-b285-4645-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:22:33.6184753Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:22:33.6184753Z\"},\"identity\":{\"principalId\":\"1ab7d7ac-d5b3-40da-94a5-0aaf73b5e234\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfb6eqb7encnfjcw.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf288367-c5e9-42a9-9\",\"name\":\"Testbf288367-c5e9-42a9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:42:33.867541Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:42:33.867541Z\"},\"identity\":{\"principalId\":\"bd57709f-80f2-4084-9eca-c40a441055ad\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://cwdyg9ewc2ehgqdc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test403e02f9-aad8-4c29-a\",\"name\":\"Test403e02f9-aad8-4c29-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:12:34.1020629Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:12:34.1020629Z\"},\"identity\":{\"principalId\":\"c136cdff-faa6-4142-b418-98d7f73783f4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fyh0dghwcufrckd7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd2e5c89f-aca2-4ad3-8\",\"name\":\"Testd2e5c89f-aca2-4ad3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:21:22.8481879Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:21:22.8481879Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://ghdgaycteadaeshn.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea3b2f2c-dbf4-4c35-8\",\"name\":\"Testea3b2f2c-dbf4-4c35-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:11:21.7332385Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:11:21.7332385Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b7dmcgbva7h8dphw.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test83a231ca-ab94-4079-b\",\"name\":\"Test83a231ca-ab94-4079-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T18:42:37.4122264Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T18:42:37.4122264Z\"},\"identity\":{\"principalId\":\"b74e64a9-ae66-4211-ac6a-f78b419aa85c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c8ebhughecajcnfa.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test55be8efc-3cef-458a-a\",\"name\":\"Test55be8efc-3cef-458a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T19:01:24.4218521Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T19:01:24.4218521Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"publicNetworkAccess\":\"Enabled\",\"serviceUrl\":\"https://gug6c3b3cja3ang9.api.eus2001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemo\",\"name\":\"deiddemo\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-29T14:59:09.2833612Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T14:06:00.1344203Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4fzdeh9h2bkbphy.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/pedeid\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemo/privateEndpointConnections/pedeid.dd94e33d-9a4d-417b-b321-16878cd1b816\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2-pl\",\"name\":\"syntheticseus2-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T11:23:55.4578505Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:23:55.4578505Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adcxf8grb0fsehgv.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2-pl/privateEndpointConnections/pe-syntheticseus2-pl.9f6cefb9-7c29-4a1a-bfe2-c6f9b45a8958\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticseus2-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemopl\",\"name\":\"deiddemopl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T14:06:54.3350826Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T14:13:25.7051097Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h5dyh3d6dfazbgbe.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testnew1\",\"name\":\"testnew1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T15:15:58.8797652Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T15:26:23.7886016Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4cyfpe8gaguf2fc.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid1010\",\"name\":\"testdeid1010\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T16:38:20.6279051Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T16:54:43.8855843Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7d4hneycjd3fxc4.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/testdeidpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid1010/privateEndpointConnections/testdeidpl.975be0eb-b434-4f9a-adc4-9da4211b22a5\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d820961-6742-4bca-8\",\"name\":\"Test5d820961-6742-4bca-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-12T10:35:28.8213204Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-12T10:35:28.8213204Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f6g2h3cqa4gwcng2.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService2\",\"name\":\"azpwshDeidService2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T00:01:06.069132Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T05:46:45.1524668Z\"},\"identity\":{\"principalId\":\"1185f660-6621-4417-b51b-5ca4dc9e5fb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4cag7feawaubgbv.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService\",\"name\":\"myHealthDeidService\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T05:26:15.4607741Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T18:56:12.1361396Z\"},\"identity\":{\"principalId\":\"efab95dd-6969-4c43-bd96-4126dc372bfa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8bxaqamerbxd9a3.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:08:02.7254538Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"name\":\"r0sx7k\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:09:35.4022049Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:09:35.4022049Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://exe5gdfhgwa7d0gm.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"name\":\"1aue5d\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:11:08.5819378Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:11:08.5819378Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dtf7abbvcnengvfb.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2\",\"name\":\"syntheticseus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:55:33.1324351Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:23:31.958195Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://acacfme2a4h6h0dp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eastus2\",\"name\":\"plval0809eastus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:39:21.8715941Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:39:21.8715941Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hphrenced8dweqf3.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eastus2/privateEndpointConnections/pl-eus2.a9aa0d96-3c8e-45bc-900a-7ef1da6280e0\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-eus2\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/deid0808v1\",\"name\":\"deid0808v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-01T18:36:16.9529026Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-01T18:36:16.9529026Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deid0808v1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1234\",\"name\":\"test1234\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-05T14:18:26.977372Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-05T14:18:26.977372Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1234.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/acs-test-jelinga/providers/Microsoft.HealthDataAIServices/DeidServices/jeltest1\",\"name\":\"jeltest1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"jelinga@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-06T17:35:23.2544311Z\",\"lastModifiedBy\":\"jelinga@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-06T17:35:23.2544311Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://jeltest1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testing\",\"name\":\"testing\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T19:32:32.3182808Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T19:32:32.3182808Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testing.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testwus2\",\"name\":\"testwus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T20:40:09.8352514Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T20:40:09.8352514Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testwus2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2\",\"name\":\"syntheticswus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T17:01:59.8699199Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T12:23:59.4845851Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9b5eaetb4ded8g2.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwus2pltest\",\"name\":\"deidwus2pltest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-08T21:51:51.3282527Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T23:49:24.9683938Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a5czemgacnf6dmg4.api.wus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/deidwus2pltest/privateEndpointConnections/testpl.becb48c9-d25b-4b42-9bb6-1595592be238\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testplwus2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwus2pltest/privateEndpointConnections/testplwus2.4f763525-af2f-4457-9109-2c55402a9c6d\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809westus2\",\"name\":\"plval0809westus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:40:46.5060336Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:40:46.5060336Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ddekf6b7h2h6hsgr.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809westus2/privateEndpointConnections/pewus2.0e2bf50a-b519-4a0e-9e1d-7c058a3b9b44\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pewus2\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf5ec6c2-28ab-4c5a-a\",\"name\":\"Testbf5ec6c2-28ab-4c5a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-02T01:53:40.3484055Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-02T01:53:40.3484055Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hmb4crh3ached4dv.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/SurrogationEvaluation\",\"name\":\"SurrogationEvaluation\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-20T00:23:08.2211657Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-20T00:23:08.2211657Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g4cpgmhehnc7gjh6.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test36b129dc-998b-4906-a\",\"name\":\"Test36b129dc-998b-4906-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:17:18.3194741Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:17:18.3194741Z\"},\"identity\":{\"principalId\":\"cded9449-05df-42cf-9257-119ceb611cf4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e8gjbscaffarewbs.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfac44423-d1b5-4803-a\",\"name\":\"Testfac44423-d1b5-4803-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:36:03.5111718Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:36:03.5111718Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dnf0emb0hkhwajey.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdcaa7561-a42b-4e98-9\",\"name\":\"Testdcaa7561-a42b-4e98-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:38:24.7013615Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:38:24.7013615Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cqh8gfbkbdc3c8bv.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd9909ef5-4fd7-42a1-9\",\"name\":\"Testd9909ef5-4fd7-42a1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:39:39.4185713Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:39:39.4185713Z\"},\"identity\":{\"principalId\":\"33a1d02c-b99e-4aeb-ab9a-df83df95ff57\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dgd7gqfxdaasetfb.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4291045e-4527-4836-8\",\"name\":\"Test4291045e-4527-4836-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:48:23.6745275Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:48:23.6745275Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://angvd3e6gndgdbc8.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6ef1d88b-8d0e-4375-a\",\"name\":\"Test6ef1d88b-8d0e-4375-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:49:39.6414876Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:49:39.6414876Z\"},\"identity\":{\"principalId\":\"cc21a847-f146-454e-be9c-9260e8977330\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hac7g5a4fkaab8bs.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test55bd2f0c-9e17-4558-9\",\"name\":\"Test55bd2f0c-9e17-4558-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:06:04.3485395Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:06:04.3485395Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hybuaxahhudjc0aw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5a5c16bc-ec62-443f-8\",\"name\":\"Test5a5c16bc-ec62-443f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:08:24.5208047Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:08:24.5208047Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gjamehdmccgcftbe.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa160d233-592e-4d08-8\",\"name\":\"Testa160d233-592e-4d08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:17:18.0309089Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:17:18.0309089Z\"},\"identity\":{\"principalId\":\"829edba6-5590-4e74-b1bd-6aaac07a8bee\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dncbhyatb5c9cnfb.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdf830dd3-3716-4d7e-a\",\"name\":\"Testdf830dd3-3716-4d7e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:18:24.1497699Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:18:24.1497699Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bvenfufhdzbfd7df.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test536584e5-fcd7-4877-a\",\"name\":\"Test536584e5-fcd7-4877-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:27:19.1482143Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:27:19.1482143Z\"},\"identity\":{\"principalId\":\"0b9fc245-a89c-4604-9842-f204bdfd9cb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a8hgcygbdphwd3ff.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test73e9ef3a-3d41-4066-8\",\"name\":\"Test73e9ef3a-3d41-4066-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:29:39.5433918Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:29:39.5433918Z\"},\"identity\":{\"principalId\":\"06f69a4a-81ab-4c17-bd53-e86616eb65df\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://are4bna2abazczfu.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f2d7905-3532-45fd-9\",\"name\":\"Test7f2d7905-3532-45fd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:36:04.1258754Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:36:04.1258754Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eqcne5dkc3aqexgk.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test624145e5-acfa-4dc1-a\",\"name\":\"Test624145e5-acfa-4dc1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:38:24.7118392Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:38:24.7118392Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bfcghcgbbuf6bec5.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc171c4c5-35bd-462c-9\",\"name\":\"Testc171c4c5-35bd-462c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:46:03.4772408Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:46:03.4772408Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dnbteha3d5bsceck.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcff71431-5673-4d08-9\",\"name\":\"Testcff71431-5673-4d08-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:47:18.8657333Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:47:18.8657333Z\"},\"identity\":{\"principalId\":\"4224fac9-a7b4-4b37-bcf4-8221f82815ce\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d6fgcahnheccd4b7.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test256acb69-630c-4d44-b\",\"name\":\"Test256acb69-630c-4d44-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:56:03.9963176Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:56:03.9963176Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://e6a3c9eyc4c0gtbw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fe8493d-1144-4f66-8\",\"name\":\"Test5fe8493d-1144-4f66-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:57:18.6911923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:57:18.6911923Z\"},\"identity\":{\"principalId\":\"d97a598d-afe4-4488-98d2-828d0428e14e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fdfaeuf0c8dmgcek.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste669edcf-6036-4acd-9\",\"name\":\"Teste669edcf-6036-4acd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:59:39.4011211Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:59:39.4011211Z\"},\"identity\":{\"principalId\":\"5675b15d-6160-4c64-8c99-a2a41498d572\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4dfd0b2haduedee.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test771d44f5-8697-4f7f-8\",\"name\":\"Test771d44f5-8697-4f7f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:07:18.5389813Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:07:18.5389813Z\"},\"identity\":{\"principalId\":\"2ad513ea-bb34-423a-9a6f-11604ce9cd8b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fta0f0bee9achmga.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test68d2f5db-be6d-455e-8\",\"name\":\"Test68d2f5db-be6d-455e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:17:20.0477674Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:17:20.0477674Z\"},\"identity\":{\"principalId\":\"25ffe56d-762b-4e3a-81d3-f1e573719575\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gda6d6fffmh5evdf.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc100f616-a532-4b16-9\",\"name\":\"Testc100f616-a532-4b16-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:18:24.543296Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:18:24.543296Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hwech0gmfthwhnfe.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa9299dc-0e5a-4523-8\",\"name\":\"Testfa9299dc-0e5a-4523-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:38:24.5783436Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:38:24.5783436Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://acfzhkacepgxbvcc.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcb520941-f24d-4ba0-a\",\"name\":\"Testcb520941-f24d-4ba0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:48:24.4358381Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:48:24.4358381Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hcgzcua5fwcfbkfc.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test0315c35e-b890-4131-b\",\"name\":\"Test0315c35e-b890-4131-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:58:24.493337Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:58:24.493337Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e2dvgfggevg3cmbq.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c1072f2-e8f5-4a88-8\",\"name\":\"Test4c1072f2-e8f5-4a88-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:59:40.407495Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:59:40.407495Z\"},\"identity\":{\"principalId\":\"4ee4df82-1686-4274-be13-d4c812fdcdf6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gdd4g2c8hcerggg7.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test90624075-28a0-4403-9\",\"name\":\"Test90624075-28a0-4403-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:48:26.0857525Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:48:26.0857525Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hhhdgrbte7djcwfw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test97d3f18b-35a1-4d88-9\",\"name\":\"Test97d3f18b-35a1-4d88-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:08:25.4729145Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:08:25.4729145Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dbhmhwf8e3bxhkda.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf7b5c1f1-8d28-401b-8\",\"name\":\"Testf7b5c1f1-8d28-401b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:59:41.3246256Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:59:41.3246256Z\"},\"identity\":{\"principalId\":\"63080029-d803-41a8-8b17-fc5f4628733f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://esb9gyc6b6bggkab.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ccbdf7b-6386-497d-9\",\"name\":\"Test5ccbdf7b-6386-497d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T18:48:29.4451958Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T18:48:29.4451958Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gyaaa9ccewbufbdr.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9c2aee80-9f8c-4e02-9\",\"name\":\"Test9c2aee80-9f8c-4e02-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-01T05:10:37.8467255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-01T05:10:37.8467255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hdb5aadkgcdnbhca.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2-pl\",\"name\":\"syntheticswus2-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"West US 2\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T12:24:16.9151724Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T12:24:16.9151724Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a7e3gqa5aphna7gj.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2-pl/privateEndpointConnections/pe-syntheticswus2-pl.902e448d-d4f9-407d-84dd-43dfd39ea931\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticswus2-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdrwus2\",\"name\":\"cchaobcdrwus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T23:31:26.2023911Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T00:24:14.4086951Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huf7dhadcnfkcder.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr-01/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdrwus201\",\"name\":\"cchaobcdrwus201\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-03T18:30:18.1995159Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T18:51:33.2139805Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hxh6gjdpdqd0h8ht.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test87a60ffd-1515-4d9d-9\",\"name\":\"Test87a60ffd-1515-4d9d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T17:56:29.1915531Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T17:56:29.1915531Z\"},\"identity\":{\"principalId\":\"a9e462a7-c9a3-4098-b684-a6ec5d720e33\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3gwhvfbejewbaey.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdb56e032-8366-4ab0-9\",\"name\":\"Testdb56e032-8366-4ab0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:06:12.9109253Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:06:12.9109253Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h2cmh0bzhtceb5g8.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e62d26f-d3c9-4a5f-b\",\"name\":\"Test5e62d26f-d3c9-4a5f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:11:19.6377483Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:11:19.6377483Z\"},\"identity\":{\"principalId\":\"d02f320a-9e35-4bf6-9f83-3f58fccd0bd9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b5byb3fsagazdtdr.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd3471136-2a74-49d9-8\",\"name\":\"Testd3471136-2a74-49d9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:20:03.5304574Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:20:03.5304574Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fuhea2bnh5facfg9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test979861da-4a10-45c9-a\",\"name\":\"Test979861da-4a10-45c9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:37:29.2072828Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:37:29.2072828Z\"},\"identity\":{\"principalId\":\"114172e0-db70-4371-9439-e93aaa97fdf3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://afhmdze3b8fca3a3.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Tested2e1ea5-f21f-4765-a\",\"name\":\"Tested2e1ea5-f21f-4765-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:46:13.0992052Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:46:13.0992052Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c5a9c7b4gffga2dj.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb58a1f89-fa7b-4f78-9\",\"name\":\"Testb58a1f89-fa7b-4f78-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:56:12.6778103Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:56:12.6778103Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://brd2bwafeth9a6fe.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7afdb4a5-227a-420b-a\",\"name\":\"Test7afdb4a5-227a-420b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:00:04.3892096Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:00:04.3892096Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ddhkgaa2a0fyd5eb.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test36d17348-5ce9-442a-9\",\"name\":\"Test36d17348-5ce9-442a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:07:28.2530398Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:07:28.2530398Z\"},\"identity\":{\"principalId\":\"8f06d417-b86a-492d-8f44-4a68c3ea0f3e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c5bsbjecdud6a4g9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test963e45f8-88ed-48aa-9\",\"name\":\"Test963e45f8-88ed-48aa-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:11:18.9114737Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:11:18.9114737Z\"},\"identity\":{\"principalId\":\"29848f7d-72bf-475a-917f-3d5918d388c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://g7gjbcapg2g2dycg.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fb1df8f-ee79-4954-a\",\"name\":\"Test5fb1df8f-ee79-4954-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:20:04.1374266Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:20:04.1374266Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://erg4gudbd9cvgydy.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4138b447-9f36-4cd6-9\",\"name\":\"Test4138b447-9f36-4cd6-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:21:19.5376965Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:21:19.5376965Z\"},\"identity\":{\"principalId\":\"6f921209-ce71-474b-a035-a8a2e3aae061\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0d3exdqfkb9abe9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test06d60cb1-40fe-4c30-8\",\"name\":\"Test06d60cb1-40fe-4c30-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:36:13.8248579Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:36:13.8248579Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f0dcathpaphscyc2.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3bca3559-91fb-404a-9\",\"name\":\"Test3bca3559-91fb-404a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:37:29.2955986Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:37:29.2955986Z\"},\"identity\":{\"principalId\":\"3d8c4d46-2769-4b99-a014-0a718f583aa3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://b8ctbshzetayd3ft.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9fd01eb7-b73f-4877-9\",\"name\":\"Test9fd01eb7-b73f-4877-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:40:04.0888992Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:40:04.0888992Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fvc9axgcarfnhfhw.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa2b57e59-9c40-4518-8\",\"name\":\"Testa2b57e59-9c40-4518-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:41:18.9983689Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:41:18.9983689Z\"},\"identity\":{\"principalId\":\"c7d574b1-0e0d-46fd-99c4-24a9cec4bbf4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fecjdxe6ara9hnd6.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc2e708c7-f442-4524-b\",\"name\":\"Testc2e708c7-f442-4524-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:46:13.5523727Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:46:13.5523727Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpfyasdmg9h2dkaq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd3885190-6372-4d11-b\",\"name\":\"Testd3885190-6372-4d11-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:47:29.5420829Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:47:29.5420829Z\"},\"identity\":{\"principalId\":\"332b92cd-d20d-45e6-854e-7a4dc2163d01\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://achmguevddg4d3fb.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa9d8a749-101b-4830-9\",\"name\":\"Testa9d8a749-101b-4830-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:50:04.1460196Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:50:04.1460196Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gzg3b3bkf2fafcgz.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test81afdc34-0624-43d8-b\",\"name\":\"Test81afdc34-0624-43d8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:51:19.7435069Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:51:19.7435069Z\"},\"identity\":{\"principalId\":\"7781e2b0-117e-464e-ac50-ab50801ddd13\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ezcdfwcnf2b8gkgy.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a2de449-b8bb-4f5d-9\",\"name\":\"Test7a2de449-b8bb-4f5d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:00:04.1448641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:00:04.1448641Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dua4ftbnghe5hccx.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3b3deeec-2bd1-4338-9\",\"name\":\"Test3b3deeec-2bd1-4338-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:01:19.156135Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:01:19.156135Z\"},\"identity\":{\"principalId\":\"1a05e0a1-5420-4c6d-bfcd-b5c34b9cc3e3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dbgtfbdqbmachcfp.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d3f5139-899c-4ad8-b\",\"name\":\"Test6d3f5139-899c-4ad8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:06:14.3521856Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:06:14.3521856Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gyajfshhepg5fda9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb66a51f0-2f5f-4f7d-b\",\"name\":\"Testb66a51f0-2f5f-4f7d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:31:19.5013391Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:31:19.5013391Z\"},\"identity\":{\"principalId\":\"9fd977d6-ae79-45fe-8b0e-6949377f06de\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://befdcneggka9azby.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd342b3ce-0618-4a94-a\",\"name\":\"Testd342b3ce-0618-4a94-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:46:14.7890365Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:46:14.7890365Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://d4g3byczgweue9cv.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff6faf74-32f3-40d9-9\",\"name\":\"Testff6faf74-32f3-40d9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:41:21.3401212Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:41:21.3401212Z\"},\"identity\":{\"principalId\":\"d4b736b1-980e-4610-97a5-f82d88dd96b1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dsbsgscjecd3dpck.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb90b744-f99a-414f-9\",\"name\":\"Testfb90b744-f99a-414f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T20:20:10.9313978Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T20:20:10.9313978Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bcf6d3hwgacsh0cq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3-pl\",\"name\":\"syntheticswus3-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"West US 3\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T13:53:11.6681304Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T13:53:11.6681304Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ehckb3ascab6atck.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3-pl/privateEndpointConnections/pe-syntheticswus3-pl.e37e9c53-5e6b-4d0d-9710-c9369dacd752\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticswus3-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test0d18c1c4-0e0e-4421-9\",\"name\":\"Test0d18c1c4-0e0e-4421-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-18T01:02:26.4437619Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-18T01:02:26.4437619Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cddheze2fbfge3d7.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3\",\"name\":\"syntheticswus3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:04:34.2050842Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T13:52:47.5867912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkckd4ebcgbmgddm.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809westus3\",\"name\":\"plval0809westus3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:41:35.2370207Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:41:35.2370207Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8h8g5dgead8fafn.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809westus3/privateEndpointConnections/pewus3.c4731e71-797c-445a-942d-2a54ab0f9059\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pewus3\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa64e0ba-6a8b-4210-b\",\"name\":\"Testfa64e0ba-6a8b-4210-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-13T14:58:51.554396Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-04T00:49:24.6575074Z\"},\"identity\":{\"principalId\":\"b6c8a87e-5a3e-4566-8639-e2bf010bdfa0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gmfwdpfcdscbaxg4.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb860af0a-22f8-442c-a\",\"name\":\"Testb860af0a-22f8-442c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-16T16:09:26.8553498Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-04T00:49:25.8089517Z\"},\"identity\":{\"principalId\":\"5f598bf2-d3bc-40ac-87ff-7c99cfa102ff\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://end7hse3d6bxemb0.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test835e6f9e-482b-4126-a\",\"name\":\"Test835e6f9e-482b-4126-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:00:52.8581939Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:00:52.8581939Z\"},\"identity\":{\"principalId\":\"e26205d5-7db9-472d-9e93-8042167d53da\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://djf7ggf9cdfyaxet.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdf17a0d8-5393-47bc-8\",\"name\":\"Testdf17a0d8-5393-47bc-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:13:40.1538332Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:13:40.1538332Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://axd0b4e9exapfkdj.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test64ddb767-0544-4d0e-b\",\"name\":\"Test64ddb767-0544-4d0e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:14:55.515111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:14:55.515111Z\"},\"identity\":{\"principalId\":\"12dcfc5f-550c-42f7-8655-731601f1c872\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c2epb3a9cvgzc2dz.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdbb96996-4064-4b2c-b\",\"name\":\"Testdbb96996-4064-4b2c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:20:52.855045Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:20:52.855045Z\"},\"identity\":{\"principalId\":\"8ec6bafe-4f3d-4e0b-8ad7-1dd911952e79\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e3hpb5h3emfscsav.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test87067302-e75f-412b-a\",\"name\":\"Test87067302-e75f-412b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:30:53.137443Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:30:53.137443Z\"},\"identity\":{\"principalId\":\"e234a940-2c5b-48bb-bd76-046d2f5bf162\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cngrhee2ddeqb7d6.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6079f216-75ad-4807-8\",\"name\":\"Test6079f216-75ad-4807-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:34:55.2619318Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:34:55.2619318Z\"},\"identity\":{\"principalId\":\"40c21f10-09cc-436c-b8fb-bf5b6cbde257\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gxawccgqedefd5bz.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test98b66745-fa73-42ae-8\",\"name\":\"Test98b66745-fa73-42ae-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:49:38.5842804Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:49:38.5842804Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d6etc4e9fkg9c6bt.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd87ed11b-f543-47f4-a\",\"name\":\"Testd87ed11b-f543-47f4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:54:54.9133622Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:54:54.9133622Z\"},\"identity\":{\"principalId\":\"f483e661-4f30-4f0b-a239-c07e866d1c06\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c7b6dkdthng0ffe0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf962794b-b861-48b8-a\",\"name\":\"Testf962794b-b861-48b8-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:00:53.1913114Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:00:53.1913114Z\"},\"identity\":{\"principalId\":\"8c8774d0-afec-42cb-b15e-c9751b327c95\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3auawambdcndgab.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4c7d4f6-1b17-4919-9\",\"name\":\"Testd4c7d4f6-1b17-4919-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:03:40.031421Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:03:40.031421Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adapeadeh4fhbbe3.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde2bb4c7-d950-4156-b\",\"name\":\"Testde2bb4c7-d950-4156-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:04:55.4828172Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:04:55.4828172Z\"},\"identity\":{\"principalId\":\"70dc411b-2da7-4b2a-b672-ec14c4dcdb58\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://erabddfdbqdphtcq.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2f3ef70d-bbd8-4547-b\",\"name\":\"Test2f3ef70d-bbd8-4547-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:10:53.3178724Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:10:53.3178724Z\"},\"identity\":{\"principalId\":\"54cde060-817f-480c-b5b8-f735a6c98d27\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3bvcjede0c0eje8.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test62b5305e-0158-41d2-8\",\"name\":\"Test62b5305e-0158-41d2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:13:40.0241864Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:13:40.0241864Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bvapashwgeerg3ad.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testba61348d-39b0-4458-b\",\"name\":\"Testba61348d-39b0-4458-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:20:52.8874317Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:20:52.8874317Z\"},\"identity\":{\"principalId\":\"916a0fec-134a-49c8-99e8-656570d19d32\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://geb8fmegauahasex.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7c1eb0f1-5cf4-4b2b-8\",\"name\":\"Test7c1eb0f1-5cf4-4b2b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:23:39.4653136Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:23:39.4653136Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://evd4b5h5b9h9d4g7.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste66688e5-30ad-4da0-8\",\"name\":\"Teste66688e5-30ad-4da0-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:29:37.9191976Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:29:37.9191976Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gfbhh9gjfza0cmb0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test388ef07d-ebba-4cbb-9\",\"name\":\"Test388ef07d-ebba-4cbb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:30:53.3380706Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:30:53.3380706Z\"},\"identity\":{\"principalId\":\"f9901763-b133-48fd-9971-57a9fe1990fa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hug3daccfvchhjej.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2489dec-8eb2-487e-b\",\"name\":\"Teste2489dec-8eb2-487e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:34:56.0937298Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:34:56.0937298Z\"},\"identity\":{\"principalId\":\"e756ec96-5c3f-4aca-b504-bbe39d02401c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hpchd2cvb6aafgfm.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf930485f-a694-4f71-9\",\"name\":\"Testf930485f-a694-4f71-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:39:38.5278598Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:39:38.5278598Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5fsfme2ede6hafr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53b65792-50fb-47b0-9\",\"name\":\"Test53b65792-50fb-47b0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:49:38.5256918Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:49:38.5256918Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gha7d2gje8gzfzca.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3b6bac20-f252-4b90-8\",\"name\":\"Test3b6bac20-f252-4b90-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:53:40.387144Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:53:40.387144Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a9g7aagjcrc6bye8.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd68b15cf-11dd-4fb6-a\",\"name\":\"Testd68b15cf-11dd-4fb6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:54:56.9183271Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:54:56.9183271Z\"},\"identity\":{\"principalId\":\"c12e2bea-3dfc-4261-aa49-3349944720f4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://chfxh9g2h6hch9eh.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6b99468d-dfab-4506-8\",\"name\":\"Test6b99468d-dfab-4506-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:59:37.8801423Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:59:37.8801423Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dyg4aeb4bfbka8f5.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test56d2ded4-38ef-4399-8\",\"name\":\"Test56d2ded4-38ef-4399-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:04:56.2874705Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:04:56.2874705Z\"},\"identity\":{\"principalId\":\"a05fbbb2-41e6-468e-bfa4-90b07108d44a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d8c4dth7fqcubucd.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfdb6bf0b-cee6-4962-8\",\"name\":\"Testfdb6bf0b-cee6-4962-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:09:38.541977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:09:38.541977Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://cpfqf5gpcpc5g0gb.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde617916-0f51-4953-a\",\"name\":\"Testde617916-0f51-4953-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:19:39.2824636Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:19:39.2824636Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bhhfevb7bzeqc0ap.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff4b7b89-5ebc-4fa4-a\",\"name\":\"Testff4b7b89-5ebc-4fa4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:20:53.2834288Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:20:53.2834288Z\"},\"identity\":{\"principalId\":\"46a5e6ca-9620-4cfa-b75d-3da7f4aaa9fa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b2f2erbfd8agchfh.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e979e6a-6f32-4ea2-b\",\"name\":\"Test5e979e6a-6f32-4ea2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:49:37.8357616Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:49:37.8357616Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d8cbf2dnheb6fuek.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb5148255-04b2-40e7-b\",\"name\":\"Testb5148255-04b2-40e7-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:59:38.54155Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:59:38.54155Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fdgrd6hscyhmb9cg.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3ff5ca4-b08e-4c7d-9\",\"name\":\"Testf3ff5ca4-b08e-4c7d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:40:53.4438821Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:40:53.4438821Z\"},\"identity\":{\"principalId\":\"9ef2437c-88af-4fc1-bdfd-807bb787bc80\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://duavc4dpaegra0gj.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2f2ff72-6b64-4f93-8\",\"name\":\"Teste2f2ff72-6b64-4f93-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:43:40.6249534Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:43:40.6249534Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://avemb2d5hnhmd9bb.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2fbf6574-c44d-4f1c-8\",\"name\":\"Test2fbf6574-c44d-4f1c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:44:56.527973Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:44:56.527973Z\"},\"identity\":{\"principalId\":\"240fedc2-4b7a-4f13-ba9d-480fdbd3a295\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fxbvhsamcvhthgc2.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0ad5360-2b93-4652-b\",\"name\":\"Testb0ad5360-2b93-4652-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:40:54.1467031Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:40:54.1467031Z\"},\"identity\":{\"principalId\":\"5feda2fe-9e96-4b0b-aa4e-7b5a21efbcaa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ghftcybbaefhfwep.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test894b7ab4-49ac-4f0a-9\",\"name\":\"Test894b7ab4-49ac-4f0a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:10:54.9420866Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:10:54.9420866Z\"},\"identity\":{\"principalId\":\"fa14ce0c-7b7e-4f8a-931b-5711dfbfa02f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hkh4aea8bpahhng9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4d628f6e-45c2-4334-8\",\"name\":\"Test4d628f6e-45c2-4334-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:20:56.3876235Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:20:56.3876235Z\"},\"identity\":{\"principalId\":\"b762a1f0-82a6-427e-97e6-8b637186af93\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c0fzbgg6e5grdce3.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste85a7926-1e1e-4de1-a\",\"name\":\"Teste85a7926-1e1e-4de1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:30:56.1343757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:30:56.1343757Z\"},\"identity\":{\"principalId\":\"a0da35ad-1636-43df-ad61-5643e62da9a3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e2bmfmdggea3bha0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbbc2a5ee-d452-4b63-8\",\"name\":\"Testbbc2a5ee-d452-4b63-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T16:43:43.1433326Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T16:43:43.1433326Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gqawdge2drbea6dr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa413c93e-30f9-4a96-8\",\"name\":\"Testa413c93e-30f9-4a96-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T17:59:42.0147642Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T17:59:42.0147642Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gmhuf7f2bmfxg4h9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test34f2e583-6e88-4822-9\",\"name\":\"Test34f2e583-6e88-4822-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T19:49:42.4645046Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T19:49:42.4645046Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dac0f9g6cuggdgdu.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus-pl\",\"name\":\"syntheticsscus-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"South Central US\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T21:17:55.1121961Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:17:55.1121961Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://czhdhshwfwchaxgk.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus-pl/privateEndpointConnections/pe-syntheticsscus-pl.b34b2b66-e7a7-420b-a9cd-17ba357a4917\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticsscus-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test83a4bcb6-66b4-4763-a\",\"name\":\"Test83a4bcb6-66b4-4763-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-25T05:12:16.0899121Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-25T05:12:16.0899121Z\"},\"identity\":{\"principalId\":\"62df5936-2771-4576-b869-a793ae7d4e35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://b7ahhsddazf9bdbr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus\",\"name\":\"syntheticsscus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:06:27.9308928Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:17:38.3043211Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b3dchyfbd9c5f7d9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809scus\",\"name\":\"plval0809scus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:42:27.6946016Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-06T05:59:41.3984427Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f8ajedhjefaef7et.api.scus001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-scus\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809scus/privateEndpointConnections/pl-scus.9d739708-ca0b-4377-b992-aa12a78a59e4\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchao1214cac\",\"name\":\"testcchao1214cac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-14T22:15:16.7509833Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-14T22:15:16.7509833Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchao1214cac.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac\",\"name\":\"syntheticscac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T19:46:51.7616163Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:21:41.4155723Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticscac.api.cac001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscac\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac/privateEndpointConnections/pe-syntheticscac.350ccd7c-2652-4c8e-8da4-ac955a9da7ae\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/cac001test\",\"name\":\"cac001test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T20:40:25.9724565Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-21T20:40:25.9724565Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cac001test.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/testcchao1214\",\"name\":\"testcchao1214\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-14T20:34:56.1958631Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-14T20:34:56.1958631Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchao1214.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe141ff5-16a5-4d1a-8\",\"name\":\"Testbe141ff5-16a5-4d1a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:48:23.7560316Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:48:23.7560316Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbe141ff5-16a5-4d1a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb812004a-e516-47d7-9\",\"name\":\"Testb812004a-e516-47d7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T05:58:52.4766857Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T05:58:52.4766857Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb812004a-e516-47d7-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testee94f615-81d5-4516-b\",\"name\":\"Testee94f615-81d5-4516-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:08:23.3555244Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:08:23.3555244Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testee94f615-81d5-4516-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfc5814e5-2798-48b6-a\",\"name\":\"Testfc5814e5-2798-48b6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T08:08:51.8209589Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T08:08:51.8209589Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfc5814e5-2798-48b6-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfd7fbf70-6cbf-4b4a-8\",\"name\":\"Testfd7fbf70-6cbf-4b4a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T12:38:24.31318Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T12:38:24.31318Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfd7fbf70-6cbf-4b4a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadde277e-ccb3-471b-b\",\"name\":\"Testadde277e-ccb3-471b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T16:38:24.5291319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T16:38:24.5291319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testadde277e-ccb3-471b-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc37d9ddb-102f-4a1e-a\",\"name\":\"Testc37d9ddb-102f-4a1e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:58:52.8819245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:58:52.8819245Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc37d9ddb-102f-4a1e-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe524207-9bee-4eeb-8\",\"name\":\"Testbe524207-9bee-4eeb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:48:52.0938714Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:48:52.0938714Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbe524207-9bee-4eeb-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfe40715a-b9b6-438a-9\",\"name\":\"Testfe40715a-b9b6-438a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:38:53.1112198Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:38:53.1112198Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfe40715a-b9b6-438a-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste93d760d-e861-4f8a-b\",\"name\":\"Teste93d760d-e861-4f8a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:48:52.8765576Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:48:52.8765576Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste93d760d-e861-4f8a-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbde92518-4561-4272-b\",\"name\":\"Testbde92518-4561-4272-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T05:48:24.9302907Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T05:48:24.9302907Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbde92518-4561-4272-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9ab90f7-ead2-4a22-a\",\"name\":\"Teste9ab90f7-ead2-4a22-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T08:48:24.8275683Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T08:48:24.8275683Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste9ab90f7-ead2-4a22-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb96faeb2-c7a8-4fb6-8\",\"name\":\"Testb96faeb2-c7a8-4fb6-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T08:48:52.2765884Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T08:48:52.2765884Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb96faeb2-c7a8-4fb6-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb5e1d8f-5a10-4f3d-b\",\"name\":\"Testfb5e1d8f-5a10-4f3d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:08:24.6121269Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:08:24.6121269Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfb5e1d8f-5a10-4f3d-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc37ecb64-bee9-48c4-8\",\"name\":\"Testc37ecb64-bee9-48c4-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:18:53.0484634Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:18:53.0484634Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc37ecb64-bee9-48c4-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea87009e-cd5f-434a-8\",\"name\":\"Testea87009e-cd5f-434a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:28:24.9152706Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:28:24.9152706Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testea87009e-cd5f-434a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste72d78f2-0c81-47e2-9\",\"name\":\"Teste72d78f2-0c81-47e2-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T14:48:53.4841049Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T14:48:53.4841049Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste72d78f2-0c81-47e2-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbec339eb-b20e-4e71-b\",\"name\":\"Testbec339eb-b20e-4e71-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T18:28:25.0354485Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T18:28:25.0354485Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbec339eb-b20e-4e71-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3cad9ac-ca11-4d7f-b\",\"name\":\"Testf3cad9ac-ca11-4d7f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T23:08:24.6260425Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T23:08:24.6260425Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf3cad9ac-ca11-4d7f-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9a0e6f6-8315-4f4e-a\",\"name\":\"Teste9a0e6f6-8315-4f4e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T17:19:54.9641644Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T17:19:54.9641644Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvgzgtcyb0f0bcbr.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/c052301\",\"name\":\"c052301\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-23T21:50:04.9325652Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-23T21:50:04.9325652Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cuh0cya8geb3e5er.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test74a6af4b-e408-4a48-b\",\"name\":\"Test74a6af4b-e408-4a48-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-08T12:24:51.824032Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-08T12:24:51.824032Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://awhcasf8c9defuex.api.cac001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/contoso\",\"name\":\"contoso\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-11T01:15:32.4282974Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-16T01:24:44.0721271Z\"},\"identity\":{\"principalId\":\"bb138c5e-1f10-4af5-8f8c-b5900ee6c028\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d0gufsabftehaafy.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd00ec2e0-d149-486c-8\",\"name\":\"Testd00ec2e0-d149-486c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-14T19:56:59.5837521Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-14T19:56:59.5837521Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hwcaakcmc5b0gqfu.api.cac001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75c4f4f7-e747-40d7-b\",\"name\":\"Test75c4f4f7-e747-40d7-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-23T09:19:32.7259893Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-23T09:19:32.7259893Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hgcxhrf6cvgzgvbk.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoncac\",\"name\":\"jovinsoncac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T00:33:24.6944776Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T18:44:08.4356876Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d0bfayg0ezfnhchn.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7376b54d-00bb-404a-a\",\"name\":\"Test7376b54d-00bb-404a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-10T05:21:32.7798717Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-10T05:21:32.7798717Z\"},\"identity\":{\"principalId\":\"462a8c95-b62b-4eda-9347-fea1340533fc\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac2\",\"name\":\"plval0809cac2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T18:18:27.2675958Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T18:18:27.2675958Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ajgqfsf9a8dgfvbc.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac2/privateEndpointConnections/testcac.b6b70409-687b-4feb-8e1b-9b0c00232a13\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testcac\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cac0813\",\"name\":\"cac0813\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T23:52:55.8307582Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-13T23:52:55.8307582Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8gnakgpd7ghdmd3.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cac0813/privateEndpointConnections/pl-in-wus2-for-cac.063e5043-24ca-487c-ad39-cc26aa507a42\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-in-wus2-for-cac\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac\",\"name\":\"plval0809cac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:43:37.8772867Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T01:29:19.7481984Z\"},\"identity\":{\"principalId\":\"d52e151e-d189-4586-8a21-3c6d6b82608b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoodeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-asmahmoodeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h3bvakc4esfwhudx.api.cac001.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/plval0809cac/privateEndpointConnections/testmove.a9247899-9665-43d8-accb-3b5bd8f51977\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testmove\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test38aa4849-70f1-457f-9\",\"name\":\"Test38aa4849-70f1-457f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-27T04:02:53.1118952Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-27T04:02:53.1118952Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f9fme8cffdgyh8dq.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac-pl\",\"name\":\"syntheticscac-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"Canada Central\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T20:21:54.6470188Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:21:54.6470188Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://guewfrfee0bth4bq.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac-pl/privateEndpointConnections/pe-syntheticscac-pl.fbc886dc-b7a0-4c9d-ad6d-ab497de44e33\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscac-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks-pl\",\"name\":\"syntheticsuks-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"UK South\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T11:41:59.3973637Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:41:59.3973637Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fwhydne8fdbrfrg7.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks-pl/privateEndpointConnections/pe-syntheticsuks-pl.ae3f666c-dce1-4e29-8dc6-6f7005c4be59\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticsuks-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test50da495d-d139-4adb-9\",\"name\":\"Test50da495d-d139-4adb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-09T15:30:21.7885277Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-09T15:30:21.7885277Z\"},\"identity\":{\"principalId\":\"17cde715-3f38-4979-b34a-9b118e239f5d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcgpfrfbd9a0hrhz.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test10a21a5e-f0f5-4167-a\",\"name\":\"Test10a21a5e-f0f5-4167-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-09T18:19:30.3378838Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-09T18:19:30.3378838Z\"},\"identity\":{\"principalId\":\"9bfce899-2b8e-4c56-aa44-cb7087d29eeb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cmfggnf6ahbedcg3.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6edfe863-0bd7-40d2-b\",\"name\":\"Test6edfe863-0bd7-40d2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-19T00:34:18.8578543Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T00:34:18.8578543Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a2azawg2hxh6bwf7.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeiduks022601\",\"name\":\"testdeiduks022601\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-02-26T03:21:53.3851448Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-02-26T03:21:53.3851448Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeiduks022601.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks\",\"name\":\"syntheticsuks\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-02-26T17:46:58.9333107Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:41:45.7581489Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticsuks.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3d88a515-d60b-4703-a\",\"name\":\"Test3d88a515-d60b-4703-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T00:20:52.4814496Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T00:20:52.4814496Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3d88a515-d60b-4703-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ba1db05-66af-48ba-a\",\"name\":\"Test5ba1db05-66af-48ba-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:09:09.8063221Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:09:09.8063221Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5ba1db05-66af-48ba-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf18e9bc0-59be-4369-a\",\"name\":\"Testf18e9bc0-59be-4369-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:50:52.7531111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:50:52.7531111Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf18e9bc0-59be-4369-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste4c0a9ae-e437-4e53-8\",\"name\":\"Teste4c0a9ae-e437-4e53-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T03:40:52.9722546Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T03:40:52.9722546Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste4c0a9ae-e437-4e53-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92f14301-de10-485d-8\",\"name\":\"Test92f14301-de10-485d-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:19:09.9377812Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:19:09.9377812Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test92f14301-de10-485d-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test67f1b55a-e123-411f-9\",\"name\":\"Test67f1b55a-e123-411f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:40:53.8336883Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:40:53.8336883Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test67f1b55a-e123-411f-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test80fc6be1-06ed-4f72-b\",\"name\":\"Test80fc6be1-06ed-4f72-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:09:10.0735771Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:09:10.0735771Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test80fc6be1-06ed-4f72-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d69a0eb-c729-4a0c-8\",\"name\":\"Test6d69a0eb-c729-4a0c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:10:54.531239Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:10:54.531239Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test6d69a0eb-c729-4a0c-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8e3398a8-6bc2-42c3-9\",\"name\":\"Test8e3398a8-6bc2-42c3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:20:55.315193Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:20:55.315193Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test8e3398a8-6bc2-42c3-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf8b49b46-e5c2-4c94-b\",\"name\":\"Testf8b49b46-e5c2-4c94-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:40:55.2306005Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:40:55.2306005Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf8b49b46-e5c2-4c94-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c8394b6-3dc3-4140-9\",\"name\":\"Test4c8394b6-3dc3-4140-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T08:09:10.5504903Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T08:09:10.5504903Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test4c8394b6-3dc3-4140-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4b02e0b7-6770-433e-b\",\"name\":\"Test4b02e0b7-6770-433e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:19:10.6554416Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:19:10.6554416Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test4b02e0b7-6770-433e-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ec15027-e591-4627-9\",\"name\":\"Test5ec15027-e591-4627-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:20:56.2812694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:20:56.2812694Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5ec15027-e591-4627-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test39c6475a-f8e4-4af6-a\",\"name\":\"Test39c6475a-f8e4-4af6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:50:56.3741348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:50:56.3741348Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test39c6475a-f8e4-4af6-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc8ad4567-533a-4ce8-9\",\"name\":\"Testc8ad4567-533a-4ce8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T13:29:10.5194548Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T13:29:10.5194548Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc8ad4567-533a-4ce8-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa3b87661-7164-420b-a\",\"name\":\"Testa3b87661-7164-420b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T14:29:11.0114811Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T14:29:11.0114811Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testa3b87661-7164-420b-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb1f5a668-d4bf-46c0-a\",\"name\":\"Testb1f5a668-d4bf-46c0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T16:10:58.9386977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T16:10:58.9386977Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb1f5a668-d4bf-46c0-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaf570861-5083-4b08-8\",\"name\":\"Testaf570861-5083-4b08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T17:10:59.5199062Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T17:10:59.5199062Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testaf570861-5083-4b08-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf9809517-bd2a-4a85-a\",\"name\":\"Testf9809517-bd2a-4a85-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T18:21:00.1198972Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T18:21:00.1198972Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf9809517-bd2a-4a85-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testceb3c51e-c97e-4036-a\",\"name\":\"Testceb3c51e-c97e-4036-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T18:51:00.9735653Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T18:51:00.9735653Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testceb3c51e-c97e-4036-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test41e236dc-2118-4148-b\",\"name\":\"Test41e236dc-2118-4148-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T20:19:10.7686625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T20:19:10.7686625Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test41e236dc-2118-4148-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test42c68520-0d29-4fda-9\",\"name\":\"Test42c68520-0d29-4fda-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T20:39:10.6042131Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T20:39:10.6042131Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test42c68520-0d29-4fda-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5f0f9b1b-e3f6-4543-b\",\"name\":\"Test5f0f9b1b-e3f6-4543-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T21:01:01.2975633Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T21:01:01.2975633Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5f0f9b1b-e3f6-4543-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9b9a0260-5400-4dd1-9\",\"name\":\"Test9b9a0260-5400-4dd1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T21:21:00.992689Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T21:21:00.992689Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test9b9a0260-5400-4dd1-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc5af0427-b99b-41bb-8\",\"name\":\"Testc5af0427-b99b-41bb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:29:11.3443757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:29:11.3443757Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc5af0427-b99b-41bb-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcf8556e6-f2a0-4b12-b\",\"name\":\"Testcf8556e6-f2a0-4b12-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:31:01.9937927Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:31:01.9937927Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testcf8556e6-f2a0-4b12-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd6c86137-5f31-4b4f-a\",\"name\":\"Testd6c86137-5f31-4b4f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T23:21:02.5314215Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T23:21:02.5314215Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testd6c86137-5f31-4b4f-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test746d3a9e-cf75-4eab-b\",\"name\":\"Test746d3a9e-cf75-4eab-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:19:10.8767157Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:19:10.8767157Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test746d3a9e-cf75-4eab-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test45a63904-b7fc-41ac-8\",\"name\":\"Test45a63904-b7fc-41ac-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:29:10.9908989Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:29:10.9908989Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test45a63904-b7fc-41ac-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa37ff03f-594e-4639-9\",\"name\":\"Testa37ff03f-594e-4639-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T01:11:03.4663176Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T01:11:03.4663176Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testa37ff03f-594e-4639-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3d03640f-d1d3-46de-9\",\"name\":\"Test3d03640f-d1d3-46de-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:39:10.8625319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:39:10.8625319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3d03640f-d1d3-46de-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test591ad95a-c223-4b08-8\",\"name\":\"Test591ad95a-c223-4b08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:41:04.1150678Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:41:04.1150678Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test591ad95a-c223-4b08-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5dcea7f4-d323-45a9-b\",\"name\":\"Test5dcea7f4-d323-45a9-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T03:29:11.4528903Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T03:29:11.4528903Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5dcea7f4-d323-45a9-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92cfa1b9-9151-4b89-8\",\"name\":\"Test92cfa1b9-9151-4b89-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T04:51:05.074173Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T04:51:05.074173Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test92cfa1b9-9151-4b89-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test95987d55-100c-43d8-8\",\"name\":\"Test95987d55-100c-43d8-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T05:31:05.7753462Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T05:31:05.7753462Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test95987d55-100c-43d8-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste5dfad94-0de5-455c-a\",\"name\":\"Teste5dfad94-0de5-455c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T06:29:11.6867739Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T06:29:11.6867739Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste5dfad94-0de5-455c-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9a4d97b4-d5f3-42e4-a\",\"name\":\"Test9a4d97b4-d5f3-42e4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T07:09:11.8674261Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T07:09:11.8674261Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test9a4d97b4-d5f3-42e4-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc3805fea-9033-4b98-8\",\"name\":\"Testc3805fea-9033-4b98-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:31:07.5462811Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:31:07.5462811Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc3805fea-9033-4b98-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7125cf10-0ac8-4bf9-a\",\"name\":\"Test7125cf10-0ac8-4bf9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:41:08.3309937Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:41:08.3309937Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test7125cf10-0ac8-4bf9-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d26c847-6613-40f2-8\",\"name\":\"Test5d26c847-6613-40f2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:49:11.7472977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:49:11.7472977Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5d26c847-6613-40f2-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3f4bf4b0-ba09-480e-a\",\"name\":\"Test3f4bf4b0-ba09-480e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T13:49:11.9394943Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T13:49:11.9394943Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3f4bf4b0-ba09-480e-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc501e94f-d1e5-41c2-8\",\"name\":\"Testc501e94f-d1e5-41c2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T14:41:08.9028567Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T14:41:08.9028567Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc501e94f-d1e5-41c2-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc76a0899-5149-4990-9\",\"name\":\"Testc76a0899-5149-4990-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-03T09:43:58.6456183Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-03T09:43:58.6456183Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmdea3e3e4fuexd6.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9edb5065-a37f-4251-9\",\"name\":\"Test9edb5065-a37f-4251-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-03T12:03:58.2570665Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-03T12:03:58.2570665Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eaaaaze7hmawb6dz.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test537b661d-5b25-4b05-a\",\"name\":\"Test537b661d-5b25-4b05-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-09T11:35:15.9950351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-09T11:35:15.9950351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ftcyfjasg0cyhuac.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test58fb831b-3206-4d1c-8\",\"name\":\"Test58fb831b-3206-4d1c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-09T13:55:16.6422517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-09T13:55:16.6422517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gpfdghashmfqevgm.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test78efa6a0-01f3-4805-a\",\"name\":\"Test78efa6a0-01f3-4805-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T07:54:14.6339935Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T07:54:14.6339935Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvc8dbhqf7cxd8c9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfcc689cc-63de-4471-8\",\"name\":\"Testfcc689cc-63de-4471-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-15T10:24:17.1738232Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-15T10:24:17.1738232Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d4aycyfehvhbfqcs.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa59884e6-b0f3-4768-9\",\"name\":\"Testa59884e6-b0f3-4768-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-22T15:38:28.3543348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-22T15:38:28.3543348Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b3chdfdqe3dph4he.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.HealthDataAIServices/deidServices/deidService756\",\"name\":\"deidService756\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-29T18:57:54.0556359Z\",\"lastModifiedBy\":\"gthomas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-29T18:57:54.0556359Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dndqcbaxfngdh3be.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.HealthDataAIServices/deidServices/deidService756/privateEndpointConnections/deid-pe-6242.f8d562cf-4796-40df-84a1-e911f4cf8119\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.Network/privateEndpoints/deid-pe-6242\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"SDK test\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6c445d05-8a04-40d1-9\",\"name\":\"Test6c445d05-8a04-40d1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T20:18:08.8233351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T20:18:08.8233351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9fme0cmfycxcyda.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test667df1aa-2ea2-4184-9\",\"name\":\"Test667df1aa-2ea2-4184-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T20:24:41.4000305Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T20:24:41.4000305Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huchfaeuhrhuf3bu.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd42eca40-d463-41f3-9\",\"name\":\"Testd42eca40-d463-41f3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T21:26:50.9377625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T21:26:50.9377625Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bkbvcmbkcraecyfw.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8aa6c493-0cc1-4566-9\",\"name\":\"Test8aa6c493-0cc1-4566-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T22:29:21.7100366Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T19:32:08.0474887Z\"},\"identity\":{\"principalId\":\"0d71e7bd-429f-4c3c-82a6-3852d3b8e3a5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aybnbyavd2ejhzfd.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3e530210-4444-43a1-9\",\"name\":\"Test3e530210-4444-43a1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T10:56:57.0258009Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T10:56:57.0258009Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fwfch8gde3gvbwhz.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa8051ac4-966b-4183-8\",\"name\":\"Testa8051ac4-966b-4183-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T17:13:31.2614966Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T17:13:31.2614966Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://d7cwffedg0d2a5a6.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test40eea777-40b0-4680-b\",\"name\":\"Test40eea777-40b0-4680-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-09T07:53:34.2437985Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-09T07:53:34.2437985Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://byg5frajbxhfdcf6.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809\",\"name\":\"plval0809\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T17:33:06.4759332Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-12T19:22:00.4727578Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d9dfeaajhcafe7aw.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809/privateEndpointConnections/pl-uks.024e1c37-90f0-4d5e-8d16-8801adc29384\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-uks\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809dis2\",\"name\":\"plval0809dis2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:09:47.4289174Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:27:25.7954862Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://avesemfzbecrdjc4.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809dis2/privateEndpointConnections/plval0809dis2-pe.f950a94c-5b4b-4a31-bdee-e459f933aea9\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/plval0809dis2-pe\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsonuks\",\"name\":\"jovinsonuks\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-15T16:09:58.6334969Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-15T16:09:58.6334969Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dhdqagccangwhcdk.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test\",\"name\":\"test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T20:05:42.8384639Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T20:05:42.8384639Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0926v1\",\"name\":\"test0926v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T02:45:59.3438672Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T02:45:59.3438672Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0926v1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0926v2\",\"name\":\"test0926v2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T02:47:31.7472967Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T02:47:31.7472967Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0926v2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0927\",\"name\":\"test0927\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T16:46:05.2162306Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T16:46:05.2162306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0927.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0928\",\"name\":\"test0928\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-28T17:38:42.3842671Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-28T17:38:42.3842671Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0928.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0928v2\",\"name\":\"test0928v2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-28T17:57:11.4511743Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-28T17:57:11.4511743Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0928v2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1002\",\"name\":\"test1002\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-02T13:13:48.4976059Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-02T13:13:48.4976059Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1002.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test123\",\"name\":\"test123\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-03T20:40:59.3297043Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-03T20:40:59.3297043Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test123.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1\",\"name\":\"test1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-26T20:24:59.1914056Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-26T20:25:37.9297376Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchaoeus2euap1207\",\"name\":\"testcchaoeus2euap1207\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-07T21:59:57.2279724Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-07T21:59:57.2279724Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchaoeus2euap1207.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchaoeuap1212\",\"name\":\"testcchaoeuap1212\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-12T18:33:15.9987695Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-12T18:33:15.9987695Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchaoeuap1212.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny\",\"name\":\"syntheticscny\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T19:45:57.5795884Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:16:39.1087058Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticscny.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscny\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny/privateEndpointConnections/pe-syntheticscny.9884c0cc-4d3b-43ae-a149-b37abf040780\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/deid0921\",\"name\":\"deid0921\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-21T22:11:25.2178241Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-21T22:11:25.2178241Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deid0921.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanistesting2024\",\"name\":\"daszanistesting2024\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-03T16:17:22.3144659Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-03T16:17:22.3144659Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanistesting2024.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis202402\",\"name\":\"daszanis202402\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-03T18:11:45.7645355Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-03T18:11:45.7645355Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanis202402.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240404\",\"name\":\"testdeid20240404\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-04T21:33:53.4405002Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-04T21:33:53.4405002Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeid20240404.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240405\",\"name\":\"testdeid20240405\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-05T17:21:33.6289145Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-05T17:21:33.6289145Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeid20240405.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test689709c7-09b1-47ca-8\",\"name\":\"Test689709c7-09b1-47ca-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-12T23:56:49.2787259Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-12T23:56:49.2787259Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test689709c7-09b1-47ca-8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test773f4669-3a29-49fc-a\",\"name\":\"Test773f4669-3a29-49fc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:06:49.801438Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:06:49.801438Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test773f4669-3a29-49fc-a.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb939892-2d36-4af1-b\",\"name\":\"Testfb939892-2d36-4af1-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:55:16.2530902Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:55:16.2530902Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfb939892-2d36-4af1-b.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test636a77c6-bb93-4c48-9\",\"name\":\"Test636a77c6-bb93-4c48-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:56:49.9404785Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:56:49.9404785Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test636a77c6-bb93-4c48-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc469c263-d5cf-48a9-9\",\"name\":\"Testc469c263-d5cf-48a9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:55:16.4535138Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:55:16.4535138Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc469c263-d5cf-48a9-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testeabc36c7-733c-4eb8-a\",\"name\":\"Testeabc36c7-733c-4eb8-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:56:50.448085Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:56:50.448085Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testeabc36c7-733c-4eb8-a.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testec267f69-a8bf-4575-8\",\"name\":\"Testec267f69-a8bf-4575-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:05:17.4033647Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:05:17.4033647Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testec267f69-a8bf-4575-8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test86a1c01e-27ca-4506-9\",\"name\":\"Test86a1c01e-27ca-4506-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-16T18:46:56.1179547Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-16T18:46:56.1179547Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test86a1c01e-27ca-4506-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240416\",\"name\":\"daszanis20240416\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-16T20:36:46.8661158Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-16T20:36:46.8661158Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanis20240416.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/c041601\",\"name\":\"c041601\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-17T00:47:59.1402568Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-15T00:45:17.1793437Z\"},\"identity\":{\"principalId\":\"6e539289-0cfc-471c-9bcb-cbc69a2cee57\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gwfqcrezeqafatg4.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd7b005bb-5337-42a9-8\",\"name\":\"Testd7b005bb-5337-42a9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T00:56:03.5007718Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T00:56:03.5007718Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b5gvggdnd6btcrf4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3abb1b75-72ca-4dc3-9\",\"name\":\"Test3abb1b75-72ca-4dc3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:06:55.6174028Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:06:55.6174028Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://htaacnh7dndrffgt.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbfdd288c-7fea-48ec-9\",\"name\":\"Testbfdd288c-7fea-48ec-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:36:55.8693213Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:36:55.8693213Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g3bra2a4bfbzhwh4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5dcc63e3-df2e-4516-9\",\"name\":\"Test5dcc63e3-df2e-4516-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:46:55.7630063Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:46:55.7630063Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzb4ftfmcqg7cahr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test789c6bc9-679b-46ff-a\",\"name\":\"Test789c6bc9-679b-46ff-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T08:26:06.1766861Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T08:26:06.1766861Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dzc8h7hehfhze6ey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa6980ee4-2421-497e-9\",\"name\":\"Testa6980ee4-2421-497e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T14:26:55.3211498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T14:26:55.3211498Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpfmddfnd6c7d0ff.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53bbe941-ecf8-4e64-8\",\"name\":\"Test53bbe941-ecf8-4e64-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T17:46:12.2182371Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T17:46:12.2182371Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bjfmhzh8anhuacge.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test60cbbac8-cf49-46cd-a\",\"name\":\"Test60cbbac8-cf49-46cd-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T01:16:55.472584Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T01:16:55.472584Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hpe8hrhfd0f0bugm.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9ef5b7ba-12f1-451e-8\",\"name\":\"Test9ef5b7ba-12f1-451e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T05:46:17.5183098Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T05:46:17.5183098Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cxhah8g2ezexa9c3.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test684f4d00-b1d3-418b-b\",\"name\":\"Test684f4d00-b1d3-418b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T06:16:56.4082904Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T06:16:56.4082904Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b2hdb3gtb7edawe4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf66e2fb8-fe37-464c-a\",\"name\":\"Testf66e2fb8-fe37-464c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T12:56:55.427874Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T12:56:55.427874Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dvf0dufdbud8g7ec.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa69c6c6a-1c54-43a7-9\",\"name\":\"Testa69c6c6a-1c54-43a7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T15:26:56.3308432Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T15:26:56.3308432Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hahca8czaahfayeb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/c041801\",\"name\":\"c041801\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-18T19:34:43.4241066Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-18T19:34:43.4241066Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hshae9gwhudke2bd.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0419\",\"name\":\"test0419\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-19T16:55:49.9694669Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-19T16:55:49.9694669Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efhwdwdkdxhzd3cr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0423\",\"name\":\"test0423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T18:48:50.4444369Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cwg6c8hnamdfd2fw.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240423\",\"name\":\"daszanis20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T20:16:50.967515Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T20:16:50.967515Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aygfhrgyf3dddwd4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanisstringtest\",\"name\":\"daszanisstringtest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T20:48:07.9822169Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T20:48:07.9822169Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3eqhthegcbebda8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwithtags20240423\",\"name\":\"deidwithtags20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"test\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T21:25:59.6619497Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T21:26:34.327989Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fhfga7e0fkhgcqc0.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/danitagtest20240423\",\"name\":\"danitagtest20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"NonProd\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T22:19:45.4929556Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T22:19:45.4929556Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dbhmh3anfxgwddey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test774a83ad-b850-4275-a\",\"name\":\"Test774a83ad-b850-4275-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-25T16:07:44.1772498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-25T16:07:44.1772498Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gshxbph2gnh6bect.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240425\",\"name\":\"daszanis20240425\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-25T17:52:29.0785344Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-25T17:52:29.0785344Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hubfd9fxc4btcybf.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6dc7b759-44c6-40bb-a\",\"name\":\"Test6dc7b759-44c6-40bb-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-26T00:37:48.5866059Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-26T00:37:48.5866059Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkg0gmedgtfcaaba.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240430\",\"name\":\"testdeid20240430\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"prod\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-30T22:59:53.7170445Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-30T22:59:53.7170445Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dtbafdemctajayg8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoo-deid/providers/Microsoft.HealthDataAIServices/DeidServices/testresource\",\"name\":\"testresource\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-09T04:00:42.7519139Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-09T04:00:42.7519139Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hzaxc2cmgnh4fpcz.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8c26233c-3784-4c58-9\",\"name\":\"Test8c26233c-3784-4c58-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-13T07:38:19.1922537Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-13T07:38:19.1922537Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a4cwbhcsf4dqcbdb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3cd577fe-ccf5-47bd-9\",\"name\":\"Test3cd577fe-ccf5-47bd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T18:40:35.8341966Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T18:40:35.8341966Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aka6fgfcdcdjgqcp.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadeb2e2d-3427-4166-a\",\"name\":\"Testadeb2e2d-3427-4166-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-15T00:58:27.3004666Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-15T00:58:27.3004666Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bvdtcuagdsbkabcr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test600d8e71-b5c7-414a-b\",\"name\":\"Test600d8e71-b5c7-414a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T17:20:56.3643351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T17:20:56.3643351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gtd0g3d0hpf0cqau.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6a3294b5-2a1e-4504-9\",\"name\":\"Test6a3294b5-2a1e-4504-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T19:20:58.1160517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T19:20:58.1160517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dba6b5hxdwadf7ah.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3845680e-e8ad-45e7-8\",\"name\":\"Test3845680e-e8ad-45e7-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T21:51:33.7943111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T21:51:33.7943111Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c32fecf-8010-484f-a\",\"name\":\"Test4c32fecf-8010-484f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T21:54:45.3278696Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T21:54:45.3278696Z\"},\"identity\":{\"principalId\":\"e8302371-66e9-425c-87bf-3c8f0d76ad47\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfe015d69-5e8e-4db9-9\",\"name\":\"Testfe015d69-5e8e-4db9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T01:11:02.9479853Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T01:11:02.9479853Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://anc8cbgmgzdreuey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test51eb2ea0-227c-4a00-8\",\"name\":\"Test51eb2ea0-227c-4a00-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T01:28:31.9856996Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T01:28:31.9856996Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fjfkeqgvahfndzeh.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7783075a-2910-462c-b\",\"name\":\"Test7783075a-2910-462c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T02:08:32.7778744Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T02:08:32.7778744Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hgc0ead5htc3e6fp.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3af887a9-3bc4-41cd-8\",\"name\":\"Test3af887a9-3bc4-41cd-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T18:51:11.6799956Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T18:51:11.6799956Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daf7ejf0bnehbjc7.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9c0b39d6-d6aa-475f-9\",\"name\":\"Test9c0b39d6-d6aa-475f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-18T04:28:33.9687313Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-18T04:28:33.9687313Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gxh8acacatddbdcd.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9dbf2336-b2ec-4338-b\",\"name\":\"Test9dbf2336-b2ec-4338-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-22T05:31:32.0845694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-22T05:31:32.0845694Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://chfudxeygvc7dxau.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522\",\"name\":\"daszanis20240522\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T20:49:06.0137785Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T20:49:06.0137785Z\"},\"identity\":{\"principalId\":\"8110cbfe-f3ad-4a49-997b-d4eb60ddee10\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-dogfood/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-prtl-storagedogfood\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cpfbe0buawc9ftcr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste0dc89e3-c33e-4ae3-a\",\"name\":\"Teste0dc89e3-c33e-4ae3-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-22T20:59:13.3299697Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-22T20:59:13.3299697Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fbcadra9e5c8embk.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522test\",\"name\":\"daszanis20240522test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T21:36:43.3944001Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T21:36:43.3944001Z\"},\"identity\":{\"principalId\":\"9b38fc08-1656-443d-8821-d4c7d94ee1f0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-deid-test\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcbjdwagemhfg5an.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522nomi\",\"name\":\"daszanis20240522nomi\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T21:40:05.1624641Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T21:40:42.4963112Z\"},\"identity\":{\"principalId\":\"7feeda4e-c86d-4b99-a042-36c343485c8f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hybhfjg9avchasbw.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf90a630b-a35d-4f9b-a\",\"name\":\"Testf90a630b-a35d-4f9b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-23T18:46:45.7957393Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-23T18:46:45.7957393Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://csh6hza0gdf2d0dj.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testca65b6d3-2a97-48cf-a\",\"name\":\"Testca65b6d3-2a97-48cf-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-23T18:51:40.8224467Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-23T18:51:40.8224467Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://apf5cvckc2dqh2cg.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaab13d0d-8125-49de-9\",\"name\":\"Testaab13d0d-8125-49de-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-26T21:42:21.8688923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-26T21:42:21.8688923Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a9ckf5dddcc7h4fb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test827e783b-9474-4462-9\",\"name\":\"Test827e783b-9474-4462-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-28T18:50:04.3557874Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-28T18:50:04.3557874Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvdkfqeye2hjgcaq.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdd829060-0f10-41fd-8\",\"name\":\"Testdd829060-0f10-41fd-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T19:41:38.6128968Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T19:41:38.6128968Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf809b7a-8c49-44eb-9\",\"name\":\"Testbf809b7a-8c49-44eb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T20:33:58.7936914Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T20:33:58.7936914Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d161887-93d9-4323-b\",\"name\":\"Test6d161887-93d9-4323-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T21:51:38.5411648Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T21:51:38.5411648Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test891681e9-196d-40ae-9\",\"name\":\"Test891681e9-196d-40ae-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T22:31:38.6737266Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T22:31:38.6737266Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test89d7cdb6-6940-42ed-a\",\"name\":\"Test89d7cdb6-6940-42ed-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T22:51:39.0104824Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T22:51:39.0104824Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb2891ee5-e88b-43ac-8\",\"name\":\"Testb2891ee5-e88b-43ac-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T23:11:39.1197957Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T23:11:39.1197957Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test80079631-0116-43da-9\",\"name\":\"Test80079631-0116-43da-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T23:31:39.090987Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T23:31:39.090987Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6ba2a676-2516-4029-b\",\"name\":\"Test6ba2a676-2516-4029-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T00:03:59.7132209Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T00:03:59.7132209Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4f69f23-cb37-4705-b\",\"name\":\"Testd4f69f23-cb37-4705-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T01:43:59.5879161Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T01:43:59.5879161Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3374b9b3-03d4-4ee3-8\",\"name\":\"Test3374b9b3-03d4-4ee3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:25:15.2694455Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:25:15.2694455Z\"},\"identity\":{\"principalId\":\"2fb528ba-b590-4e27-94e8-39661649c648\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcd109a6d-d21f-4c30-9\",\"name\":\"Testcd109a6d-d21f-4c30-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:31:38.9365402Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:31:38.9365402Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdb7bce88-b82f-4ec7-9\",\"name\":\"Testdb7bce88-b82f-4ec7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:41:39.530014Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:41:39.530014Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test347eea87-86a1-4c6e-8\",\"name\":\"Test347eea87-86a1-4c6e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T03:31:38.9037178Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T03:31:38.9037178Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test753a4b03-f443-4738-8\",\"name\":\"Test753a4b03-f443-4738-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T03:51:39.1294278Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T03:51:39.1294278Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7c255c37-cbb6-455b-9\",\"name\":\"Test7c255c37-cbb6-455b-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T04:22:54.0101005Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T04:22:54.0101005Z\"},\"identity\":{\"principalId\":\"bea96f89-2aae-4568-b0d6-ff627c028de9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4b0c1b40-3c3a-4041-9\",\"name\":\"Test4b0c1b40-3c3a-4041-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T05:14:00.4477353Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T05:14:00.4477353Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe23f1c8-b066-4bfd-b\",\"name\":\"Testbe23f1c8-b066-4bfd-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T05:21:39.3794908Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T05:21:39.3794908Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test533d1087-fa1a-4d48-8\",\"name\":\"Test533d1087-fa1a-4d48-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T06:11:39.0430579Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T06:11:39.0430579Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test31016491-cc34-48ee-8\",\"name\":\"Test31016491-cc34-48ee-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T06:31:39.5467214Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T06:31:39.5467214Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb7034b34-8ba1-44cc-a\",\"name\":\"Testb7034b34-8ba1-44cc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:02:54.7424212Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:02:54.7424212Z\"},\"identity\":{\"principalId\":\"cffe13e0-04d4-4265-aad7-edec13a5c537\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testac380ad3-9242-4958-8\",\"name\":\"Testac380ad3-9242-4958-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:21:39.7639298Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:21:39.7639298Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test71fac46b-5c7f-420d-9\",\"name\":\"Test71fac46b-5c7f-420d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:54:00.6689223Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:54:00.6689223Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0d61a64-d510-4ef9-a\",\"name\":\"Testb0d61a64-d510-4ef9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:11:39.8407325Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:11:39.8407325Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test86c726fa-48a5-4a5a-a\",\"name\":\"Test86c726fa-48a5-4a5a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:24:02.0222694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:24:02.0222694Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5980e2bd-03d4-4565-9\",\"name\":\"Test5980e2bd-03d4-4565-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:51:39.9126155Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:51:39.9126155Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste043c2f4-882f-4552-b\",\"name\":\"Teste043c2f4-882f-4552-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:01:39.6096595Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:01:39.6096595Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75c11604-1975-45f8-9\",\"name\":\"Test75c11604-1975-45f8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:24:01.2383064Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:24:01.2383064Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaa6f6641-9ed9-43be-9\",\"name\":\"Testaa6f6641-9ed9-43be-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:45:16.617112Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:45:16.617112Z\"},\"identity\":{\"principalId\":\"0745d086-db0e-4fb1-95f0-8aebd32ba241\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7198b83b-6b3a-4dc3-8\",\"name\":\"Test7198b83b-6b3a-4dc3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T10:05:16.8085486Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T10:05:16.8085486Z\"},\"identity\":{\"principalId\":\"e03c7b85-3cc7-42b3-9da7-22dfbbfeaada\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4030ec65-8515-4a0d-a\",\"name\":\"Test4030ec65-8515-4a0d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T10:12:54.6732148Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T10:12:54.6732148Z\"},\"identity\":{\"principalId\":\"fa1d7f60-3a49-4b2a-bad8-28375a528cb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcafc9570-2b83-4cce-8\",\"name\":\"Testcafc9570-2b83-4cce-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:01:40.8270471Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:01:40.8270471Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2df465b-b2ac-496d-b\",\"name\":\"Teste2df465b-b2ac-496d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:11:39.8547744Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:11:39.8547744Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test76e0e1c1-d5c5-4938-8\",\"name\":\"Test76e0e1c1-d5c5-4938-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:21:39.6737222Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:21:39.6737222Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf11e191c-b75b-4123-8\",\"name\":\"Testf11e191c-b75b-4123-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T12:54:01.7129779Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T12:54:01.7129779Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc54697fe-46d1-4bb5-a\",\"name\":\"Testc54697fe-46d1-4bb5-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T14:32:54.5977307Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T14:32:54.5977307Z\"},\"identity\":{\"principalId\":\"902b6500-529a-4a15-a5a8-e726a7bb0eb1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf4e0b6d9-697d-4ad6-b\",\"name\":\"Testf4e0b6d9-697d-4ad6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:21:40.1775459Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:21:40.1775459Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdfbed109-a6c5-480a-b\",\"name\":\"Testdfbed109-a6c5-480a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:31:40.9668291Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:31:40.9668291Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb5b31ad2-6791-42b0-9\",\"name\":\"Testb5b31ad2-6791-42b0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:32:55.160759Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:32:55.160759Z\"},\"identity\":{\"principalId\":\"1bbba220-ae0c-4bfd-952c-f941a0937249\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcc3925b2-3a24-4ce5-8\",\"name\":\"Testcc3925b2-3a24-4ce5-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T16:24:02.9486206Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T16:24:02.9486206Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc2e2ef11-b48e-4722-a\",\"name\":\"Testc2e2ef11-b48e-4722-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T18:12:55.747161Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T18:12:55.747161Z\"},\"identity\":{\"principalId\":\"d21101cd-e5c4-4d45-98d9-8846b3d99eab\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf93ad24-0371-4edc-a\",\"name\":\"Testbf93ad24-0371-4edc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T18:21:40.4476683Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T18:21:40.4476683Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf04bf269-e865-4f9f-8\",\"name\":\"Testf04bf269-e865-4f9f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T19:05:18.7879983Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T19:05:18.7879983Z\"},\"identity\":{\"principalId\":\"6a131146-4e94-453b-abcb-2bc7c24e5f37\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaa56ce54-d5e3-49a4-a\",\"name\":\"Testaa56ce54-d5e3-49a4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T20:32:55.8138899Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T20:32:55.8138899Z\"},\"identity\":{\"principalId\":\"5b0586b9-fe11-4d77-ab7a-84e05ea69656\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfde27719-7f42-4eb3-9\",\"name\":\"Testfde27719-7f42-4eb3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T20:41:40.2770381Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T20:41:40.2770381Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbb708d2c-7750-490e-9\",\"name\":\"Testbb708d2c-7750-490e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T21:01:40.4120533Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T21:01:40.4120533Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9f7bb514-95da-4805-b\",\"name\":\"Test9f7bb514-95da-4805-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T21:11:39.7696278Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T21:11:39.7696278Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl\",\"name\":\"deidServiceTestPl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"tag1\":\"newtag\"},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-03T21:34:12.3839943Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-03T21:34:12.3839943Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://erhdhgfdc7gfbnha.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl/privateEndpointConnections/newPL.205ebeb8-8c5e-4a53-af5e-65a8b1742b6d\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/newPL\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl/privateEndpointConnections/deidprivend.f9aba2fb-1155-47fa-9340-fe3e400bfdb2\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/deidprivend\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/testPL\",\"name\":\"testPL\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-10T21:12:59.6131826Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-10T21:12:59.6131826Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fjbkh4cqdpe8hwet.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/sysAssignedId\",\"name\":\"sysAssignedId\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"tag1\":\"newtag\"},\"systemData\":{\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-13T17:37:14.3387424Z\"},\"identity\":{\"principalId\":\"9a1d969f-e6a8-49b4-8b7e-a5433995abb2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hvadefchfua6ftev.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6321f916-25fb-4fc8-8\",\"name\":\"Test6321f916-25fb-4fc8-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-21T16:40:05.0949754Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-21T16:40:05.0949754Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bdawgsb7hrbbe6bn.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test541e6e55-704c-44f2-a\",\"name\":\"Test541e6e55-704c-44f2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-22T03:20:10.7601885Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-22T03:20:10.7601885Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f6akaxfpafdxh0ar.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testPL2\",\"name\":\"testPL2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-24T19:33:59.0327006Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-24T19:33:59.0327006Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://avazb0ghcmcgakb2.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testPL2/privateEndpointConnections/deidPrivateEndpoint321.96cf71d4-af45-45be-96f2-3d8fc595ca36\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/deidPrivateEndpoint321\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved by johndoe@company.com\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste7a29369-726b-4c84-a\",\"name\":\"Teste7a29369-726b-4c84-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-25T21:20:06.3244568Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-25T21:20:06.3244568Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c8dagne0d5emhya9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f29e51f-926a-4677-9\",\"name\":\"Test7f29e51f-926a-4677-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-25T21:20:30.3680815Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-25T21:20:30.3680815Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hnaze8acb6dvhndg.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testDeidPlManual\",\"name\":\"testDeidPlManual\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-15T22:24:50.2812382Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-15T22:24:50.2812382Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzcqfdgrfkg2huhw.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled\",\"name\":\"pltestdisabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T19:16:27.8732354Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fzesd4dfenh6bsd9.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe770d1b-6980-4e18-9\",\"name\":\"Testbe770d1b-6980-4e18-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-17T20:23:18.4418245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-17T20:23:18.4418245Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fad7bjbneth9gzdf.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testcny002\",\"name\":\"testcny002\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-17T21:09:44.1667859Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T21:09:44.1667859Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efbedbeebubfdebs.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test84095079-4b98-4ec9-9\",\"name\":\"Test84095079-4b98-4ec9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-17T21:46:16.0393478Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-17T21:46:16.0393478Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4a5c3deevd3ezf4.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testdeidplauto2\",\"name\":\"testdeidplauto2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-17T22:29:37.8729156Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T22:29:37.8729156Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buf4cndqfaesgtcg.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testdeidplauto2/privateEndpointConnections/newPLManualTest123.e6577b74-5744-4234-8cf6-111c19d4057e\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/newPLManualTest123\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled2\",\"name\":\"pltestdisabled2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T00:28:31.2703799Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T00:28:31.2703799Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dycxeub6gfbcbzas.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled3\",\"name\":\"pltestdisabled3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T04:35:01.0885005Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T04:35:01.0885005Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c5cne0gtaxc2dzcx.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestenabled\",\"name\":\"pltestenabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T04:35:32.6234762Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T04:53:43.2223465Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gja2azg9bkcmbkgv.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste433caae-9c9b-4c16-b\",\"name\":\"Teste433caae-9c9b-4c16-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T14:37:31.2052991Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:14.3152293Z\"},\"identity\":{\"principalId\":\"1e798ce0-7a7a-4ee3-aa8f-7fc9bb9f707f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9h7b5a2ewg6e5du.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test91886748-2f52-447d-9\",\"name\":\"Test91886748-2f52-447d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T16:26:16.5199502Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-18T16:26:16.5199502Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hqg6h7cqecc0f2fy.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-sdk-dev-gthomas/providers/microsoft.healthdataaiservices/deidservices/deid-sdk-dev-gthomas-eup\",\"name\":\"deid-sdk-dev-gthomas-eup\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T17:13:41.2375465Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-23T00:06:59.7446283Z\"},\"identity\":{\"principalId\":\"0129a479-6294-4906-9e12-2e9e05dbefb7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dpg2gkb3a2bkfwg3.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testda62732d-0828-4397-b\",\"name\":\"Testda62732d-0828-4397-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T22:17:32.6395661Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:15.9234672Z\"},\"identity\":{\"principalId\":\"ed6bad84-1d9b-43b8-a161-1919e5dc00ed\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmavgea3baddhrgq.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cnydisableddelete\",\"name\":\"cnydisableddelete\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T01:08:30.63945Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T02:27:24.6559072Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hterfhf2e5aebfgx.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cny002alexa\",\"name\":\"cny002alexa\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T04:45:26.5402585Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T04:45:26.5402585Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d6a3cpanhvekf7d2.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cny002alexaenabled\",\"name\":\"cny002alexaenabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T05:04:17.5859606Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T05:05:37.6592602Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h2egckfgfpaaeqba.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6875fb8c-481b-44fb-b\",\"name\":\"Test6875fb8c-481b-44fb-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-19T18:07:33.8763819Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:16.6336799Z\"},\"identity\":{\"principalId\":\"41d0b01d-da21-42e0-952b-6d9008ea5bab\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gecxhydbh2cnerdb.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0722\",\"name\":\"test0722\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-22T13:19:49.4618059Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-23T21:20:04.7661563Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8f6c9axgyanfdaj.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0722/privateEndpointConnections/test0722pl.72fabf6a-01c1-4911-88f5-a96420ceb718\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0722pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1a880c9-e1d7-414e-8\",\"name\":\"Teste1a880c9-e1d7-414e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-23T02:15:13.2322497Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-23T02:15:13.2322497Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fnhza2e9avd8htep.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa073patch\",\"name\":\"alexa073patch\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-23T18:38:37.804077Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:29:08.1219026Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqadfygeagdkhygp.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0723\",\"name\":\"test0723\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-23T21:36:14.4676287Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-23T22:14:49.0339527Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brg9dsapavg2c6dk.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0723/privateEndpointConnections/test0723pl.3de8fd1e-d76f-4286-b90e-e4a75d9be521\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0723pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0725\",\"name\":\"test0725\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-25T21:35:17.4224809Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T22:50:45.2266916Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e5apabg2hnche4bv.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0725auto\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0725/privateEndpointConnections/test0725auto.99c3fb28-c9c2-4764-9754-962a5661c1ff\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0725manual\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0725/privateEndpointConnections/test0725manual.71316cb7-8f96-4078-8b93-1a55acc21f85\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725\",\"name\":\"alexa0725\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-25T23:54:40.0387919Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-25T23:55:33.4079214Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dvc4gmgpfdctc0c3.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725again2\",\"name\":\"alexa0725again2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-26T00:20:50.7189692Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:27:38.3288062Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g7d4e7hpdza2hgca.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725again3\",\"name\":\"alexa0725again3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-26T00:43:08.1376806Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:44:02.8776556Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h5emfaatg3bfefaz.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0729\",\"name\":\"test0729\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-29T13:30:21.5934928Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-16T20:47:56.5044908Z\"},\"identity\":{\"principalId\":\"075c8b2d-a1e2-4948-b9bd-56ae75b0072c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpf6cvhzh7g0h0dj.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0729v1\",\"name\":\"test0729v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T00:22:08.4404723Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-30T16:38:50.1818986Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://and2dtdxgnfcedd0.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/privateendpoint2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0729v1/privateEndpointConnections/privateendpoint2.ffc3ed5a-0f5b-4cd5-acc7-5d417356a16f\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0730v1\",\"name\":\"test0730v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T16:39:22.9446072Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-05T23:04:28.1814769Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ezcfh6hpdjf4e6as.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0730v1/privateEndpointConnections/test0806.e9cd3a40-e666-4c80-9aea-3d514c9c2bd3\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/test0806\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"}}}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0730demo\",\"name\":\"test0730demo\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T17:14:54.7706591Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-30T17:14:54.7706591Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c6czgkabb6gnh7d9.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801all\",\"name\":\"test0801all\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T00:09:57.9314888Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T00:07:40.714Z\"},\"identity\":{\"principalId\":\"4e596332-04f0-4743-95bf-e9c6ce3c76c0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://arh2bwaaeqewehhx.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801public\",\"name\":\"test0801public\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T00:58:54.8826933Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T00:07:41.903045Z\"},\"identity\":{\"principalId\":\"c6048863-1678-4608-a185-1e2bf49d250e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmdtg3dag0axaxfe.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801deid\",\"name\":\"test0801deid\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T12:24:14.486183Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T18:57:54.0730875Z\"},\"identity\":{\"principalId\":\"38185316-41b3-4dac-b0d9-b19efdb3be99\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoodeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-asmahmoodeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f9dybbdshvend4dz.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809euap\",\"name\":\"plval0809euap\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T21:43:51.418236Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-28T16:50:02.1741996Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eseebtd3ajaxgxh4.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-euap2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809euap/privateEndpointConnections/pl-euap2.f110014f-e8aa-4917-8663-e2e618c52017\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0809\",\"name\":\"alexa0809\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:46:47.3233012Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:46:47.3233012Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvffgqfecnhgaxef.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/alexa0809/privateEndpointConnections/peeuap.5f1a0318-ddf4-40f8-85b8-ce58ee5e85f7\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeuap\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0809/privateEndpointConnections/peeus0814manual.aeec8437-917c-470b-b148-b344a67efab9\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0814manual\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"approved pe\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/alexa0809/privateEndpointConnections/testpecrossregion.c8058284-0f31-4dd2-838d-7b966c490e9b\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpecrossregion\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814\",\"name\":\"test0814\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-14T20:14:19.4225466Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-30T20:20:46.1466584Z\"},\"identity\":{\"principalId\":\"5d8d9efd-4649-47d5-8a41-46df205b6a9d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvbhevf3bwfkg8h7.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0814manual2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/peeus0814manual2.c199e81e-9008-4e36-b847-ba1d0e98a57d\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testpe2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/testpe2.28ca2e9a-5e25-4870-b7af-5529c50605cb\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"reject\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/testpl.068fad0b-c8ac-40d7-a0fb-dccebc629644\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/pev2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814/privateEndpointConnections/pev2.d875c1a8-f613-49da-ab46-16eaf0b79ba2\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/private-endpoint\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814/privateEndpointConnections/private-endpoint.3db275cc-6678-4cde-824f-0cae45812cc7\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/demo0815auto\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/demo0815auto.f290340a-f490-4c8f-b4b7-90b76afe1e12\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/demo0815manual\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/demo0815manual.c5c54b02-454f-43ea-8e56-0f054096a405\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.HealthDataAIServices/DeidServices/msoenntest\",\"name\":\"msoenntest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"msoennichsen@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-19T18:51:13.8508128Z\",\"lastModifiedBy\":\"msoennichsen@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T18:57:11.3280852Z\"},\"identity\":{\"principalId\":\"84bdc5ea-f750-44d4-9b6d-bd2af1d6eb37\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-msoennicdeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5ffdxhkg7aua4g0.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/SwaggerResource\",\"name\":\"SwaggerResource\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-24T21:05:12.2878593Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-24T21:05:12.2878593Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gch5gycpe2f6apbb.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny-pl\",\"name\":\"syntheticscny-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T20:16:50.9705435Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:16:50.9705435Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aab7gvc5hkh6ejhz.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny-pl/privateEndpointConnections/pe-syntheticscny-pl.f8e97798-4c5b-406f-8c4e-692bc6413fa1\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscny-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuap1\",\"name\":\"testeuap1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-15T21:47:03.1351325Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-15T21:47:03.1351325Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Failed\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuapfix\",\"name\":\"testeuapfix\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-16T00:04:52.5975153Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-16T00:04:52.5975153Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e0h7f9cycfhwevg6.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuapfix/privateEndpointConnections/plfix.031101be-b2b3-4373-921d-4b0c25d3e530\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/plfix\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/test1015\",\"name\":\"test1015\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-16T00:09:04.4778867Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-16T00:09:04.4778867Z\"},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/deid-identity\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://atahbsdcdnahhveq.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/portalTest\",\"name\":\"portalTest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-22T05:36:35.3578903Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-22T05:36:35.3578903Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f8gxf3b2g7hgg3h8.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9928c3a0-a032-482d-a\",\"name\":\"Test9928c3a0-a032-482d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-25T05:12:41.9932126Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-25T05:12:41.9932126Z\"},\"identity\":{\"principalId\":\"8f9fa1f3-ed87-4e5f-8161-f3623dafbfd6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Accepted\"}}]}", "isContentBase64": false } }, - "Get-AzHealthDeidService+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+1": { + "Get-AzDeidService+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "a03f0bc3-7d36-455b-8790-bdf40fa9218a" ], - "CommandName": [ "Get-AzHealthDeidService" ], - "FullCommandName": [ "Get-AzHealthDeidService_Get" ], + "x-ms-client-request-id": [ "c3c6506a-75c5-4777-a24a-0e227bddc63a" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -66,29 +66,29 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8101b602-0000-0800-0000-6716bdc20000\"" ], + "ETag": [ "\"1d01332a-0000-0800-0000-671b27630000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "f5a08480-5c54-475c-adc9-852f363b5c6c" ], - "x-ms-correlation-request-id": [ "e8f54ca3-534d-4440-b833-80749f28d4e5" ], + "x-ms-request-id": [ "cf40e5d4-ff55-4573-adac-f4792b7e0638" ], + "x-ms-correlation-request-id": [ "7b2ce591-c6c2-4599-b14b-74d51f6048a7" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205305Z:e8f54ca3-534d-4440-b833-80749f28d4e5" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051245Z:7b2ce591-c6c2-4599-b14b-74d51f6048a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B23D89A2F6144AFCB2EC020CAEEE6F26 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:05Z" ], - "Date": [ "Mon, 21 Oct 2024 20:53:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 878956FB99E847B8B0DDEE958B2085C8 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:45Z" ], + "Date": [ "Fri, 25 Oct 2024 05:12:44 GMT" ] }, "ContentHeaders": { "Content-Length": [ "638" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", "isContentBase64": false } }, - "Get-AzHealthDeidService+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview+1": { + "Get-AzDeidService+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview+1": { "Request": { "Method": "GET", "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview", @@ -96,11 +96,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "24" ], - "x-ms-client-request-id": [ "1534c649-eb35-4d21-bfa4-4cc9763d666e" ], - "CommandName": [ "Get-AzHealthDeidService" ], - "FullCommandName": [ "Get-AzHealthDeidService_List1" ], + "x-ms-client-request-id": [ "fed3773a-69ae-4a47-b1bb-54696ac3dc23" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -113,38 +113,38 @@ "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "32126b0b-e26e-4306-a2ba-c70e5fd45ef5" ], - "x-ms-correlation-request-id": [ "a6ff4b29-7179-4b20-8d7f-c511eb497bb1" ], + "x-ms-request-id": [ "a11cd155-1e47-45d9-acf8-c5712f88ebd1" ], + "x-ms-correlation-request-id": [ "708b0e97-9e56-484d-8b03-7b8cb425070e" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205305Z:a6ff4b29-7179-4b20-8d7f-c511eb497bb1" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051245Z:708b0e97-9e56-484d-8b03-7b8cb425070e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BCBBF28A8532473683DAC539A55D9EF8 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:05Z" ], - "Date": [ "Mon, 21 Oct 2024 20:53:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: FA4E22BAB5A14817AB3F897EABC28744 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:45Z" ], + "Date": [ "Fri, 25 Oct 2024 05:12:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "2567" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/7p4kc5\",\"name\":\"7p4kc5\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:48:23.0398549Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:48:23.0398549Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqfdfehec7enfjgc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"name\":\"qv4mlb\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:49:55.5396861Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:49:55.5396861Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://csepa9hngpaqfgaq.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"name\":\"9nbgfp\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:51:28.3911208Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:51:28.3911208Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bfcjhrceffcaeyby.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:08:02.7254538Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"name\":\"r0sx7k\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:09:35.4022049Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:09:35.4022049Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://exe5gdfhgwa7d0gm.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"name\":\"1aue5d\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:11:08.5819378Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:11:08.5819378Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dtf7abbvcnengvfb.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}]}", "isContentBase64": false } }, - "Get-AzHealthDeidService+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+1": { + "Get-AzDeidService+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "25" ], - "x-ms-client-request-id": [ "1a401825-9c8d-47e3-b781-503819356b49" ], - "CommandName": [ "Get-AzHealthDeidService" ], - "FullCommandName": [ "Get-AzHealthDeidService_Get" ], + "x-ms-client-request-id": [ "dc0544ab-6b49-462e-be07-8cd30887abed" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -155,41 +155,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8101b602-0000-0800-0000-6716bdc20000\"" ], + "ETag": [ "\"1d01332a-0000-0800-0000-671b27630000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "17e6fe53-a574-4954-8ea0-4b77398fa91c" ], - "x-ms-correlation-request-id": [ "e9328c7f-facf-4e56-8574-01b650374f6e" ], + "x-ms-request-id": [ "4a937a27-01df-4983-b40f-0fed5e0ec606" ], + "x-ms-correlation-request-id": [ "da8f7a2b-4d11-453f-8239-8c1efe601e80" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205306Z:e9328c7f-facf-4e56-8574-01b650374f6e" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051245Z:da8f7a2b-4d11-453f-8239-8c1efe601e80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 80F367B0EF374E66B06523BC6F742E1C Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:05Z" ], - "Date": [ "Mon, 21 Oct 2024 20:53:05 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A6B13F276550466189E0C85BAE58C1A7 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:45Z" ], + "Date": [ "Fri, 25 Oct 2024 05:12:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "638" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", "isContentBase64": false } }, - "Get-AzHealthDeidService+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview+2": { + "Get-AzDeidService+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9?api-version=2024-02-28-preview", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "26" ], - "x-ms-client-request-id": [ "6166d2d6-e452-4a0a-9a9b-6d88b86bb8df" ], - "CommandName": [ "Get-AzHealthDeidService" ], - "FullCommandName": [ "Get-AzHealthDeidService_GetViaIdentity" ], + "x-ms-client-request-id": [ "d0d4845c-b732-4623-b6b2-75f84d457752" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_GetViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -200,25 +200,25 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8101b602-0000-0800-0000-6716bdc20000\"" ], + "ETag": [ "\"1d01332a-0000-0800-0000-671b27630000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "b97dd59b-56e1-4e00-bee4-bdb5ae6fabaf" ], - "x-ms-correlation-request-id": [ "9f0823f4-639a-453d-abdd-0e2608968d1b" ], + "x-ms-request-id": [ "05f66dee-6a57-4cdf-9c2d-5cafc79ef7b5" ], + "x-ms-correlation-request-id": [ "b3295913-9773-490e-8eb4-3255fabda4e3" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205306Z:9f0823f4-639a-453d-abdd-0e2608968d1b" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051246Z:b3295913-9773-490e-8eb4-3255fabda4e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 32569489D5F54AFBBBBFE6840A51885B Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:53:06Z" ], - "Date": [ "Mon, 21 Oct 2024 20:53:06 GMT" ] + "X-MSEdge-Ref": [ "Ref A: AA8E5DA7ECFA4F9797B31EBA31BA354E Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:45Z" ], + "Date": [ "Fri, 25 Oct 2024 05:12:45 GMT" ] }, "ContentHeaders": { "Content-Length": [ "638" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/khpfg9\",\"name\":\"khpfg9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:46:50.5597912Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:46:50.5597912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpeqheh5gdemh3cd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", "isContentBase64": false } } diff --git a/src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Tests.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Tests.ps1 similarity index 63% rename from src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Tests.ps1 rename to src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Tests.ps1 index 6133005c26fe..cda44e916c27 100644 --- a/src/HealthDeid/HealthDeid.Autorest/test/Get-AzHealthDeidService.Tests.ps1 +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Get-AzHealthDeidService')) +if(($null -eq $TestName) -or ($TestName -contains 'Get-AzDeidService')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzHealthDeidService.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzDeidService.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,24 +14,24 @@ if(($null -eq $TestName) -or ($TestName -contains 'Get-AzHealthDeidService')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Get-AzHealthDeidService' { +Describe 'Get-AzDeidService' { It 'List' { { - $config = Get-AzHealthDeidService + $config = Get-AzDeidService $config.Count | Should -BeGreaterThan 0 } | Should -Not -Throw } It 'Get' { { - $config = Get-AzHealthDeidService -Name $env.deidServiceName -ResourceGroupName $env.resourceGroupName + $config = Get-AzDeidService -Name $env.deidServiceName -ResourceGroupName $env.resourceGroupName $config.Name | Should -Be $env.deidServiceName } | Should -Not -Throw } It 'List1' { { - $config = Get-AzHealthDeidService -ResourceGroupName $env.resourceGroupName + $config = Get-AzDeidService -ResourceGroupName $env.resourceGroupName $config.Count | Should -BeGreaterThan 0 $config[0].Name | Should -Not -BeNullOrEmpty $config[0].ResourceGroupName | Should -Be $env.resourceGroupName @@ -40,8 +40,8 @@ Describe 'Get-AzHealthDeidService' { It 'GetViaIdentity' { { - $config = Get-AzHealthDeidService -Name $env.deidServiceName -ResourceGroupName $env.resourceGroupName - $config2 = Get-AzHealthDeidService -InputObject $config + $config = Get-AzDeidService -Name $env.deidServiceName -ResourceGroupName $env.resourceGroupName + $config2 = Get-AzDeidService -InputObject $config $config2.Name | Should -Be $env.deidServiceName } | Should -Not -Throw } diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Recording.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Recording.json new file mode 100644 index 000000000000..e7cb692f59cf --- /dev/null +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Recording.json @@ -0,0 +1,662 @@ +{ + "New-AzDeidService+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e?api-version=2024-02-28-preview", + "Content": "{\n \"location\": \"eastus2\"\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "27" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1d0102aa-0000-0800-0000-671b28d30000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "bc36b8ba-1bd0-438e-9ec7-b6476f00eace" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "8b22f4a8-61c0-41a7-951b-1685d5b7da4f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY" ], + "x-ms-request-id": [ "3da9a22c-6797-43bd-8b6e-c27bd709ea9b" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051251Z:8b22f4a8-61c0-41a7-951b-1685d5b7da4f" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: CE582D92E67E4BF89571875997C498E4 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:49Z" ], + "Date": [ "Fri, 25 Oct 2024 05:12:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "526" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e\",\"name\":\"gkan5e\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:12:50.877611Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:12:50.877611Z\"},\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "28" ], + "x-ms-client-request-id": [ "0d315bd2-6696-40d4-8b2b-958a5f188e7b" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"01035e3a-0000-0800-0000-671b28d30000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "2ab52372-c23e-4715-bc73-e979d7587596" ], + "x-ms-correlation-request-id": [ "7d81fa78-f639-4bf5-99b5-87e9813aec04" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051321Z:7d81fa78-f639-4bf5-99b5-87e9813aec04" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4E0BFD1E248F4F2DAF544B5EE474B06C Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:13:21Z" ], + "Date": [ "Fri, 25 Oct 2024 05:13:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"name\":\"3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:12:51.1058112Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "29" ], + "x-ms-client-request-id": [ "0d315bd2-6696-40d4-8b2b-958a5f188e7b" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"01035e3a-0000-0800-0000-671b28d30000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "ed4c5640-3882-484e-9ab6-909505a6d287" ], + "x-ms-correlation-request-id": [ "208c2dec-dbcd-46e6-b9e8-825e52c828c6" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051352Z:208c2dec-dbcd-46e6-b9e8-825e52c828c6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7B87335BC1194B609604900C082CEECE Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:13:52Z" ], + "Date": [ "Fri, 25 Oct 2024 05:13:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"name\":\"3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:12:51.1058112Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "30" ], + "x-ms-client-request-id": [ "0d315bd2-6696-40d4-8b2b-958a5f188e7b" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"01034146-0000-0800-0000-671b29150000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "da1429dc-f3ac-493e-8e58-fb61d3351765" ], + "x-ms-correlation-request-id": [ "63508029-58bd-4e00-b934-a3584bb14d10" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051422Z:63508029-58bd-4e00-b934-a3584bb14d10" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 550146FE891B4376B674AF7D4E36EFED Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:14:22Z" ], + "Date": [ "Fri, 25 Oct 2024 05:14:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "634" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"name\":\"3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:12:51.1058112Z\",\"endTime\":\"2024-10-25T05:12:58.3820488Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e?api-version=2024-02-28-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "31" ], + "x-ms-client-request-id": [ "0d315bd2-6696-40d4-8b2b-958a5f188e7b" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1d013bad-0000-0800-0000-671b28da0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "db44b345-08de-4bc7-b86f-e4cd62cd732a" ], + "x-ms-correlation-request-id": [ "b3b1d049-37bd-47f9-8920-008face08164" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051422Z:b3b1d049-37bd-47f9-8920-008face08164" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1E7DD69F5E6B4BEEB61CE256CA36D085 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:14:22Z" ], + "Date": [ "Fri, 25 Oct 2024 05:14:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "636" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e\",\"name\":\"gkan5e\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:12:50.877611Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:12:50.877611Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://htfgctaqe2hdbzc2.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k?api-version=2024-02-28-preview", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "100" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1d01efcb-0000-0800-0000-671b29300000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "59176c4f-bb56-4d20-8f89-ddc919128aa7" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "2d7eb40a-0f6b-4a64-bb39-96462d617636" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU" ], + "x-ms-request-id": [ "b373177e-24e5-49ba-a4a6-4b00d98d7c81" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051424Z:2d7eb40a-0f6b-4a64-bb39-96462d617636" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5258D6EF5DD049F383D4994C24B6046C Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:14:22Z" ], + "Date": [ "Fri, 25 Oct 2024 05:14:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "560" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k\",\"name\":\"w4xh3k\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:14:23.7394408Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:14:23.7394408Z\"},\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "33" ], + "x-ms-client-request-id": [ "2671325b-3e14-4f47-b24d-c662ff9422cc" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0103aa49-0000-0800-0000-671b29300000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "3afeb277-bed4-4681-b192-e82d46f870ea" ], + "x-ms-correlation-request-id": [ "debdf2df-3cbd-4498-a9a9-4b3a5ce094dd" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051454Z:debdf2df-3cbd-4498-a9a9-4b3a5ce094dd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2748C69340224F4BAD6373B37DC86E65 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:14:54Z" ], + "Date": [ "Fri, 25 Oct 2024 05:14:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "573" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"name\":\"b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:14:24.0205162Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "34" ], + "x-ms-client-request-id": [ "2671325b-3e14-4f47-b24d-c662ff9422cc" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0103aa49-0000-0800-0000-671b29300000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "f5c868cf-1726-4cb1-bff8-d76a71e7d959" ], + "x-ms-correlation-request-id": [ "7d08d727-28a1-47b3-8837-9a0303c4a377" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051525Z:7d08d727-28a1-47b3-8837-9a0303c4a377" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6C6A7CAF26194A22B6A353AEC1837D1A Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:15:24Z" ], + "Date": [ "Fri, 25 Oct 2024 05:15:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "573" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"name\":\"b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:14:24.0205162Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "35" ], + "x-ms-client-request-id": [ "2671325b-3e14-4f47-b24d-c662ff9422cc" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0103de52-0000-0800-0000-671b29730000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "852ab49c-1f10-4bec-b5ab-b11ecb7caf3e" ], + "x-ms-correlation-request-id": [ "c27b0231-8bf2-4c0f-8881-406bb27c37bf" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051555Z:c27b0231-8bf2-4c0f-8881-406bb27c37bf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0C9FA58F93F24B2FB0D9B33E7E7C6B87 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:15:55Z" ], + "Date": [ "Fri, 25 Oct 2024 05:15:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "633" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"name\":\"b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:14:24.0205162Z\",\"endTime\":\"2024-10-25T05:14:32.2927563Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k?api-version=2024-02-28-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "36" ], + "x-ms-client-request-id": [ "2671325b-3e14-4f47-b24d-c662ff9422cc" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1d0140ce-0000-0800-0000-671b29380000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "7da308cd-3165-472d-8111-fb521048fd50" ], + "x-ms-correlation-request-id": [ "e500b2a7-eee4-45c0-aab0-5c0eaa1797ea" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051555Z:e500b2a7-eee4-45c0-aab0-5c0eaa1797ea" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3E32DF92B1BC4F82A88D13073B5E1DB1 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:15:55Z" ], + "Date": [ "Fri, 25 Oct 2024 05:15:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "637" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k\",\"name\":\"w4xh3k\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:14:23.7394408Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:14:23.7394408Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://apbqb6gybtasc5e5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonString+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy?api-version=2024-02-28-preview", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "100" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1d01fedb-0000-0800-0000-671b298c0000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "daf0add9-84cf-4709-b242-bbb4a4800e6c" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "976357d4-3a14-4226-874b-b0b515818e68" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM" ], + "x-ms-request-id": [ "78d8ac34-ad83-49f7-95da-856452e0f5de" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051557Z:976357d4-3a14-4226-874b-b0b515818e68" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E3F3AEC677814D5C8A51F06AA69E49EE Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:15:55Z" ], + "Date": [ "Fri, 25 Oct 2024 05:15:56 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "560" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy\",\"name\":\"ahcswy\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:15:56.3234274Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:15:56.3234274Z\"},\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "38" ], + "x-ms-client-request-id": [ "f254edb7-ea1e-4086-8977-e90cbfb3795a" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"01030e5a-0000-0800-0000-671b298c0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "ff0d7cf1-9726-4f44-b4e3-f7e900ae8a71" ], + "x-ms-correlation-request-id": [ "c6bef45e-66f6-401b-ba0b-df454d090b0e" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051627Z:c6bef45e-66f6-401b-ba0b-df454d090b0e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BFD8031F462F45B1ABCBA4A0C5895A56 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:16:27Z" ], + "Date": [ "Fri, 25 Oct 2024 05:16:26 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "573" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"name\":\"78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:15:56.5957062Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "39" ], + "x-ms-client-request-id": [ "f254edb7-ea1e-4086-8977-e90cbfb3795a" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"01030e5a-0000-0800-0000-671b298c0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "6e529291-adb2-40b0-ad21-ff6927e3da64" ], + "x-ms-correlation-request-id": [ "777fea8b-fc9c-4187-b973-28266992503a" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051657Z:777fea8b-fc9c-4187-b973-28266992503a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1B05D9354E424C51BC28F51725DA024F Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:16:57Z" ], + "Date": [ "Fri, 25 Oct 2024 05:16:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "573" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"name\":\"78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:15:56.5957062Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "40" ], + "x-ms-client-request-id": [ "f254edb7-ea1e-4086-8977-e90cbfb3795a" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0103a762-0000-0800-0000-671b29ce0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "5a4f43b7-184c-42ec-ba0a-57421dfd51f5" ], + "x-ms-correlation-request-id": [ "2a185c4a-42a6-4d20-a25d-34a0603ac22f" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051728Z:2a185c4a-42a6-4d20-a25d-34a0603ac22f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4199C910FFB14930A06C609141FCC126 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:17:28Z" ], + "Date": [ "Fri, 25 Oct 2024 05:17:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "633" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"name\":\"78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:15:56.5957062Z\",\"endTime\":\"2024-10-25T05:16:04.2086126Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy?api-version=2024-02-28-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "41" ], + "x-ms-client-request-id": [ "f254edb7-ea1e-4086-8977-e90cbfb3795a" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1d01e7dc-0000-0800-0000-671b29940000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "75f205d8-2832-4c44-be92-4169ad89cd15" ], + "x-ms-correlation-request-id": [ "1f568da8-65fe-4f5b-a869-9522358c2ace" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051728Z:1f568da8-65fe-4f5b-a869-9522358c2ace" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 64BC34CEC10F4D5DAC414E33FA9DCD23 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:17:28Z" ], + "Date": [ "Fri, 25 Oct 2024 05:17:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "637" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy\",\"name\":\"ahcswy\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:15:56.3234274Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:15:56.3234274Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dabcehdwfdf7g2ed.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Tests.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Tests.ps1 similarity index 63% rename from src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Tests.ps1 rename to src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Tests.ps1 index 6894b43e35d4..11e4427fc98b 100644 --- a/src/HealthDeid/HealthDeid.Autorest/test/New-AzHealthDeidService.Tests.ps1 +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'New-AzHealthDeidService')) +if(($null -eq $TestName) -or ($TestName -contains 'New-AzDeidService')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzHealthDeidService.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzDeidService.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,10 +14,10 @@ if(($null -eq $TestName) -or ($TestName -contains 'New-AzHealthDeidService')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'New-AzHealthDeidService' { +Describe 'New-AzDeidService' { It 'CreateExpanded' { { - $config = New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests1 -Location $env.location + $config = New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests1 -Location $env.location $config.Name | Should -Be $env.deidServiceToCreateInTests1 $config.ProvisioningState | Should -Be "Succeeded" } | Should -Not -Throw @@ -25,7 +25,7 @@ Describe 'New-AzHealthDeidService' { It 'CreateViaJsonFilePath' { { - $config = New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests2 -JsonFilePath (Join-Path $PSScriptRoot '.\jsonConfigs\deidServiceJson.json') + $config = New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests2 -JsonFilePath (Join-Path $PSScriptRoot '.\jsonConfigs\deidServiceJson.json') $config.Name | Should -Be $env.deidServiceToCreateInTests2 $config.ProvisioningState | Should -Be "Succeeded" } | Should -Not -Throw @@ -34,7 +34,7 @@ Describe 'New-AzHealthDeidService' { It 'CreateViaJsonString' { { $jsonString = Get-Content -Path (Join-Path $PSScriptRoot '.\jsonConfigs\deidServiceJson.json') -Raw - $config = New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests3 -JsonString $jsonString + $config = New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests3 -JsonString $jsonString $config.Name | Should -Be $env.deidServiceToCreateInTests3 $config.ProvisioningState | Should -Be "Succeeded" } | Should -Not -Throw diff --git a/src/HealthDeid/HealthDeid.Autorest/test/README.md b/src/HealthDeidentification/HealthDeidentification.Autorest/test/README.md similarity index 100% rename from src/HealthDeid/HealthDeid.Autorest/test/README.md rename to src/HealthDeidentification/HealthDeidentification.Autorest/test/README.md diff --git a/src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Recording.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Recording.json similarity index 53% rename from src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Recording.json rename to src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Recording.json index da65226e6c33..7272a545945f 100644 --- a/src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Recording.json +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Recording.json @@ -1,17 +1,17 @@ { - "Remove-AzHealthDeidService+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb?api-version=2024-02-28-preview+1": { + "Remove-AzDeidService+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k?api-version=2024-02-28-preview+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb?api-version=2024-02-28-preview", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k?api-version=2024-02-28-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "42" ], - "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -22,20 +22,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8101a067-0000-0800-0000-6716c0500000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0" ], + "ETag": [ "\"1d01d6e6-0000-0800-0000-671b29ed0000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-providerhub-traffic": [ "True" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0" ], - "x-ms-request-id": [ "31caacbe-b25f-4cdc-94f3-a70acaf49a49" ], - "x-ms-correlation-request-id": [ "494405b0-9f94-4b49-83f7-cda44ac7c66c" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w" ], + "x-ms-request-id": [ "74d29ced-0f6a-4a27-ab9a-bd5042258666" ], + "x-ms-correlation-request-id": [ "345ab293-d92c-438a-8e23-dadd998e3c27" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205752Z:494405b0-9f94-4b49-83f7-cda44ac7c66c" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051733Z:345ab293-d92c-438a-8e23-dadd998e3c27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A88D3F0182B74DAABD674C9128603E96 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:57:51Z" ], - "Date": [ "Mon, 21 Oct 2024 20:57:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: E315179303AE496A8F7D09D4E118AEB8 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:17:32Z" ], + "Date": [ "Fri, 25 Oct 2024 05:17:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4" ], @@ -46,20 +46,20 @@ "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0+2": { + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "43" ], - "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -69,43 +69,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a008b4b-0000-0800-0000-6716c0500000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411029085137\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=lZ8TbnpTJqUbRUMoCM7zvaIlzWWnTU81eVmyO9Rt14aGCpPDibCMx5KrrGh4MDXO4OD7GsukmD5h62fkhFQJLsRYKeDEutt8FzR4sZ7Y45pbIxLSYY7t9_WviMnW5fm_tiHhMCEPMNmS_CmybKwDVFlZ6p9i9DWkfw7b8bM8tnz7xtBTNTB69fFSFybg6iKjdhQO5j4_Lx1r0I972kMDsq-5QMN-SXG7xdShCMlHpmxtShgGoHyLQfTWit16T4N2vNVbMIsea7YYNnQWl_C4h90DvSa9hltK5RfPbUMF-TxdHkRwCm8DmgqEQd7-BESs4PFUWmALbM-WRPADkXwvgg\u0026h=-LKAx2z_DLJLbIKtgSXBtxSjJzV6z9sdyKxD6uvomBo" ], + "ETag": [ "\"01034566-0000-0800-0000-671b29ed0000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302839484527\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=csnLPnr-IiI_6vwkQIj0NR2s8yeyI5pRIGHlrIsRM8Er1FLfrVanXJ8fGAQ-0Iv6IJg4ocCeordCq_TILoY2qWzye76Q2pufgU6epEYUaAL49F6QozMFe4hTtFBY92tfacOyaVPFksjGEirYbnLPnekudMt_CRyNTDIjXuuADpwOIxmYi7qWOfvWpxOz8vlN5mFFWkR9Zqmoyn_-iCPwM9jd9XjhQTBd1MYC1uOO3GC2CixLNzuLNcXekwscJnc0kFofWalO3uZVrvQcs2ppUVj2Ke5qi1htUDuMiMA2uQVNBBJhl8RYVHzxZO6Vq1q6sEq26MFTSkdAzSHcnXYCXA\u0026h=4qpRzpIXG2P4pOc2Y-ASjQqjnFpWLxUJvwfJk7Q_EmI" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411029085137\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=lZ8TbnpTJqUbRUMoCM7zvaIlzWWnTU81eVmyO9Rt14aGCpPDibCMx5KrrGh4MDXO4OD7GsukmD5h62fkhFQJLsRYKeDEutt8FzR4sZ7Y45pbIxLSYY7t9_WviMnW5fm_tiHhMCEPMNmS_CmybKwDVFlZ6p9i9DWkfw7b8bM8tnz7xtBTNTB69fFSFybg6iKjdhQO5j4_Lx1r0I972kMDsq-5QMN-SXG7xdShCMlHpmxtShgGoHyLQfTWit16T4N2vNVbMIsea7YYNnQWl_C4h90DvSa9hltK5RfPbUMF-TxdHkRwCm8DmgqEQd7-BESs4PFUWmALbM-WRPADkXwvgg\u0026h=-LKAx2z_DLJLbIKtgSXBtxSjJzV6z9sdyKxD6uvomBo" ], - "x-ms-request-id": [ "551af41c-1315-4c62-88fa-01f1d452137d" ], - "x-ms-correlation-request-id": [ "04aa9b38-764a-4802-9d50-c7f8276077ce" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302839484527\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=csnLPnr-IiI_6vwkQIj0NR2s8yeyI5pRIGHlrIsRM8Er1FLfrVanXJ8fGAQ-0Iv6IJg4ocCeordCq_TILoY2qWzye76Q2pufgU6epEYUaAL49F6QozMFe4hTtFBY92tfacOyaVPFksjGEirYbnLPnekudMt_CRyNTDIjXuuADpwOIxmYi7qWOfvWpxOz8vlN5mFFWkR9Zqmoyn_-iCPwM9jd9XjhQTBd1MYC1uOO3GC2CixLNzuLNcXekwscJnc0kFofWalO3uZVrvQcs2ppUVj2Ke5qi1htUDuMiMA2uQVNBBJhl8RYVHzxZO6Vq1q6sEq26MFTSkdAzSHcnXYCXA\u0026h=4qpRzpIXG2P4pOc2Y-ASjQqjnFpWLxUJvwfJk7Q_EmI" ], + "x-ms-request-id": [ "4c48b1c1-9459-4cda-a5b6-feaa6b50e787" ], + "x-ms-correlation-request-id": [ "312dff10-19aa-4769-9674-7422dca7823a" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205822Z:04aa9b38-764a-4802-9d50-c7f8276077ce" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051803Z:312dff10-19aa-4769-9674-7422dca7823a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A639656679B84B4CB699703D24942189 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:58:22Z" ], - "Date": [ "Mon, 21 Oct 2024 20:58:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: CE941B1479FE4262BA1164871607388C Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:18:03Z" ], + "Date": [ "Fri, 25 Oct 2024 05:18:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "574" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\"}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\"}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411029085137\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=lZ8TbnpTJqUbRUMoCM7zvaIlzWWnTU81eVmyO9Rt14aGCpPDibCMx5KrrGh4MDXO4OD7GsukmD5h62fkhFQJLsRYKeDEutt8FzR4sZ7Y45pbIxLSYY7t9_WviMnW5fm_tiHhMCEPMNmS_CmybKwDVFlZ6p9i9DWkfw7b8bM8tnz7xtBTNTB69fFSFybg6iKjdhQO5j4_Lx1r0I972kMDsq-5QMN-SXG7xdShCMlHpmxtShgGoHyLQfTWit16T4N2vNVbMIsea7YYNnQWl_C4h90DvSa9hltK5RfPbUMF-TxdHkRwCm8DmgqEQd7-BESs4PFUWmALbM-WRPADkXwvgg\u0026h=-LKAx2z_DLJLbIKtgSXBtxSjJzV6z9sdyKxD6uvomBo+3": { + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302839484527\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=csnLPnr-IiI_6vwkQIj0NR2s8yeyI5pRIGHlrIsRM8Er1FLfrVanXJ8fGAQ-0Iv6IJg4ocCeordCq_TILoY2qWzye76Q2pufgU6epEYUaAL49F6QozMFe4hTtFBY92tfacOyaVPFksjGEirYbnLPnekudMt_CRyNTDIjXuuADpwOIxmYi7qWOfvWpxOz8vlN5mFFWkR9Zqmoyn_-iCPwM9jd9XjhQTBd1MYC1uOO3GC2CixLNzuLNcXekwscJnc0kFofWalO3uZVrvQcs2ppUVj2Ke5qi1htUDuMiMA2uQVNBBJhl8RYVHzxZO6Vq1q6sEq26MFTSkdAzSHcnXYCXA\u0026h=4qpRzpIXG2P4pOc2Y-ASjQqjnFpWLxUJvwfJk7Q_EmI+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411029085137\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=lZ8TbnpTJqUbRUMoCM7zvaIlzWWnTU81eVmyO9Rt14aGCpPDibCMx5KrrGh4MDXO4OD7GsukmD5h62fkhFQJLsRYKeDEutt8FzR4sZ7Y45pbIxLSYY7t9_WviMnW5fm_tiHhMCEPMNmS_CmybKwDVFlZ6p9i9DWkfw7b8bM8tnz7xtBTNTB69fFSFybg6iKjdhQO5j4_Lx1r0I972kMDsq-5QMN-SXG7xdShCMlHpmxtShgGoHyLQfTWit16T4N2vNVbMIsea7YYNnQWl_C4h90DvSa9hltK5RfPbUMF-TxdHkRwCm8DmgqEQd7-BESs4PFUWmALbM-WRPADkXwvgg\u0026h=-LKAx2z_DLJLbIKtgSXBtxSjJzV6z9sdyKxD6uvomBo", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302839484527\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=csnLPnr-IiI_6vwkQIj0NR2s8yeyI5pRIGHlrIsRM8Er1FLfrVanXJ8fGAQ-0Iv6IJg4ocCeordCq_TILoY2qWzye76Q2pufgU6epEYUaAL49F6QozMFe4hTtFBY92tfacOyaVPFksjGEirYbnLPnekudMt_CRyNTDIjXuuADpwOIxmYi7qWOfvWpxOz8vlN5mFFWkR9Zqmoyn_-iCPwM9jd9XjhQTBd1MYC1uOO3GC2CixLNzuLNcXekwscJnc0kFofWalO3uZVrvQcs2ppUVj2Ke5qi1htUDuMiMA2uQVNBBJhl8RYVHzxZO6Vq1q6sEq26MFTSkdAzSHcnXYCXA\u0026h=4qpRzpIXG2P4pOc2Y-ASjQqjnFpWLxUJvwfJk7Q_EmI", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "44" ], - "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -115,43 +115,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a008b4b-0000-0800-0000-6716c0500000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411331948252\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3NBdSzC9rvhuC58IcRhH1QUtxIDNCsk2XYnWny4vms1iPQgBOOEyo9LC5VnYaQPqarEmWMUz0XN7bOSPft3HuK-xtbvlrWdS1WJS9GSWyadV02hEt5DU0mA5TADloKauVeqjlcvjQ3qp2YFV_sly6pDzbRl_xdAuJncpb0Lo4f3hPLgCD3ZX3MXZKxIw7-dmX36DJFy6vpmkPSvZ_bQ3BRSgAqyrGZXHnMulO17oPWr1u5SKeWOncdVJsac5IzClkW-W2EvV7tEPA-AnPA6V2RKeQClMxMa3wNRDlp2ijf8BPXt6ZBZFmPsgcI14GG9FmZNTfzj5AT1SZkyHsFgLMQ\u0026h=fK4qxCq6ORgEMpnkQqcBMwrEU2nNMLK0wk3pXqQqoRo" ], + "ETag": [ "\"01034566-0000-0800-0000-671b29ed0000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303141661924\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=mvROlMZLOlo9GkweZavrbsTNYyj-Nuaht05UiM60OPsBgehNDQ4S2--cQWUcv21TcAn2swTo1qN2urxLBBje8-agGf-m0h--HPUxpLiXlbRqmi57kOGn8nLgrqgM4EQE33ruT1KlfrGQ98bJRIMjHsOW_XAh9oS-o_JjL9r4oJ9-21PoCMkinimKvzth-SNLJnth41jN92PsxCS1olEz-_I5c6WwyEQ0RWE4E96_m7ROMjvFsx16JJnRn0ZnsZ16Htl6R_l3fLSCc3pCrBFEm1PzE_QZyaLR-19sh_iHynQwQZVpIfqBseg5b0J4ZgsYlsLO9MhRVQRl2cz5leI4IQ\u0026h=YoirOz6zlxqbzmO4ptN_Q-k1qW-JNVQEiox5-LNrukI" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411331792003\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=8CFyTQFL-Y_NEssq3yIuVahs5G3Sln6BPv2CbO9KfDYMk_Jri6S3ZqyBAzh2-OYpyog6tXYi2HASiCEO32ce3PJ3BDlIYZbQFyJO8FGBTydjN7zUoA3AdoYofj6ZoDuGBeuhI1S0TRCAhKDZgpaWdty7k-ZPHcsUhZPDJmSTp-4f9-4SVU8-UfGyPE9tV-dkznFw1cmhJl3-hJ4qXvf-k-OT1rTyg_k-Wn6TYH2NaTuEQyN8OUBvS9zOYwjYDAv5iH9eAsO9ol1K-yDsj0_kMP0KeDSzVxJ8e2Yopr6J0YgyzphaA3_tiNdW4DWhtXOJ2oa9FHyOBr5tzwdaAQuCWw\u0026h=GN3U-NryBOTeEuJ06y-g-sFymBA6FslDGB1DxxGXnKY" ], - "x-ms-request-id": [ "1a770749-adb4-415a-9dfb-af621de197da" ], - "x-ms-correlation-request-id": [ "6f651c54-9af7-43b8-a169-0ff0296177d1" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303141505661\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=YUYZMCnrDnVFhxkt3q1MX3CKLLbo2Z12ZpIMmEiNPdHJr_j3YLKCZjfNLt-SUxZ9mRhw7np6EU6f_eLsNBc5NYOr7JKrGAomh-6vbNslEL_zD-NYUrwodHc3dNNIOYsz8qhI8AbfIS6SLHA_Ba9tsHQhf9sNVnXfwSSk-tlQ9zpT2DwKFKpDq9z0o1KqF4hCQofZw_P-REUOKXeagrM14w6sCS6E-FOSD7sWVwDfB2tJR891_E9wfyjkh0kpzF4Rea-qBKpWLfG0IlD-mCh6n0ZccdIAwUQQp0XgpzyZvdO4QhyiYkgxzovehQy55_JnCN9dssKfi_YuynEkWzs1dw\u0026h=P8INJMGPvAq1QVXovcCZgo3rZycL6PBMN_p7qJjPM-w" ], + "x-ms-request-id": [ "8031b731-966d-46e3-90ad-eb27729a4e2c" ], + "x-ms-correlation-request-id": [ "d1dfa8f7-d678-4584-9382-46f5f950008a" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205853Z:6f651c54-9af7-43b8-a169-0ff0296177d1" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051834Z:d1dfa8f7-d678-4584-9382-46f5f950008a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 55DDB4F90114440386F32D3136836039 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:58:52Z" ], - "Date": [ "Mon, 21 Oct 2024 20:58:52 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B1924BE568904A84AC6AD6C4E7F66410 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:18:34Z" ], + "Date": [ "Fri, 25 Oct 2024 05:18:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "574" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\"}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\"}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411331792003\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=8CFyTQFL-Y_NEssq3yIuVahs5G3Sln6BPv2CbO9KfDYMk_Jri6S3ZqyBAzh2-OYpyog6tXYi2HASiCEO32ce3PJ3BDlIYZbQFyJO8FGBTydjN7zUoA3AdoYofj6ZoDuGBeuhI1S0TRCAhKDZgpaWdty7k-ZPHcsUhZPDJmSTp-4f9-4SVU8-UfGyPE9tV-dkznFw1cmhJl3-hJ4qXvf-k-OT1rTyg_k-Wn6TYH2NaTuEQyN8OUBvS9zOYwjYDAv5iH9eAsO9ol1K-yDsj0_kMP0KeDSzVxJ8e2Yopr6J0YgyzphaA3_tiNdW4DWhtXOJ2oa9FHyOBr5tzwdaAQuCWw\u0026h=GN3U-NryBOTeEuJ06y-g-sFymBA6FslDGB1DxxGXnKY+4": { + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303141505661\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=YUYZMCnrDnVFhxkt3q1MX3CKLLbo2Z12ZpIMmEiNPdHJr_j3YLKCZjfNLt-SUxZ9mRhw7np6EU6f_eLsNBc5NYOr7JKrGAomh-6vbNslEL_zD-NYUrwodHc3dNNIOYsz8qhI8AbfIS6SLHA_Ba9tsHQhf9sNVnXfwSSk-tlQ9zpT2DwKFKpDq9z0o1KqF4hCQofZw_P-REUOKXeagrM14w6sCS6E-FOSD7sWVwDfB2tJR891_E9wfyjkh0kpzF4Rea-qBKpWLfG0IlD-mCh6n0ZccdIAwUQQp0XgpzyZvdO4QhyiYkgxzovehQy55_JnCN9dssKfi_YuynEkWzs1dw\u0026h=P8INJMGPvAq1QVXovcCZgo3rZycL6PBMN_p7qJjPM-w+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411331792003\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=8CFyTQFL-Y_NEssq3yIuVahs5G3Sln6BPv2CbO9KfDYMk_Jri6S3ZqyBAzh2-OYpyog6tXYi2HASiCEO32ce3PJ3BDlIYZbQFyJO8FGBTydjN7zUoA3AdoYofj6ZoDuGBeuhI1S0TRCAhKDZgpaWdty7k-ZPHcsUhZPDJmSTp-4f9-4SVU8-UfGyPE9tV-dkznFw1cmhJl3-hJ4qXvf-k-OT1rTyg_k-Wn6TYH2NaTuEQyN8OUBvS9zOYwjYDAv5iH9eAsO9ol1K-yDsj0_kMP0KeDSzVxJ8e2Yopr6J0YgyzphaA3_tiNdW4DWhtXOJ2oa9FHyOBr5tzwdaAQuCWw\u0026h=GN3U-NryBOTeEuJ06y-g-sFymBA6FslDGB1DxxGXnKY", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303141505661\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=YUYZMCnrDnVFhxkt3q1MX3CKLLbo2Z12ZpIMmEiNPdHJr_j3YLKCZjfNLt-SUxZ9mRhw7np6EU6f_eLsNBc5NYOr7JKrGAomh-6vbNslEL_zD-NYUrwodHc3dNNIOYsz8qhI8AbfIS6SLHA_Ba9tsHQhf9sNVnXfwSSk-tlQ9zpT2DwKFKpDq9z0o1KqF4hCQofZw_P-REUOKXeagrM14w6sCS6E-FOSD7sWVwDfB2tJR891_E9wfyjkh0kpzF4Rea-qBKpWLfG0IlD-mCh6n0ZccdIAwUQQp0XgpzyZvdO4QhyiYkgxzovehQy55_JnCN9dssKfi_YuynEkWzs1dw\u0026h=P8INJMGPvAq1QVXovcCZgo3rZycL6PBMN_p7qJjPM-w", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "45" ], - "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -161,43 +161,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a008b4b-0000-0800-0000-6716c0500000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411633588508\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=QV0pf77DVSSfVy-tjWD2vgrwsoxHWzz3Eo6Lj1ljzWlvx_HuKkVSKms7-P9hiJJ9sC4UDrEoqxivEb68cOi6pLXHISyoqHpBusF6Vqfm0eK4iJKcNoQyskHnlbWfZQCgfN9fo0O5ZZZ7qD0LEymepxwPR2eFbmTRlCExLDpNjVxqFsK4MVFK9UizighvjkUxK9S73TAyvv25CAWE0YBiEmXYKn7kHPduhFKSvr-OmLs0TMiAlReET5WokYc_YkFGjqahuYrSYqx9AClD520vCpYBsk-naqu0f14Nc7_AFpncV5lNltNCKFv9FiYILuYsANLelQnLXOMKa377NRa2IA\u0026h=mFngmvtvybtj_YgxL1VniWbQCbMUTZow92THQH3phIw" ], + "ETag": [ "\"01034566-0000-0800-0000-671b29ed0000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303443630651\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=FFM1e94NFWJBJ7qaPqQGwHknHiamCJXyIgNlarhtOnRQTcElxNfki8W5m6BWrDaVat1KHnQfbWskdfozo60q9BGTg_2hEL9vhsPjrWrpeu-cHLM26xoNE8dMxLyoo0ouNjNBd_0332AWyfiXyvmvI9cfammqrLFF46cONFkfhEILRVG4KQrz2-0jepWdvXIBrhwHkZxNKZwDzas2LPAuYDXgbwgeHCQW5NN6JkDnZTq5UpEipRe9KR_urvOMo-A1eBvgVvoTFil-XSRcR1bGoVKfVHfP6hqcoqWpiJ_Y6avu1vXayUdFSYBa02WE73CfPSgUS0wK9WJ-y9ZJZwQOkA\u0026h=S2yFSVf2LOlijKfAjX_QnZ6WEUWZT8vl0wjcdnx0GPo" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411633588508\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=QV0pf77DVSSfVy-tjWD2vgrwsoxHWzz3Eo6Lj1ljzWlvx_HuKkVSKms7-P9hiJJ9sC4UDrEoqxivEb68cOi6pLXHISyoqHpBusF6Vqfm0eK4iJKcNoQyskHnlbWfZQCgfN9fo0O5ZZZ7qD0LEymepxwPR2eFbmTRlCExLDpNjVxqFsK4MVFK9UizighvjkUxK9S73TAyvv25CAWE0YBiEmXYKn7kHPduhFKSvr-OmLs0TMiAlReET5WokYc_YkFGjqahuYrSYqx9AClD520vCpYBsk-naqu0f14Nc7_AFpncV5lNltNCKFv9FiYILuYsANLelQnLXOMKa377NRa2IA\u0026h=mFngmvtvybtj_YgxL1VniWbQCbMUTZow92THQH3phIw" ], - "x-ms-request-id": [ "0dd9570f-cbf2-4bb0-bb46-fd9e307341da" ], - "x-ms-correlation-request-id": [ "89c1c3af-623e-4706-8f33-b046a719c2b7" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303443474380\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=1b7KKK1WamT4encMm_hY-XUDJC87YZSoNJxq2xHWqZvxMTCUuYPF4_SswsVqFhr_3HLJmoLaw5PAZ9loQ2ODi7IIazYvowOYxB27J34HcAc3pazwXQQRXFb8n1xIlEdWog5cC46XhSH2tpHamL-AIjwJb-pX1Z95XHEWXmkQAq9GgOuigSrPFMmM3CosKxnHU4W57kTk3R1L4_eyEx_a3Nq2AU9DSa9kS_BRQPCm_pmdu8ECLc5XjsN-SdGqKIuKZigdyciqG9gLZvdVvSFVI6CO4GEHBlRDwy0CJmgqZEGZv0JBkTDN30ixyv22rM09tlWEnyCRcuGvJMtVTPNdew\u0026h=6XTk0zZwjnBqfsvPVhbk3yrZHW64dI3JVTD9BV0Jsdk" ], + "x-ms-request-id": [ "1c5b5b88-c60c-40cd-98fa-5a156dc1275b" ], + "x-ms-correlation-request-id": [ "9702dbaf-1062-4c8f-9bbc-7be514e1784d" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205923Z:89c1c3af-623e-4706-8f33-b046a719c2b7" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051904Z:9702dbaf-1062-4c8f-9bbc-7be514e1784d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C796E49F131341E29945F87C2CDFCC64 Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:59:23Z" ], - "Date": [ "Mon, 21 Oct 2024 20:59:22 GMT" ] + "X-MSEdge-Ref": [ "Ref A: A89737918C5E453B9A52346FD6B577F1 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:19:04Z" ], + "Date": [ "Fri, 25 Oct 2024 05:19:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "574" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\"}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\"}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411633588508\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=QV0pf77DVSSfVy-tjWD2vgrwsoxHWzz3Eo6Lj1ljzWlvx_HuKkVSKms7-P9hiJJ9sC4UDrEoqxivEb68cOi6pLXHISyoqHpBusF6Vqfm0eK4iJKcNoQyskHnlbWfZQCgfN9fo0O5ZZZ7qD0LEymepxwPR2eFbmTRlCExLDpNjVxqFsK4MVFK9UizighvjkUxK9S73TAyvv25CAWE0YBiEmXYKn7kHPduhFKSvr-OmLs0TMiAlReET5WokYc_YkFGjqahuYrSYqx9AClD520vCpYBsk-naqu0f14Nc7_AFpncV5lNltNCKFv9FiYILuYsANLelQnLXOMKa377NRa2IA\u0026h=mFngmvtvybtj_YgxL1VniWbQCbMUTZow92THQH3phIw+5": { + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303443474380\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=1b7KKK1WamT4encMm_hY-XUDJC87YZSoNJxq2xHWqZvxMTCUuYPF4_SswsVqFhr_3HLJmoLaw5PAZ9loQ2ODi7IIazYvowOYxB27J34HcAc3pazwXQQRXFb8n1xIlEdWog5cC46XhSH2tpHamL-AIjwJb-pX1Z95XHEWXmkQAq9GgOuigSrPFMmM3CosKxnHU4W57kTk3R1L4_eyEx_a3Nq2AU9DSa9kS_BRQPCm_pmdu8ECLc5XjsN-SdGqKIuKZigdyciqG9gLZvdVvSFVI6CO4GEHBlRDwy0CJmgqZEGZv0JBkTDN30ixyv22rM09tlWEnyCRcuGvJMtVTPNdew\u0026h=6XTk0zZwjnBqfsvPVhbk3yrZHW64dI3JVTD9BV0Jsdk+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411633588508\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=QV0pf77DVSSfVy-tjWD2vgrwsoxHWzz3Eo6Lj1ljzWlvx_HuKkVSKms7-P9hiJJ9sC4UDrEoqxivEb68cOi6pLXHISyoqHpBusF6Vqfm0eK4iJKcNoQyskHnlbWfZQCgfN9fo0O5ZZZ7qD0LEymepxwPR2eFbmTRlCExLDpNjVxqFsK4MVFK9UizighvjkUxK9S73TAyvv25CAWE0YBiEmXYKn7kHPduhFKSvr-OmLs0TMiAlReET5WokYc_YkFGjqahuYrSYqx9AClD520vCpYBsk-naqu0f14Nc7_AFpncV5lNltNCKFv9FiYILuYsANLelQnLXOMKa377NRa2IA\u0026h=mFngmvtvybtj_YgxL1VniWbQCbMUTZow92THQH3phIw", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303443474380\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=1b7KKK1WamT4encMm_hY-XUDJC87YZSoNJxq2xHWqZvxMTCUuYPF4_SswsVqFhr_3HLJmoLaw5PAZ9loQ2ODi7IIazYvowOYxB27J34HcAc3pazwXQQRXFb8n1xIlEdWog5cC46XhSH2tpHamL-AIjwJb-pX1Z95XHEWXmkQAq9GgOuigSrPFMmM3CosKxnHU4W57kTk3R1L4_eyEx_a3Nq2AU9DSa9kS_BRQPCm_pmdu8ECLc5XjsN-SdGqKIuKZigdyciqG9gLZvdVvSFVI6CO4GEHBlRDwy0CJmgqZEGZv0JBkTDN30ixyv22rM09tlWEnyCRcuGvJMtVTPNdew\u0026h=6XTk0zZwjnBqfsvPVhbk3yrZHW64dI3JVTD9BV0Jsdk", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "46" ], - "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -207,43 +207,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a008b4b-0000-0800-0000-6716c0500000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411936761446\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=g_dPM0Q6qQOrm1FZSYwDJW9q_frcEU8WeLqsnmVLcvvK5HoEedAXTly6wZ4qxwSz_DV1gFdGuB1NeOiwn7KbH8fg2sR3Q7bvThzMkdUAXQiXB69jgISLWAFXTSJ5uMaeruUkyZrjL47Qq9rzEZb4wRLqtn-suf-vuNNOUsiiVW95SdG2ahj4hV8gMMGUfZ8cqlBIBD0iQTyI_-d6CQh-DP2tkLCwGIUD2eMh8sXak7vBXFVJl47bPPKpQOitIdwiCKwz6q5MFAneLtkmzxkhzdi22A6wK_DYwPgjasI0_3ko6PxNcZzA1XX1L8khPAUjMaL2R1d9qpIdU5LZv7XLZw\u0026h=qF91j5_S20jnUsOixO2SyfqSdxwQFuIpOk8ffzySyKA" ], + "ETag": [ "\"01034566-0000-0800-0000-671b29ed0000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303745570873\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=giq84dnfnpGXZQDndQR48DpevPqblyqodZBuhI_j1pTLfT42dmE_rfE5YVGJwdeGUM-S2zmIzyF8BQEaqOctgmWrj6erJrqZ4VIaCpQw-E7EtFW5MBWCc-3J818wn3dmH3wIVkzy_AWBp7uNCjbQ86unl-ST-kBN4KenV-0qn_mtbFwNWFzbFGRx2np1sKJkbcsWh22j-Iwox4M-13PX0FzTf8SIpPvnJ1X556J2eslCKTcRHs1kKk8v4r2r2soOgWkS5Pf7UfuA_aWDJtJ7SQJuqQF3MnR_liMeRvjYX4xq7hLTyHKt8vhwf8_QvYJtopPgRdHdUYNqHgsGMF_5sg\u0026h=OhgBBokml9P7uYEF2x7kI6hNIiNrX2NH_Opd-e8yJzc" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411936294408\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=L5SIqVPQ_DzcCouPUKqD38vNRqQHb185ONpqGeJ9sKs3RiFOVd6w0z6fF-aiQ9P4lYV5Ls0ctAZO3cP_SHYBdYCLO4P-pvCeNo78VCZx1pL69h9hF4JJqi5T13F7gXuR0KTe_31Sxy16o6WxgiHCFukQ7pHmY8YeovmDx_xhICjiLyS5WPMiYQuqTKU1k5G9B1rHckU8fH4KSsgCWQJ5uBbdDMTSrMSq2Nv5YIluWbBhHIpToBLLV6LkOYHmFCa71iZiXKYGPmQA38RSgjUhYQBgKML0GFcw-5D87H2KE4qACHa8RE8So25HIgWXI2WsbJS9PbPr7EAGsHQlE29CFw\u0026h=DC8JrY4C5PuUz3c4QLzlRW9a98p4s6rUgyjf-mdmCek" ], - "x-ms-request-id": [ "0ec3c54d-a69f-4a3e-b49c-d68353f21d4b" ], - "x-ms-correlation-request-id": [ "70327c88-663e-4dc8-a529-264d6a497eb8" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303745570873\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=giq84dnfnpGXZQDndQR48DpevPqblyqodZBuhI_j1pTLfT42dmE_rfE5YVGJwdeGUM-S2zmIzyF8BQEaqOctgmWrj6erJrqZ4VIaCpQw-E7EtFW5MBWCc-3J818wn3dmH3wIVkzy_AWBp7uNCjbQ86unl-ST-kBN4KenV-0qn_mtbFwNWFzbFGRx2np1sKJkbcsWh22j-Iwox4M-13PX0FzTf8SIpPvnJ1X556J2eslCKTcRHs1kKk8v4r2r2soOgWkS5Pf7UfuA_aWDJtJ7SQJuqQF3MnR_liMeRvjYX4xq7hLTyHKt8vhwf8_QvYJtopPgRdHdUYNqHgsGMF_5sg\u0026h=OhgBBokml9P7uYEF2x7kI6hNIiNrX2NH_Opd-e8yJzc" ], + "x-ms-request-id": [ "92ef099f-c6a2-4de0-98e5-cb874ea0f7f1" ], + "x-ms-correlation-request-id": [ "73eee183-afaf-4a56-b792-6bfb6f31e36b" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T205953Z:70327c88-663e-4dc8-a529-264d6a497eb8" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T051934Z:73eee183-afaf-4a56-b792-6bfb6f31e36b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: EED066B29D0B4855A2353B424C8EB91D Ref B: CO6AA3150219027 Ref C: 2024-10-21T20:59:53Z" ], - "Date": [ "Mon, 21 Oct 2024 20:59:53 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 086647D429CF4798A58D9B2780A47350 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:19:34Z" ], + "Date": [ "Fri, 25 Oct 2024 05:19:33 GMT" ] }, "ContentHeaders": { "Content-Length": [ "574" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\"}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\"}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411936294408\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=L5SIqVPQ_DzcCouPUKqD38vNRqQHb185ONpqGeJ9sKs3RiFOVd6w0z6fF-aiQ9P4lYV5Ls0ctAZO3cP_SHYBdYCLO4P-pvCeNo78VCZx1pL69h9hF4JJqi5T13F7gXuR0KTe_31Sxy16o6WxgiHCFukQ7pHmY8YeovmDx_xhICjiLyS5WPMiYQuqTKU1k5G9B1rHckU8fH4KSsgCWQJ5uBbdDMTSrMSq2Nv5YIluWbBhHIpToBLLV6LkOYHmFCa71iZiXKYGPmQA38RSgjUhYQBgKML0GFcw-5D87H2KE4qACHa8RE8So25HIgWXI2WsbJS9PbPr7EAGsHQlE29CFw\u0026h=DC8JrY4C5PuUz3c4QLzlRW9a98p4s6rUgyjf-mdmCek+6": { + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303745570873\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=giq84dnfnpGXZQDndQR48DpevPqblyqodZBuhI_j1pTLfT42dmE_rfE5YVGJwdeGUM-S2zmIzyF8BQEaqOctgmWrj6erJrqZ4VIaCpQw-E7EtFW5MBWCc-3J818wn3dmH3wIVkzy_AWBp7uNCjbQ86unl-ST-kBN4KenV-0qn_mtbFwNWFzbFGRx2np1sKJkbcsWh22j-Iwox4M-13PX0FzTf8SIpPvnJ1X556J2eslCKTcRHs1kKk8v4r2r2soOgWkS5Pf7UfuA_aWDJtJ7SQJuqQF3MnR_liMeRvjYX4xq7hLTyHKt8vhwf8_QvYJtopPgRdHdUYNqHgsGMF_5sg\u0026h=OhgBBokml9P7uYEF2x7kI6hNIiNrX2NH_Opd-e8yJzc+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651411936294408\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=L5SIqVPQ_DzcCouPUKqD38vNRqQHb185ONpqGeJ9sKs3RiFOVd6w0z6fF-aiQ9P4lYV5Ls0ctAZO3cP_SHYBdYCLO4P-pvCeNo78VCZx1pL69h9hF4JJqi5T13F7gXuR0KTe_31Sxy16o6WxgiHCFukQ7pHmY8YeovmDx_xhICjiLyS5WPMiYQuqTKU1k5G9B1rHckU8fH4KSsgCWQJ5uBbdDMTSrMSq2Nv5YIluWbBhHIpToBLLV6LkOYHmFCa71iZiXKYGPmQA38RSgjUhYQBgKML0GFcw-5D87H2KE4qACHa8RE8So25HIgWXI2WsbJS9PbPr7EAGsHQlE29CFw\u0026h=DC8JrY4C5PuUz3c4QLzlRW9a98p4s6rUgyjf-mdmCek", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303745570873\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=giq84dnfnpGXZQDndQR48DpevPqblyqodZBuhI_j1pTLfT42dmE_rfE5YVGJwdeGUM-S2zmIzyF8BQEaqOctgmWrj6erJrqZ4VIaCpQw-E7EtFW5MBWCc-3J818wn3dmH3wIVkzy_AWBp7uNCjbQ86unl-ST-kBN4KenV-0qn_mtbFwNWFzbFGRx2np1sKJkbcsWh22j-Iwox4M-13PX0FzTf8SIpPvnJ1X556J2eslCKTcRHs1kKk8v4r2r2soOgWkS5Pf7UfuA_aWDJtJ7SQJuqQF3MnR_liMeRvjYX4xq7hLTyHKt8vhwf8_QvYJtopPgRdHdUYNqHgsGMF_5sg\u0026h=OhgBBokml9P7uYEF2x7kI6hNIiNrX2NH_Opd-e8yJzc", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "47" ], - "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -253,41 +253,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00d664-0000-0800-0000-6716c0ce0000\"" ], + "ETag": [ "\"01038375-0000-0800-0000-671b2a6b0000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "031edb53-92f9-45f2-84e8-a7f5263abec3" ], - "x-ms-correlation-request-id": [ "1d93d829-bcd5-4a07-aa86-23e61f129a45" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210024Z:1d93d829-bcd5-4a07-aa86-23e61f129a45" ], + "x-ms-request-id": [ "0db7ad8b-998a-42cc-ba91-8bbc18b1f6e5" ], + "x-ms-correlation-request-id": [ "1d0cd8a7-4d76-49a7-a361-46cd6384e5c5" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052004Z:1d0cd8a7-4d76-49a7-a361-46cd6384e5c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 283292D8AD544027B9621F0996ABB024 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:23Z" ], - "Date": [ "Mon, 21 Oct 2024 21:00:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 44E4BF6F6EB34802908BE525D247FFD0 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:04Z" ], + "Date": [ "Fri, 25 Oct 2024 05:20:03 GMT" ] }, "ContentHeaders": { "Content-Length": [ "593" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\",\"properties\":null}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\",\"properties\":null}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0+7": { + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F?api-version=2024-02-28-preview\u0026t=638651410727084066\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=s0wRAonXedOpaCfSC0edj9hd9AHPdJY8y87SJlYBlzGqzDOgMP70nGGTWpY89V8bp8qK9eCJD6qPUJHO2nW3MiNCnTtIB-wDIizihMEsbADP4BnMkHItufNITyCEeAgtQSUqoS1DlZIb2dM4gNDPKKjQ_b2xWK_y62RptF87ukEkngwtRDh9J2UGXS-WekZ8Jl13ju-PL90VyaA4_NwAxXK07aZ09NIjCjiQuI4BY6PEbtI8yO5TLdKQ9wUSx7hEOKs-h7l2giP_M5vrREVoasm_JZnxhzFuMetU8ZQk2pKj9B8d__NKJdKCNUAIPFL-pcWts2V1Zk0_8Cmkz4YiLg\u0026h=oMkBoTvVOYIsiVBXKLHSF-hZ27kVWRARzswlYTCgYA0", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "48" ], - "x-ms-client-request-id": [ "6a5ce805-c153-4e95-8417-2b55c4bbfbef" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -297,28 +297,28 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a00d664-0000-0800-0000-6716c0ce0000\"" ], + "ETag": [ "\"01038375-0000-0800-0000-671b2a6b0000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "fa41d9bc-0bed-4034-968b-59738909e863" ], - "x-ms-correlation-request-id": [ "6b289d72-e6d0-45a1-884c-a35920cc60aa" ], + "x-ms-request-id": [ "703ee371-40ca-4a34-b65d-63f6a99ef7f6" ], + "x-ms-correlation-request-id": [ "1581d2bc-8156-424b-8446-c30c0d4644cb" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210024Z:6b289d72-e6d0-45a1-884c-a35920cc60aa" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052005Z:1581d2bc-8156-424b-8446-c30c0d4644cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F08A82B8AA544DD08892D47F3AF188CA Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:24Z" ], - "Date": [ "Mon, 21 Oct 2024 21:00:23 GMT" ] + "X-MSEdge-Ref": [ "Ref A: F9F7050DE1B64994A4603DCC14C2F239 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:04Z" ], + "Date": [ "Fri, 25 Oct 2024 05:20:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "593" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"name\":\"31caacbe-b25f-4cdc-94f3-a70acaf49a49*CD174C9FD33D744E972D84E01832165F2F9FF82B364A743F2CB571619645A11F\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qv4mlb\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T20:57:52.2127865Z\",\"properties\":null}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\",\"properties\":null}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+DeleteNonexistent+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nonexistent?api-version=2024-02-28-preview+1": { + "Remove-AzDeidService+[NoContext]+DeleteNonexistent+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nonexistent?api-version=2024-02-28-preview+1": { "Request": { "Method": "DELETE", "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nonexistent?api-version=2024-02-28-preview", @@ -326,11 +326,11 @@ "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "49" ], - "x-ms-client-request-id": [ "0b5337ff-e0f5-41de-a13b-12cb5e6fec80" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_Delete" ], + "x-ms-client-request-id": [ "b5dba788-0c69-4279-a5b5-2bd82593fe3f" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -343,14 +343,14 @@ "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-request-id": [ "5f0be9a3-c4a9-4a97-bbd0-3ecdff133ad1" ], - "x-ms-correlation-request-id": [ "5f0be9a3-c4a9-4a97-bbd0-3ecdff133ad1" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210024Z:5f0be9a3-c4a9-4a97-bbd0-3ecdff133ad1" ], + "x-ms-request-id": [ "02df83cf-8698-4186-b568-b99f08aee454" ], + "x-ms-correlation-request-id": [ "02df83cf-8698-4186-b568-b99f08aee454" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052005Z:02df83cf-8698-4186-b568-b99f08aee454" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 623D0086233441B2B02FFDA37C279C25 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:24Z" ], - "Date": [ "Mon, 21 Oct 2024 21:00:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 7128E42994934F4DA8992388877C1E34 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:05Z" ], + "Date": [ "Fri, 25 Oct 2024 05:20:04 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ] @@ -359,19 +359,19 @@ "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp?api-version=2024-02-28-preview+1": { + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d?api-version=2024-02-28-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp?api-version=2024-02-28-preview", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d?api-version=2024-02-28-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "eb259b10-05b4-4c81-b7f6-b0dc62a34ab8" ], - "CommandName": [ "Get-AzHealthDeidService" ], - "FullCommandName": [ "Get-AzHealthDeidService_Get" ], + "x-ms-client-request-id": [ "65d3bdd3-cc57-4a9f-b5cb-a1104bd1f355" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -382,41 +382,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8101722d-0000-0800-0000-6716bed70000\"" ], + "ETag": [ "\"1d01f66c-0000-0800-0000-671b28740000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "d5787545-7c9e-4e40-81d4-6985bffc545c" ], - "x-ms-correlation-request-id": [ "25f5c0d8-e26b-4daf-8c70-191f508cda9d" ], + "x-ms-request-id": [ "23ef3984-317e-4cd6-ad2f-4ffb0bfb0bc9" ], + "x-ms-correlation-request-id": [ "1d992382-5cc9-4ab8-8135-7c3c69c1af50" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210024Z:25f5c0d8-e26b-4daf-8c70-191f508cda9d" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052005Z:1d992382-5cc9-4ab8-8135-7c3c69c1af50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B252047502264B2597C3229C02BF30E9 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:24Z" ], - "Date": [ "Mon, 21 Oct 2024 21:00:24 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 286FF3E37B954963BDD8A4CFA93D3572 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:05Z" ], + "Date": [ "Fri, 25 Oct 2024 05:20:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "638" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"name\":\"9nbgfp\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T20:51:28.3911208Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T20:51:28.3911208Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bfcjhrceffcaeyby.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"name\":\"1aue5d\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:11:08.5819378Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:11:08.5819378Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dtf7abbvcnengvfb.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp?api-version=2024-02-28-preview+2": { + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d?api-version=2024-02-28-preview+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp?api-version=2024-02-28-preview", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d?api-version=2024-02-28-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "51" ], - "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -427,20 +427,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"81014b7e-0000-0800-0000-6716c0e90000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "798" ], + "ETag": [ "\"1d01f4f8-0000-0800-0000-671b2a860000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], "x-ms-providerhub-traffic": [ "True" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8" ], - "x-ms-request-id": [ "2e6cf829-1505-4b6f-a800-b7fa3791c40c" ], - "x-ms-correlation-request-id": [ "108688c4-6860-48fb-8045-ffed1d2c053f" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11998" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210025Z:108688c4-6860-48fb-8045-ffed1d2c053f" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds" ], + "x-ms-request-id": [ "92ee948d-37e4-4a85-a29a-ef9e9d6b4fde" ], + "x-ms-correlation-request-id": [ "83e6c1ab-4f88-49b4-a472-3f69ef626757" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052006Z:83e6c1ab-4f88-49b4-a472-3f69ef626757" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FA4E2D8384124F92A54C0404D5DC529A Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:24Z" ], - "Date": [ "Mon, 21 Oct 2024 21:00:25 GMT" ] + "X-MSEdge-Ref": [ "Ref A: D7A8350A5C004F0BA696024085EF1D6E Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:05Z" ], + "Date": [ "Fri, 25 Oct 2024 05:20:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "4" ], @@ -451,20 +451,20 @@ "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8+3": { + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "52" ], - "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -474,43 +474,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a004169-0000-0800-0000-6716c0e90000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412561948258\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=RVII4loZeRCVztF4p3rrKk0XGJm8il6NfBbz0ZQJCVd27UPUTZhJYH09cZbyNw-Nsz3CT5V95QQ6Dm-YwNc5jVLaLJAPB2PL-ZyoCp8k-ygfxlnrUYMcgEdkEVzNaA3Q2CeNvvt5gl0-q1MiZmI24Sl4c7nBwVGd0VHC57B5PNt69MIxiGAgatXz9eFlNP68hC0tzeHYCqIIYiUTgG5kXxyv2z0k-5hitw59keuOVc_Xuz1tc9qCnCIz3ewY7AoQ55pu_t9FX1pbbXOj1ZA2GV0-b7cjqqzLOu-S8dOeyFP5MuuftxffdyEsLaPJgE4rozrjliXfCk357ZfMnvsvtQ\u0026h=neziMsI9H9H4YjAjJbrePNmIXmK5WSx5nW7-dgkdZoI" ], + "ETag": [ "\"0103207c-0000-0800-0000-671b2a860000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304372405461\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3yaxcbvd3SgXFFpAJMsN_tvBAaxWO4dKdWHX54kvPdOSea2Ex4RyaA8nb4uXvxq9J4gPmx8-1EvwYoOh6oSYTGI-qgCH4hEGUW8ynXXzcHSllS_fRXTn4IGMvRKj5NeSQ9Jo9DbroQA9OnTBn37hWTKhvEQMwFVQ9fB7G595_Lx8Pb2ux4vL7QbPEKnje6de1H-Wwxs8WpSRtp3Ur8InpCpGyiTRptN_M55nbhAzWwF6ZfPY-Qs-fYH6NliG0TNq6dQCfsBqs9i04Cf2LXKRGVF4MSq799KdsRjQ4YnjH6Kq1YzqMojmOQfL1BBjCSkJD2D_xoiBfUObFyvID114zQ\u0026h=tkrRL3GBn3GBER-s4a9XTIsjWOrfL3rf5cKzAUF_8UA" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412561791998\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=PJmN062EkUzLYpeXMi9Hu2vkCdpBQCpxxs9QsOy-5Yk1DVz4Vs6oe0Jew3CL5RqxlKDZc6N3J9ObSBTlMbesZxd64fTgKh8Q1TNRzFxr13IP1mkyneXf2aXdpVSvdG9psCeYn_NxOfcwtE75W4ak7MjVc5-8Wl0WCRdwJxDwNAxTxHfwyuSVAuz3sYqD0EgIuY7lg09-QDlxx_RI0cyv19OoL0LZonBF5MiQhR3kyrlXePeIJH4sWTGeC_JqK4Sy7r0V1T5iHZ5CtnUWMywfsXyFycGYhanagUQxUAQ69v3LIaXNaeu_1S-s2T16bcjE3OkZ6HNS0ltkQd-Jr5ONKg\u0026h=mzi9vfUnTnFh5bxJZz85yiPMqLP1sbuDfibFbIT6EgU" ], - "x-ms-request-id": [ "0a333944-84e7-4a60-891f-c0a86f906ee3" ], - "x-ms-correlation-request-id": [ "dff47f48-f98c-4bd1-a72a-64fd2947913a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304372405461\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3yaxcbvd3SgXFFpAJMsN_tvBAaxWO4dKdWHX54kvPdOSea2Ex4RyaA8nb4uXvxq9J4gPmx8-1EvwYoOh6oSYTGI-qgCH4hEGUW8ynXXzcHSllS_fRXTn4IGMvRKj5NeSQ9Jo9DbroQA9OnTBn37hWTKhvEQMwFVQ9fB7G595_Lx8Pb2ux4vL7QbPEKnje6de1H-Wwxs8WpSRtp3Ur8InpCpGyiTRptN_M55nbhAzWwF6ZfPY-Qs-fYH6NliG0TNq6dQCfsBqs9i04Cf2LXKRGVF4MSq799KdsRjQ4YnjH6Kq1YzqMojmOQfL1BBjCSkJD2D_xoiBfUObFyvID114zQ\u0026h=tkrRL3GBn3GBER-s4a9XTIsjWOrfL3rf5cKzAUF_8UA" ], + "x-ms-request-id": [ "b9b837bb-2dd9-4dd6-92da-a5db7bd1f2bb" ], + "x-ms-correlation-request-id": [ "622c31e9-be9c-42d3-b072-1bea3b50f09f" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210056Z:dff47f48-f98c-4bd1-a72a-64fd2947913a" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052037Z:622c31e9-be9c-42d3-b072-1bea3b50f09f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 526113D8D1EE4FDAA36B290D31721918 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:00:56Z" ], - "Date": [ "Mon, 21 Oct 2024 21:00:55 GMT" ] + "X-MSEdge-Ref": [ "Ref A: C3F627A5F0C94DBFBD4D6C5CB89E758F Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:36Z" ], + "Date": [ "Fri, 25 Oct 2024 05:20:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "574" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\"}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\"}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412561791998\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=PJmN062EkUzLYpeXMi9Hu2vkCdpBQCpxxs9QsOy-5Yk1DVz4Vs6oe0Jew3CL5RqxlKDZc6N3J9ObSBTlMbesZxd64fTgKh8Q1TNRzFxr13IP1mkyneXf2aXdpVSvdG9psCeYn_NxOfcwtE75W4ak7MjVc5-8Wl0WCRdwJxDwNAxTxHfwyuSVAuz3sYqD0EgIuY7lg09-QDlxx_RI0cyv19OoL0LZonBF5MiQhR3kyrlXePeIJH4sWTGeC_JqK4Sy7r0V1T5iHZ5CtnUWMywfsXyFycGYhanagUQxUAQ69v3LIaXNaeu_1S-s2T16bcjE3OkZ6HNS0ltkQd-Jr5ONKg\u0026h=mzi9vfUnTnFh5bxJZz85yiPMqLP1sbuDfibFbIT6EgU+4": { + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304372405461\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3yaxcbvd3SgXFFpAJMsN_tvBAaxWO4dKdWHX54kvPdOSea2Ex4RyaA8nb4uXvxq9J4gPmx8-1EvwYoOh6oSYTGI-qgCH4hEGUW8ynXXzcHSllS_fRXTn4IGMvRKj5NeSQ9Jo9DbroQA9OnTBn37hWTKhvEQMwFVQ9fB7G595_Lx8Pb2ux4vL7QbPEKnje6de1H-Wwxs8WpSRtp3Ur8InpCpGyiTRptN_M55nbhAzWwF6ZfPY-Qs-fYH6NliG0TNq6dQCfsBqs9i04Cf2LXKRGVF4MSq799KdsRjQ4YnjH6Kq1YzqMojmOQfL1BBjCSkJD2D_xoiBfUObFyvID114zQ\u0026h=tkrRL3GBn3GBER-s4a9XTIsjWOrfL3rf5cKzAUF_8UA+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412561791998\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=PJmN062EkUzLYpeXMi9Hu2vkCdpBQCpxxs9QsOy-5Yk1DVz4Vs6oe0Jew3CL5RqxlKDZc6N3J9ObSBTlMbesZxd64fTgKh8Q1TNRzFxr13IP1mkyneXf2aXdpVSvdG9psCeYn_NxOfcwtE75W4ak7MjVc5-8Wl0WCRdwJxDwNAxTxHfwyuSVAuz3sYqD0EgIuY7lg09-QDlxx_RI0cyv19OoL0LZonBF5MiQhR3kyrlXePeIJH4sWTGeC_JqK4Sy7r0V1T5iHZ5CtnUWMywfsXyFycGYhanagUQxUAQ69v3LIaXNaeu_1S-s2T16bcjE3OkZ6HNS0ltkQd-Jr5ONKg\u0026h=mzi9vfUnTnFh5bxJZz85yiPMqLP1sbuDfibFbIT6EgU", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304372405461\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3yaxcbvd3SgXFFpAJMsN_tvBAaxWO4dKdWHX54kvPdOSea2Ex4RyaA8nb4uXvxq9J4gPmx8-1EvwYoOh6oSYTGI-qgCH4hEGUW8ynXXzcHSllS_fRXTn4IGMvRKj5NeSQ9Jo9DbroQA9OnTBn37hWTKhvEQMwFVQ9fB7G595_Lx8Pb2ux4vL7QbPEKnje6de1H-Wwxs8WpSRtp3Ur8InpCpGyiTRptN_M55nbhAzWwF6ZfPY-Qs-fYH6NliG0TNq6dQCfsBqs9i04Cf2LXKRGVF4MSq799KdsRjQ4YnjH6Kq1YzqMojmOQfL1BBjCSkJD2D_xoiBfUObFyvID114zQ\u0026h=tkrRL3GBn3GBER-s4a9XTIsjWOrfL3rf5cKzAUF_8UA", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "53" ], - "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -520,43 +520,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a004169-0000-0800-0000-6716c0e90000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412864758146\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=junkhdgJRH2pL5xYDtGbopJAPY2v1CV7N323_L-qsu-GP03nl85qNohcv0V3Sl2kTFMY-64iPd22x0a5wN8HAMTTV5WnCHIG1kkJQmq_D6pCQMbnb0u2tpw2FSpsqdjh5TUYkR6QhsslEuUZci4YLjkicY4D-67yBwescFGRyVxblJXVanJY0Yz8OIsMVu-XlnptilVufNnjaJDnUCcP1z5N0S3FAA4J4mEonniJaQt37saEXXtmF4mi5IQS-Xf5K_UQgZxq_-Ma92LssgIIwVPFKv58kW-TXZczCVZhMnLRas4OZzSD7etWR2daTK2Quk0hbPikANMg7WqK7BlDdg\u0026h=WN-JJLAKSg42Ghmz_1tCyriBmNIT-pIVz3Vze8OaO9c" ], + "ETag": [ "\"0103207c-0000-0800-0000-671b2a860000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304675408514\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=quK2Pc4vWC_K-AMzVgGZ1OiSYnvBQLZ3XCmanBHR7dxbeckxkEokLK6fnLuRjPIlI5ftZK8-10RqqtPFUFTImUcA33vQBnlPNlS3UGL_C8uBVLKwG21mW9M4kk8KjweYnZS_T5IIJrVAsLfMQuQ7k2aBBsS3ichyt9-q6bV_QbeZp2GnQVgCyVEBo21U8AMXewFK2Be4prv8k4DYmw8Tzcgd9xaTdgWdMmYc5w1tXCy0z6vAxelmvMmLFc4Lm6juwAntXM6zSQNrirET7utd2YQT8-Udo3yW2f2S8M9dMxmUYaYWeZAC2AkrctBfE1Me9q2IU7OI2z2jeR_KGN0xMw\u0026h=DfZ8Rv3pvThBk8vNF4kkWCPwYaSKgVb2vqMLLKo6SSk" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304675252263\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0X8zv8-21OJ8qTsVEVy8WKEI32VHlPifs1fBHwoye2r-yTIROz50f0LF7yIAgWxQamnOIEPedYVdRObiUKj8nMDrb0WGRkEOcUHAMtQsT7qU-A0G5fYgPTztwa-uQvLryZY6MKsfUTSi68JPsR6oKLsBh4Me7PYniAEoluLhP4h3Ik0coREM6Q2rSZvOhChBYrJMf1cVurdaJybZ-6AV88QPp_raq2F8yMJ6hAYBy4p_UPncQpOKXKTaLz5E-_r1hnYNVzBIAZmFu7Wg7ytdGRu_o5k7fl41tMvkbWM8Y0KiJDb9k9WVkKO6y2QXEISx5ASAZxpRtOsndniVN67Qng\u0026h=ffxWLM0LrHjiwa1-fW9F8N9lzF1QwOt7pKIqYGrNxtE" ], + "x-ms-request-id": [ "7966f40c-98e3-4e9d-92be-d2c29616c07d" ], + "x-ms-correlation-request-id": [ "9b8f8673-2e6c-494b-8dc9-9c8f9098632a" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412864558199\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jmSPnmEZ46Y-ODc1FhZA78V54zH-JHOxAFCErfyaokimkBP6cpXkc9fhCD-yJQdHDbeC91gB2l1cvGTe-nIkbTX6CX3XKB03bSfftM7nKpS85b963GSRVteft07BHrSkFCZCRPvh_-l-cdPdx10LLqibxXWvtxYFLxNL29z18f51adroL_BYW3_9OV7LC17q6mjASVVbBJxuGE7fbakZaJ46iHUZ4UInfLMJMXyfPDSGg6dupSASYBnrnF3U3V_dEn8FOpsb8fSvqVJqe6NHF4-QA08_Ce5XiFiRzBC-hDrOtedjPGqbB32gi6Bte_6ovny2TRgo2vS5-vtGjBxfGA\u0026h=FzisbMXhfteCGAT_9n4ycqN0UrGHuWezLO4eKzGGr-I" ], - "x-ms-request-id": [ "2faca0e1-8c2f-486f-a2ea-3b34d46496f7" ], - "x-ms-correlation-request-id": [ "c69814e8-3f5f-43e8-b75f-9cf77986a246" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210126Z:c69814e8-3f5f-43e8-b75f-9cf77986a246" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052107Z:9b8f8673-2e6c-494b-8dc9-9c8f9098632a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FA981AF4426F40D7A18218166A90EAEE Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:01:26Z" ], - "Date": [ "Mon, 21 Oct 2024 21:01:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 83AF93492E574B1492BFFB8C8197D5D3 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:21:07Z" ], + "Date": [ "Fri, 25 Oct 2024 05:21:06 GMT" ] }, "ContentHeaders": { "Content-Length": [ "574" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\"}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\"}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412864558199\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jmSPnmEZ46Y-ODc1FhZA78V54zH-JHOxAFCErfyaokimkBP6cpXkc9fhCD-yJQdHDbeC91gB2l1cvGTe-nIkbTX6CX3XKB03bSfftM7nKpS85b963GSRVteft07BHrSkFCZCRPvh_-l-cdPdx10LLqibxXWvtxYFLxNL29z18f51adroL_BYW3_9OV7LC17q6mjASVVbBJxuGE7fbakZaJ46iHUZ4UInfLMJMXyfPDSGg6dupSASYBnrnF3U3V_dEn8FOpsb8fSvqVJqe6NHF4-QA08_Ce5XiFiRzBC-hDrOtedjPGqbB32gi6Bte_6ovny2TRgo2vS5-vtGjBxfGA\u0026h=FzisbMXhfteCGAT_9n4ycqN0UrGHuWezLO4eKzGGr-I+5": { + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304675252263\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0X8zv8-21OJ8qTsVEVy8WKEI32VHlPifs1fBHwoye2r-yTIROz50f0LF7yIAgWxQamnOIEPedYVdRObiUKj8nMDrb0WGRkEOcUHAMtQsT7qU-A0G5fYgPTztwa-uQvLryZY6MKsfUTSi68JPsR6oKLsBh4Me7PYniAEoluLhP4h3Ik0coREM6Q2rSZvOhChBYrJMf1cVurdaJybZ-6AV88QPp_raq2F8yMJ6hAYBy4p_UPncQpOKXKTaLz5E-_r1hnYNVzBIAZmFu7Wg7ytdGRu_o5k7fl41tMvkbWM8Y0KiJDb9k9WVkKO6y2QXEISx5ASAZxpRtOsndniVN67Qng\u0026h=ffxWLM0LrHjiwa1-fW9F8N9lzF1QwOt7pKIqYGrNxtE+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412864558199\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jmSPnmEZ46Y-ODc1FhZA78V54zH-JHOxAFCErfyaokimkBP6cpXkc9fhCD-yJQdHDbeC91gB2l1cvGTe-nIkbTX6CX3XKB03bSfftM7nKpS85b963GSRVteft07BHrSkFCZCRPvh_-l-cdPdx10LLqibxXWvtxYFLxNL29z18f51adroL_BYW3_9OV7LC17q6mjASVVbBJxuGE7fbakZaJ46iHUZ4UInfLMJMXyfPDSGg6dupSASYBnrnF3U3V_dEn8FOpsb8fSvqVJqe6NHF4-QA08_Ce5XiFiRzBC-hDrOtedjPGqbB32gi6Bte_6ovny2TRgo2vS5-vtGjBxfGA\u0026h=FzisbMXhfteCGAT_9n4ycqN0UrGHuWezLO4eKzGGr-I", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304675252263\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0X8zv8-21OJ8qTsVEVy8WKEI32VHlPifs1fBHwoye2r-yTIROz50f0LF7yIAgWxQamnOIEPedYVdRObiUKj8nMDrb0WGRkEOcUHAMtQsT7qU-A0G5fYgPTztwa-uQvLryZY6MKsfUTSi68JPsR6oKLsBh4Me7PYniAEoluLhP4h3Ik0coREM6Q2rSZvOhChBYrJMf1cVurdaJybZ-6AV88QPp_raq2F8yMJ6hAYBy4p_UPncQpOKXKTaLz5E-_r1hnYNVzBIAZmFu7Wg7ytdGRu_o5k7fl41tMvkbWM8Y0KiJDb9k9WVkKO6y2QXEISx5ASAZxpRtOsndniVN67Qng\u0026h=ffxWLM0LrHjiwa1-fW9F8N9lzF1QwOt7pKIqYGrNxtE", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -566,43 +566,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a004169-0000-0800-0000-6716c0e90000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413167089606\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=N_ouC9C--TJNrXdGMEZJOgUJKYReP0ybLctU4oQ1twzZ2QwjnexZ7AfkPhajq_FZk1n2b6lcl7fYD6lepahXa3mP8Tbwki-xrya1kcpl65NAIsVvmKiBG9fAPrMK7kpNCRofG7Qxwmw0izv5TZve87pkF2NMACHG-GjZVhzr2SuGxpGcjszIAPhy9DOIj2Vae36arbAsKGrc0uNf7Pp6tze10LGogWyDz4slgtpoguofjmgY3tdwTB3Sv1iLictqrBnKJSqosdLeQrYJwxUitCeyOxJwIvNeTBuaw0Zkex6OyXQ8z9Xw-Hjp_XCgFIzYapEPspdxGREL_YMGKnDUsw\u0026h=hMxvLJUUdR7DwoW9mWjr3s9fNaprNvvcxyV2abiKFG4" ], + "ETag": [ "\"0103207c-0000-0800-0000-671b2a860000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304977479671\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=zkR-W_BKHGNVnW8maBGdnePuBUgDYHJH8cB94r0QSKPYmyfrC5lus40ZJ0lxR6muOiDz7KW6lI-ziukHe1VTBXnZm3ifrK7w7_Twmb_3FNMZrgBxpECBWZkml4q6no8v-6y0JcftbfTX8rVOGv9QqA7c4SAynzdJVAYvPdfvSYUMxoTFki7EmVMbwFOSQxQTt3H7Rr1v0kE2PEDwRZ2kgkHoMhr-myx4Rd5nowlD53TKGltWOQpVblyVQVM0-GfbBadb9iY7n9dRAmNKSz-fETQEWYgTJINYJDDZK--gurOi6UQKydtRunQNM8Ca6ty7CoHEDkdFSxDpIrsRlzxOGw\u0026h=TfUAreaotkJ4phu_ou-zfJrmPrE2n-0p3m-27iDPOUE" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413167089606\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=N_ouC9C--TJNrXdGMEZJOgUJKYReP0ybLctU4oQ1twzZ2QwjnexZ7AfkPhajq_FZk1n2b6lcl7fYD6lepahXa3mP8Tbwki-xrya1kcpl65NAIsVvmKiBG9fAPrMK7kpNCRofG7Qxwmw0izv5TZve87pkF2NMACHG-GjZVhzr2SuGxpGcjszIAPhy9DOIj2Vae36arbAsKGrc0uNf7Pp6tze10LGogWyDz4slgtpoguofjmgY3tdwTB3Sv1iLictqrBnKJSqosdLeQrYJwxUitCeyOxJwIvNeTBuaw0Zkex6OyXQ8z9Xw-Hjp_XCgFIzYapEPspdxGREL_YMGKnDUsw\u0026h=hMxvLJUUdR7DwoW9mWjr3s9fNaprNvvcxyV2abiKFG4" ], - "x-ms-request-id": [ "20afd0e2-71c6-49fc-ba6a-e33224afdcfb" ], - "x-ms-correlation-request-id": [ "9680d97f-3cc8-47e9-9de9-c8e018a7ea81" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304977323469\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=c1okRbeQBQSi1UGtCTUBS_4NAl6RF-1nhILfrCRhXAvhPXbV_z1c3fX3YTn3g-PvuHJrwAaKpIhtZHwzmoBet1FvDFVQOC95Sa3LlhDDaNk9GyYVG5U4CBSdZVAwfnUkKvIYqytT2DN0R6vjMBwDRJUiKS_hmSxFZ2ZTQ0O05Ba8M13wCNS8qrIfuke04CpaKLGkeq5-5HoOSe53fk3uJbIp7kdDJQVv5S0JNj_kBi2C5ERXThb8hgT6ZDwLTnfEU2dIrPNJ97iZTfttEgGxiUZuXa1_vrS7B-MxV2h49Q9dN54isdhm9cZ35OG3-wkmGJYoq7qMOXhqD-yVEeH7QQ\u0026h=-gB1VCByfquyFDxkw055gxSB4ZQ5XYW8TkCfJZyGP-M" ], + "x-ms-request-id": [ "bf5677c1-cf11-4a82-9e5d-533a08ade185" ], + "x-ms-correlation-request-id": [ "3c1d6538-4fb2-4b25-86f8-27bbfae7bd41" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210156Z:9680d97f-3cc8-47e9-9de9-c8e018a7ea81" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052137Z:3c1d6538-4fb2-4b25-86f8-27bbfae7bd41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0376F2373B1A4B29994F319D3E2D5CCD Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:01:56Z" ], - "Date": [ "Mon, 21 Oct 2024 21:01:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: ACA2D0FAC47D438A9F4CE3D10A0682F8 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:21:37Z" ], + "Date": [ "Fri, 25 Oct 2024 05:21:36 GMT" ] }, "ContentHeaders": { "Content-Length": [ "574" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\"}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\"}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413167089606\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=N_ouC9C--TJNrXdGMEZJOgUJKYReP0ybLctU4oQ1twzZ2QwjnexZ7AfkPhajq_FZk1n2b6lcl7fYD6lepahXa3mP8Tbwki-xrya1kcpl65NAIsVvmKiBG9fAPrMK7kpNCRofG7Qxwmw0izv5TZve87pkF2NMACHG-GjZVhzr2SuGxpGcjszIAPhy9DOIj2Vae36arbAsKGrc0uNf7Pp6tze10LGogWyDz4slgtpoguofjmgY3tdwTB3Sv1iLictqrBnKJSqosdLeQrYJwxUitCeyOxJwIvNeTBuaw0Zkex6OyXQ8z9Xw-Hjp_XCgFIzYapEPspdxGREL_YMGKnDUsw\u0026h=hMxvLJUUdR7DwoW9mWjr3s9fNaprNvvcxyV2abiKFG4+6": { + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304977323469\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=c1okRbeQBQSi1UGtCTUBS_4NAl6RF-1nhILfrCRhXAvhPXbV_z1c3fX3YTn3g-PvuHJrwAaKpIhtZHwzmoBet1FvDFVQOC95Sa3LlhDDaNk9GyYVG5U4CBSdZVAwfnUkKvIYqytT2DN0R6vjMBwDRJUiKS_hmSxFZ2ZTQ0O05Ba8M13wCNS8qrIfuke04CpaKLGkeq5-5HoOSe53fk3uJbIp7kdDJQVv5S0JNj_kBi2C5ERXThb8hgT6ZDwLTnfEU2dIrPNJ97iZTfttEgGxiUZuXa1_vrS7B-MxV2h49Q9dN54isdhm9cZ35OG3-wkmGJYoq7qMOXhqD-yVEeH7QQ\u0026h=-gB1VCByfquyFDxkw055gxSB4ZQ5XYW8TkCfJZyGP-M+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413167089606\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=N_ouC9C--TJNrXdGMEZJOgUJKYReP0ybLctU4oQ1twzZ2QwjnexZ7AfkPhajq_FZk1n2b6lcl7fYD6lepahXa3mP8Tbwki-xrya1kcpl65NAIsVvmKiBG9fAPrMK7kpNCRofG7Qxwmw0izv5TZve87pkF2NMACHG-GjZVhzr2SuGxpGcjszIAPhy9DOIj2Vae36arbAsKGrc0uNf7Pp6tze10LGogWyDz4slgtpoguofjmgY3tdwTB3Sv1iLictqrBnKJSqosdLeQrYJwxUitCeyOxJwIvNeTBuaw0Zkex6OyXQ8z9Xw-Hjp_XCgFIzYapEPspdxGREL_YMGKnDUsw\u0026h=hMxvLJUUdR7DwoW9mWjr3s9fNaprNvvcxyV2abiKFG4", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304977323469\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=c1okRbeQBQSi1UGtCTUBS_4NAl6RF-1nhILfrCRhXAvhPXbV_z1c3fX3YTn3g-PvuHJrwAaKpIhtZHwzmoBet1FvDFVQOC95Sa3LlhDDaNk9GyYVG5U4CBSdZVAwfnUkKvIYqytT2DN0R6vjMBwDRJUiKS_hmSxFZ2ZTQ0O05Ba8M13wCNS8qrIfuke04CpaKLGkeq5-5HoOSe53fk3uJbIp7kdDJQVv5S0JNj_kBi2C5ERXThb8hgT6ZDwLTnfEU2dIrPNJ97iZTfttEgGxiUZuXa1_vrS7B-MxV2h49Q9dN54isdhm9cZ35OG3-wkmGJYoq7qMOXhqD-yVEeH7QQ\u0026h=-gB1VCByfquyFDxkw055gxSB4ZQ5XYW8TkCfJZyGP-M", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "55" ], - "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -612,43 +612,43 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a004169-0000-0800-0000-6716c0e90000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413469465423\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ZyzZa6o33vooMbHlq0aSxsri4mrpw5OdZShyrxFYoTORnKzRZWk-s15y3d7KE8CwneS8d1kT780rp_mSD_zJzK1Uzj9ZFC6Kq8V4VhsTiCfrrmWKkPjJfvEx-AiMV53cSESZeUGP1R1EisizyvqSuhnKF7h1mpnzXJouTEysH0mep2TaB1Q7bK7vbkqnn-Sqe5_iioy8HtRiaxeJJKcbaP6Az3-6SYXryHBmlMBdMozlnjv6JMy3XOKD4cutp1yRdeKX2o-KoEb2ahz6T5FVcm6j190-qdxVVBClZk17pwKe2HVXWofaFZnbXbFBE5Gi21o8nmgTPPEYdtMw_uo_Sw\u0026h=sGCUwGLUgl086QGjczIju3zYV626QPQ-RwFQwTMX8G0" ], + "ETag": [ "\"0103207c-0000-0800-0000-671b2a860000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654305279774372\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=f8U1bz1E5HzRKYXhpKPutooAzM8YpyfYrgr-7vWnVtkRnOZRP0s37mmrDH6tbKQ7l7qwmkWy2Vp0ZqrmQImQ-yNcNP0TfRJbyOYrCkpZq5byGPI7Wrn9h4Cr1gAheILfFLtVk7A74qNMBmotk9bSWuZXK_CB-L_5oj3xm6w4-l_Nc3TkrjpkkGocOZNpfdN3WODV1d1qpIedG4lsROhzWsT8ufcuGQq049BhCxAjFQXNIc2-LPxYCbDhT3fvFGa3oa2QR92yqNvOx97weK8-y4-VVJG2QWeKXBrZd6iiCrchH6YZTet7UuzFe3f8HwIh36leI08vUs7Z34MPqPpb6A\u0026h=w3WJoUYy9KJ6LihdjS8xVxOKhKkT_cz_VPj4jfUmFlg" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413469465423\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ZyzZa6o33vooMbHlq0aSxsri4mrpw5OdZShyrxFYoTORnKzRZWk-s15y3d7KE8CwneS8d1kT780rp_mSD_zJzK1Uzj9ZFC6Kq8V4VhsTiCfrrmWKkPjJfvEx-AiMV53cSESZeUGP1R1EisizyvqSuhnKF7h1mpnzXJouTEysH0mep2TaB1Q7bK7vbkqnn-Sqe5_iioy8HtRiaxeJJKcbaP6Az3-6SYXryHBmlMBdMozlnjv6JMy3XOKD4cutp1yRdeKX2o-KoEb2ahz6T5FVcm6j190-qdxVVBClZk17pwKe2HVXWofaFZnbXbFBE5Gi21o8nmgTPPEYdtMw_uo_Sw\u0026h=sGCUwGLUgl086QGjczIju3zYV626QPQ-RwFQwTMX8G0" ], - "x-ms-request-id": [ "8025bc01-defd-4550-8df5-35468d436083" ], - "x-ms-correlation-request-id": [ "3b8972cb-686d-4eae-bd20-4675c3a95ec3" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654305279774372\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=f8U1bz1E5HzRKYXhpKPutooAzM8YpyfYrgr-7vWnVtkRnOZRP0s37mmrDH6tbKQ7l7qwmkWy2Vp0ZqrmQImQ-yNcNP0TfRJbyOYrCkpZq5byGPI7Wrn9h4Cr1gAheILfFLtVk7A74qNMBmotk9bSWuZXK_CB-L_5oj3xm6w4-l_Nc3TkrjpkkGocOZNpfdN3WODV1d1qpIedG4lsROhzWsT8ufcuGQq049BhCxAjFQXNIc2-LPxYCbDhT3fvFGa3oa2QR92yqNvOx97weK8-y4-VVJG2QWeKXBrZd6iiCrchH6YZTet7UuzFe3f8HwIh36leI08vUs7Z34MPqPpb6A\u0026h=w3WJoUYy9KJ6LihdjS8xVxOKhKkT_cz_VPj4jfUmFlg" ], + "x-ms-request-id": [ "953e1072-f7c8-42f3-b525-77c4240abaa4" ], + "x-ms-correlation-request-id": [ "5ee68e38-238c-46af-84fa-3acf15ded726" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210226Z:3b8972cb-686d-4eae-bd20-4675c3a95ec3" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052207Z:5ee68e38-238c-46af-84fa-3acf15ded726" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0A3279C3675D4C3EB54CAB0A90E1885E Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:02:26Z" ], - "Date": [ "Mon, 21 Oct 2024 21:02:26 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 6CA8A8764CB14D8ABAE7C49C337718A4 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:22:07Z" ], + "Date": [ "Fri, 25 Oct 2024 05:22:07 GMT" ] }, "ContentHeaders": { "Content-Length": [ "574" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Deleting\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\"}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\"}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413469465423\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ZyzZa6o33vooMbHlq0aSxsri4mrpw5OdZShyrxFYoTORnKzRZWk-s15y3d7KE8CwneS8d1kT780rp_mSD_zJzK1Uzj9ZFC6Kq8V4VhsTiCfrrmWKkPjJfvEx-AiMV53cSESZeUGP1R1EisizyvqSuhnKF7h1mpnzXJouTEysH0mep2TaB1Q7bK7vbkqnn-Sqe5_iioy8HtRiaxeJJKcbaP6Az3-6SYXryHBmlMBdMozlnjv6JMy3XOKD4cutp1yRdeKX2o-KoEb2ahz6T5FVcm6j190-qdxVVBClZk17pwKe2HVXWofaFZnbXbFBE5Gi21o8nmgTPPEYdtMw_uo_Sw\u0026h=sGCUwGLUgl086QGjczIju3zYV626QPQ-RwFQwTMX8G0+7": { + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654305279774372\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=f8U1bz1E5HzRKYXhpKPutooAzM8YpyfYrgr-7vWnVtkRnOZRP0s37mmrDH6tbKQ7l7qwmkWy2Vp0ZqrmQImQ-yNcNP0TfRJbyOYrCkpZq5byGPI7Wrn9h4Cr1gAheILfFLtVk7A74qNMBmotk9bSWuZXK_CB-L_5oj3xm6w4-l_Nc3TkrjpkkGocOZNpfdN3WODV1d1qpIedG4lsROhzWsT8ufcuGQq049BhCxAjFQXNIc2-LPxYCbDhT3fvFGa3oa2QR92yqNvOx97weK8-y4-VVJG2QWeKXBrZd6iiCrchH6YZTet7UuzFe3f8HwIh36leI08vUs7Z34MPqPpb6A\u0026h=w3WJoUYy9KJ6LihdjS8xVxOKhKkT_cz_VPj4jfUmFlg+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651413469465423\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ZyzZa6o33vooMbHlq0aSxsri4mrpw5OdZShyrxFYoTORnKzRZWk-s15y3d7KE8CwneS8d1kT780rp_mSD_zJzK1Uzj9ZFC6Kq8V4VhsTiCfrrmWKkPjJfvEx-AiMV53cSESZeUGP1R1EisizyvqSuhnKF7h1mpnzXJouTEysH0mep2TaB1Q7bK7vbkqnn-Sqe5_iioy8HtRiaxeJJKcbaP6Az3-6SYXryHBmlMBdMozlnjv6JMy3XOKD4cutp1yRdeKX2o-KoEb2ahz6T5FVcm6j190-qdxVVBClZk17pwKe2HVXWofaFZnbXbFBE5Gi21o8nmgTPPEYdtMw_uo_Sw\u0026h=sGCUwGLUgl086QGjczIju3zYV626QPQ-RwFQwTMX8G0", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654305279774372\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=f8U1bz1E5HzRKYXhpKPutooAzM8YpyfYrgr-7vWnVtkRnOZRP0s37mmrDH6tbKQ7l7qwmkWy2Vp0ZqrmQImQ-yNcNP0TfRJbyOYrCkpZq5byGPI7Wrn9h4Cr1gAheILfFLtVk7A74qNMBmotk9bSWuZXK_CB-L_5oj3xm6w4-l_Nc3TkrjpkkGocOZNpfdN3WODV1d1qpIedG4lsROhzWsT8ufcuGQq049BhCxAjFQXNIc2-LPxYCbDhT3fvFGa3oa2QR92yqNvOx97weK8-y4-VVJG2QWeKXBrZd6iiCrchH6YZTet7UuzFe3f8HwIh36leI08vUs7Z34MPqPpb6A\u0026h=w3WJoUYy9KJ6LihdjS8xVxOKhKkT_cz_VPj4jfUmFlg", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "56" ], - "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -658,41 +658,41 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a006382-0000-0800-0000-6716c1670000\"" ], + "ETag": [ "\"01035990-0000-0800-0000-671b2b040000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "f62de398-09ce-4ba9-9dc5-644e601cc14f" ], - "x-ms-correlation-request-id": [ "197ff4db-734e-4842-bd3e-d4afb89a6ef3" ], + "x-ms-request-id": [ "68a9e12d-c073-406c-a7b3-113f36573f22" ], + "x-ms-correlation-request-id": [ "cc4ccd83-cbc3-4715-a955-0766a2ca4123" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210257Z:197ff4db-734e-4842-bd3e-d4afb89a6ef3" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052238Z:cc4ccd83-cbc3-4715-a955-0766a2ca4123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AEDB7A7B667647CFBBD05236884AF413 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:02:57Z" ], - "Date": [ "Mon, 21 Oct 2024 21:02:56 GMT" ] + "X-MSEdge-Ref": [ "Ref A: 9B7D48141F8F427089C956CBFCD69C82 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:22:38Z" ], + "Date": [ "Fri, 25 Oct 2024 05:22:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "593" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\",\"properties\":null}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\",\"properties\":null}", "isContentBase64": false } }, - "Remove-AzHealthDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8+8": { + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds+8": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B?api-version=2024-02-28-preview\u0026t=638651412259042620\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=cuWGfbHG1XOdN8zC_Bl1OuggJb_bgF9Ar0hOcAFUHNcv5bTtAsXzTjz3uU4Q6IbfCOd-aq_w0qSu-1zfyumwrosluEx-0Nj2XQSIWR7Ktno-DnqI91IsRwCz5-GTaptaqrQNNB8EcWhHnBWy_vJf6AJoh20xH2_msqlxPEFcDljXels7wXybi59Njx0PuNVXFENG7pvuIdPtj6VkdUUBud-fz-JKovoBFgks8prfBbl_AXU_HG7Xu0WvX84lXDceOkvZEETYfvngWbkKM57qDZiyOKY1X1NUnX-8PGslsAEmI1vC8oAxk0nnOgHzwzaXYr1N2WOty0Ic5Q6LS-gawQ\u0026h=sNeiCIWFb70OTOSbUZVqS6J43BywA86PJ2DQPdOgiU8", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "57" ], - "x-ms-client-request-id": [ "1a2d47f7-b6d4-4660-b85a-ab1de9cc125d" ], - "CommandName": [ "Remove-AzHealthDeidService" ], - "FullCommandName": [ "Remove-AzHealthDeidService_DeleteViaIdentity" ], + "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeid/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] }, "ContentHeaders": { } @@ -702,24 +702,24 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "ETag": [ "\"8a006382-0000-0800-0000-6716c1670000\"" ], + "ETag": [ "\"01035990-0000-0800-0000-671b2b040000\"" ], "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "286c8c1d-d3cb-410d-a79c-df9dca718009" ], - "x-ms-correlation-request-id": [ "bdaf866c-7ed4-45fa-b3d9-e4bc4bee9a74" ], + "x-ms-request-id": [ "6040a5df-dc1e-4db1-9f46-209dd189b4b8" ], + "x-ms-correlation-request-id": [ "dd55cafc-782f-46f5-8cdd-006e9e411c07" ], "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241021T210257Z:bdaf866c-7ed4-45fa-b3d9-e4bc4bee9a74" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052238Z:dd55cafc-782f-46f5-8cdd-006e9e411c07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6091DCC1236B4B50A68E558BE602DCD8 Ref B: CO6AA3150219027 Ref C: 2024-10-21T21:02:57Z" ], - "Date": [ "Mon, 21 Oct 2024 21:02:57 GMT" ] + "X-MSEdge-Ref": [ "Ref A: B39D33CCFA5F4F738C7CE69A2E15F801 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:22:38Z" ], + "Date": [ "Fri, 25 Oct 2024 05:22:37 GMT" ] }, "ContentHeaders": { "Content-Length": [ "593" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"name\":\"2e6cf829-1505-4b6f-a800-b7fa3791c40c*485F60BB5B1063D521375E2B2050541B36A7313BC97937BAA48EB144C7E0647B\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/9nbgfp\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-21T21:00:25.3903663Z\",\"properties\":null}", + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\",\"properties\":null}", "isContentBase64": false } } diff --git a/src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Tests.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Tests.ps1 similarity index 53% rename from src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Tests.ps1 rename to src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Tests.ps1 index 2e1cbe2125f3..1366afb7c5b4 100644 --- a/src/HealthDeid/HealthDeid.Autorest/test/Remove-AzHealthDeidService.Tests.ps1 +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Remove-AzHealthDeidService')) +if(($null -eq $TestName) -or ($TestName -contains 'Remove-AzDeidService')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzHealthDeidService.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzDeidService.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,23 +14,23 @@ if(($null -eq $TestName) -or ($TestName -contains 'Remove-AzHealthDeidService')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Remove-AzHealthDeidService' { +Describe 'Remove-AzDeidService' { It 'Delete' { { - Remove-AzHealthDeidService -Name $env.deidServiceNameToDelete1 -ResourceGroupName $env.resourceGroupName + Remove-AzDeidService -Name $env.deidServiceNameToDelete1 -ResourceGroupName $env.resourceGroupName } | Should -Not -Throw } It 'DeleteNonexistent' { { - Remove-AzHealthDeidService -Name "nonexistent" -ResourceGroupName $env.resourceGroupName + Remove-AzDeidService -Name "nonexistent" -ResourceGroupName $env.resourceGroupName } | Should -Not -Throw } It 'DeleteViaIdentity' { { - $config = Get-AzHealthDeidService -Name $env.deidServiceNameToDelete2 -ResourceGroupName $env.resourceGroupName - Remove-AzHealthDeidService -InputObject $config + $config = Get-AzDeidService -Name $env.deidServiceNameToDelete2 -ResourceGroupName $env.resourceGroupName + Remove-AzDeidService -InputObject $config } | Should -Not -Throw } } diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Recording.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Recording.json new file mode 100644 index 000000000000..3b5357431bac --- /dev/null +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Recording.json @@ -0,0 +1,577 @@ +{ + "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "58" ], + "x-ms-client-request-id": [ "b98eef2a-e142-4896-8734-658e91cc9000" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1d01332a-0000-0800-0000-671b27630000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "62b46f38-fa37-41d1-9c36-6d826245de22" ], + "x-ms-correlation-request-id": [ "03cdbe2a-d7f3-48c7-aba7-ac022372276a" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052242Z:03cdbe2a-d7f3-48c7-aba7-ac022372276a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8888140D42424F298306EF4D692594BA Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:22:42Z" ], + "Date": [ "Fri, 25 Oct 2024 05:22:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", + "Content": "{\n \"location\": \"eastus2\",\n \"properties\": {\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n }\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "138" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1e014c0b-0000-0800-0000-671b2b240000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "36440e04-0d5b-41f5-9b9e-d3bbbd73f1f2" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "984564f6-dacd-4872-9eec-b88f68c6d70c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ" ], + "x-ms-request-id": [ "d33e9ea5-0223-4469-bdac-49eac9deb69c" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052244Z:984564f6-dacd-4872-9eec-b88f68c6d70c" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B1036EDE4A9740C797379EB61520079C Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:22:42Z" ], + "Date": [ "Fri, 25 Oct 2024 05:22:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "778" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:22:43.1643756Z\"},\"identity\":{\"principalId\":\"bd30cc60-af17-4d5f-93fc-625b46e00a77\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "60" ], + "x-ms-client-request-id": [ "b98eef2a-e142-4896-8734-658e91cc9000" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"01039a96-0000-0800-0000-671b2b240000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "917000ba-bbe3-4655-8981-94a84c886320" ], + "x-ms-correlation-request-id": [ "fd9b29f4-3537-4091-ad31-612c2282c183" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052314Z:fd9b29f4-3537-4091-ad31-612c2282c183" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A899A923027642C4BF6807D2C6FE89C2 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:23:14Z" ], + "Date": [ "Fri, 25 Oct 2024 05:23:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"name\":\"d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:22:44.1284491Z\"}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "61" ], + "x-ms-client-request-id": [ "b98eef2a-e142-4896-8734-658e91cc9000" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"01039a96-0000-0800-0000-671b2b240000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "0a765c2a-25f6-4845-b2e8-ac37604b24bd" ], + "x-ms-correlation-request-id": [ "af376485-2c6a-4184-ba2e-5cca15bedb6b" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052345Z:af376485-2c6a-4184-ba2e-5cca15bedb6b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 24A4AB4852BA4D3489D64B7B9C518C60 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:23:45Z" ], + "Date": [ "Fri, 25 Oct 2024 05:23:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"name\":\"d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:22:44.1284491Z\"}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "62" ], + "x-ms-client-request-id": [ "b98eef2a-e142-4896-8734-658e91cc9000" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"01036f9f-0000-0800-0000-671b2b660000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "d79acaca-51de-46f2-b03e-4c705dc909ae" ], + "x-ms-correlation-request-id": [ "e66c371b-55bb-4e39-84d9-9010fbae0cb0" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052415Z:e66c371b-55bb-4e39-84d9-9010fbae0cb0" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DDBF0BA619BB4F3E9B68970283FBF1C9 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:15Z" ], + "Date": [ "Fri, 25 Oct 2024 05:24:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "634" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"name\":\"d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:22:44.1284491Z\",\"endTime\":\"2024-10-25T05:22:53.6792536Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "63" ], + "x-ms-client-request-id": [ "b98eef2a-e142-4896-8734-658e91cc9000" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1e016e0c-0000-0800-0000-671b2b2d0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "e18e9e9a-270d-451e-af68-524fb188f361" ], + "x-ms-correlation-request-id": [ "eff497df-5ec3-4d1b-88cb-13132bdfc057" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052415Z:eff497df-5ec3-4d1b-88cb-13132bdfc057" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4EAA6014418143F780A508E42822261A Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:15Z" ], + "Date": [ "Fri, 25 Oct 2024 05:24:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "779" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:22:43.1643756Z\"},\"identity\":{\"principalId\":\"bd30cc60-af17-4d5f-93fc-625b46e00a77\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "64" ], + "x-ms-client-request-id": [ "02dc382c-fbe3-412a-8d54-da4ba9049160" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1d019a3a-0000-0800-0000-671b27bb0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "00ffdb32-5f9e-4ab3-93a3-696d97df97c4" ], + "x-ms-correlation-request-id": [ "90cc3205-760c-48a4-93bf-d7b168a6ff4a" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052416Z:90cc3205-760c-48a4-93bf-d7b168a6ff4a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 35A3E8F1463A4FA1BCE07A5E1A95BF81 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:15Z" ], + "Date": [ "Fri, 25 Oct 2024 05:24:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:08:02.7254538Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "65" ], + "x-ms-client-request-id": [ "d1c356f4-6223-4368-880e-a6ab931757ed" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1d019a3a-0000-0800-0000-671b27bb0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "d932a277-a412-4c47-82a8-bcd2eb8db94c" ], + "x-ms-correlation-request-id": [ "c73cde05-b1d6-4d1a-a56d-221c1f405a3d" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052416Z:c73cde05-b1d6-4d1a-a56d-221c1f405a3d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E5D84D7B16A44B5A83402CD45BAEAEC4 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:16Z" ], + "Date": [ "Fri, 25 Oct 2024 05:24:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:08:02.7254538Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview+3": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview", + "Content": "{\n \"tags\": {\n \"AzPwshTestKey\": \"AzPwshTestValue\"\n },\n \"location\": \"eastus2\",\n \"properties\": {\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n }\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "194" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1e01a918-0000-0800-0000-671b2b820000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "137b3470-cad5-4660-a639-e5847cd78655" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "8e87785d-6d02-42f9-89b8-79a25cfc5ffc" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA" ], + "x-ms-request-id": [ "09acbb5b-1414-4a1b-9565-1a76ccc421f3" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052418Z:8e87785d-6d02-42f9-89b8-79a25cfc5ffc" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DF7D06AA7E3049BA934E73858FA1B58B Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:16Z" ], + "Date": [ "Fri, 25 Oct 2024 05:24:17 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "811" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:24:17.1279999Z\"},\"identity\":{\"principalId\":\"e6df4127-3954-4cdd-b79e-acb525317ac3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "67" ], + "x-ms-client-request-id": [ "d1c356f4-6223-4368-880e-a6ab931757ed" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0103f7a5-0000-0800-0000-671b2b810000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "1db1d024-900f-4d5c-97f0-180abdd01d59" ], + "x-ms-correlation-request-id": [ "5633cd3b-f758-4517-992f-c4eb6d60c379" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052449Z:5633cd3b-f758-4517-992f-c4eb6d60c379" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 05858D105E9D403BB789A52E43F53DE0 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:48Z" ], + "Date": [ "Fri, 25 Oct 2024 05:24:48 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"name\":\"09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:24:17.8711702Z\"}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "68" ], + "x-ms-client-request-id": [ "d1c356f4-6223-4368-880e-a6ab931757ed" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0103f7a5-0000-0800-0000-671b2b810000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "c983a876-0c2b-4ee8-b818-bc91cf8f4027" ], + "x-ms-correlation-request-id": [ "c3bfc608-51aa-4bbb-8b31-4e846e8efb5c" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052519Z:c3bfc608-51aa-4bbb-8b31-4e846e8efb5c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E2676EFC82BD424EA70CD90DCCC526A9 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:25:19Z" ], + "Date": [ "Fri, 25 Oct 2024 05:25:19 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"name\":\"09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:24:17.8711702Z\"}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "69" ], + "x-ms-client-request-id": [ "d1c356f4-6223-4368-880e-a6ab931757ed" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"0103a4ae-0000-0800-0000-671b2bc40000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "771621bf-4131-4652-a501-042febf4ceb7" ], + "x-ms-correlation-request-id": [ "fb19cc0f-4280-4512-a6ba-057bd29d6109" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052549Z:fb19cc0f-4280-4512-a6ba-057bd29d6109" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5E4F407E74C64C6FB22805B22D4447B2 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:25:49Z" ], + "Date": [ "Fri, 25 Oct 2024 05:25:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "634" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"name\":\"09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:24:17.8711702Z\",\"endTime\":\"2024-10-25T05:24:27.7181859Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "70" ], + "x-ms-client-request-id": [ "d1c356f4-6223-4368-880e-a6ab931757ed" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"1e01ab19-0000-0800-0000-671b2b8b0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "e6acf3ba-0cd9-4c0b-8078-f9012ceebd6f" ], + "x-ms-correlation-request-id": [ "f72b04ec-e0eb-4acc-9cb2-4703128ddc84" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T052549Z:f72b04ec-e0eb-4acc-9cb2-4703128ddc84" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: ACFFD2D326BA4FE888B16BF3BEDAC30B Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:25:49Z" ], + "Date": [ "Fri, 25 Oct 2024 05:25:49 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "812" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:24:17.1279999Z\"},\"identity\":{\"principalId\":\"e6df4127-3954-4cdd-b79e-acb525317ac3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Tests.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Tests.ps1 similarity index 61% rename from src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Tests.ps1 rename to src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Tests.ps1 index 43cb0ea0ebf3..3ec6a0daba13 100644 --- a/src/HealthDeid/HealthDeid.Autorest/test/Update-AzHealthDeidService.Tests.ps1 +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Tests.ps1 @@ -1,11 +1,11 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Update-AzHealthDeidService')) +if(($null -eq $TestName) -or ($TestName -contains 'Update-AzDeidService')) { $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' if (-Not (Test-Path -Path $loadEnvPath)) { $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' } . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzHealthDeidService.Recording.json' + $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzDeidService.Recording.json' $currentPath = $PSScriptRoot while(-not $mockingPath) { $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File @@ -14,10 +14,10 @@ if(($null -eq $TestName) -or ($TestName -contains 'Update-AzHealthDeidService')) . ($mockingPath | Select-Object -First 1).FullName } -Describe 'Update-AzHealthDeidService' { +Describe 'Update-AzDeidService' { It 'UpdateExpanded' { { - $config = Update-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName -EnableSystemAssignedIdentity:$true -PublicNetworkAccess "Disabled" + $config = Update-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName -EnableSystemAssignedIdentity:$true -PublicNetworkAccess "Disabled" $config.Name | Should -Be $env.deidServiceName $config.PublicNetworkAccess | Should -Be "Disabled" $config.IdentityType | Should -Be "SystemAssigned" @@ -26,8 +26,8 @@ Describe 'Update-AzHealthDeidService' { It 'UpdateViaIdentityExpanded' { { - $config = Get-AzHealthDeidService -Name $env.deidServiceName2 -ResourceGroupName $env.resourceGroupName - $config2 = Update-AzHealthDeidService -InputObject $config -EnableSystemAssignedIdentity $true -PublicNetworkAccess "Disabled" -Tag @{ + $config = Get-AzDeidService -Name $env.deidServiceName2 -ResourceGroupName $env.resourceGroupName + $config2 = Update-AzDeidService -InputObject $config -EnableSystemAssignedIdentity $true -PublicNetworkAccess "Disabled" -Tag @{ AzPwshTestKey = "AzPwshTestValue" } $config2.Name | Should -Be $env.deidServiceName2 diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/env.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/env.json new file mode 100644 index 000000000000..e536fd1e4209 --- /dev/null +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/test/env.json @@ -0,0 +1,13 @@ +{ + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "deidServiceToCreateInTests2": "w4xh3k", + "deidServiceName2": "8qhsul", + "deidServiceNameToDelete1": "r0sx7k", + "deidServiceNameToDelete2": "1aue5d", + "deidServiceToCreateInTests3": "ahcswy", + "deidServiceName": "ceogfl", + "SubscriptionId": "a49b70b4-60ee-4422-a7e2-3a5223f5fae4", + "deidServiceToCreateInTests1": "gkan5e", + "location": "eastus2", + "resourceGroupName": "azps-test-rg-eus2" +} diff --git a/src/HealthDeid/HealthDeid.Autorest/test/jsonConfigs/deidServiceJson.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/jsonConfigs/deidServiceJson.json similarity index 100% rename from src/HealthDeid/HealthDeid.Autorest/test/jsonConfigs/deidServiceJson.json rename to src/HealthDeidentification/HealthDeidentification.Autorest/test/jsonConfigs/deidServiceJson.json diff --git a/src/HealthDeid/HealthDeid.Autorest/test/loadEnv.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/loadEnv.ps1 similarity index 100% rename from src/HealthDeid/HealthDeid.Autorest/test/loadEnv.ps1 rename to src/HealthDeidentification/HealthDeidentification.Autorest/test/loadEnv.ps1 diff --git a/src/HealthDeid/HealthDeid.Autorest/test/utils.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/utils.ps1 similarity index 86% rename from src/HealthDeid/HealthDeid.Autorest/test/utils.ps1 rename to src/HealthDeidentification/HealthDeidentification.Autorest/test/utils.ps1 index 2cc00c52f31d..f2255cb8c5de 100644 --- a/src/HealthDeid/HealthDeid.Autorest/test/utils.ps1 +++ b/src/HealthDeidentification/HealthDeidentification.Autorest/test/utils.ps1 @@ -1,11 +1,10 @@ function RandomString([bool]$allChars, [int32]$len) { if ($allChars) { - return -join ((33..126) | Get-Random -Count $len | % { [char]$_ }) + return -join ((33..126) | Get-Random -Count $len | % {[char]$_}) + } else { + return -join ((48..57) + (97..122) | Get-Random -Count $len | % {[char]$_}) } - else { - return -join ((48..57) + (97..122) | Get-Random -Count $len | % { [char]$_ }) - } -} +} function Start-TestSleep { [CmdletBinding(DefaultParameterSetName = 'SleepBySeconds')] param( @@ -71,10 +70,10 @@ function setupEnv() { # Create resources to use in tests Write-Output "Creating DeID services" - New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName -Location $env.location - New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName2 -Location $env.location - New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceNameToDelete1 -Location $env.location - New-AzHealthDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceNameToDelete2 -Location $env.location + New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName -Location $env.location + New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName2 -Location $env.location + New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceNameToDelete1 -Location $env.location + New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceNameToDelete2 -Location $env.location Write-Output "Finished creating DeID services" # For any resources you created for test, you should add it to $env here. diff --git a/src/HealthDeid/HealthDeid.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 similarity index 100% rename from src/HealthDeid/HealthDeid.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 rename to src/HealthDeidentification/HealthDeidentification.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 diff --git a/src/HealthDeid/HealthDeid.Autorest/utils/Unprotect-SecureString.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/utils/Unprotect-SecureString.ps1 similarity index 100% rename from src/HealthDeid/HealthDeid.Autorest/utils/Unprotect-SecureString.ps1 rename to src/HealthDeidentification/HealthDeidentification.Autorest/utils/Unprotect-SecureString.ps1 From d3bbd263f7f7b6cef84e37fbe47153201d119440 Mon Sep 17 00:00:00 2001 From: Azure PowerShell <65331932+azure-powershell-bot@users.noreply.github.com> Date: Fri, 25 Oct 2024 16:37:57 +0800 Subject: [PATCH 12/16] Sync tools folder from main branch to generation branch (#26412) Co-authored-by: azurepowershell --- .azure-pipelines/powershell-core.yml | 2 +- NuGet.Config | 2 +- src/lib/netfx/System.Text.Encodings.Web.dll | Bin 59768 -> 76904 bytes src/lib/netstandard2.0/Azure.Core.dll | Bin 414648 -> 418336 bytes src/lib/netstandard2.0/Azure.Identity.dll | Bin 350752 -> 364064 bytes .../Microsoft.Bcl.AsyncInterfaces.dll | Bin 20864 -> 22144 bytes .../Microsoft.Identity.Client.Broker.dll | Bin 66480 -> 67104 bytes ...rosoft.Identity.Client.Extensions.Msal.dll | Bin 65568 -> 65568 bytes .../Microsoft.Identity.Client.dll | Bin 1581488 -> 1584568 bytes src/lib/netstandard2.0/System.Buffers.dll | Bin 28304 -> 28304 bytes src/lib/netstandard2.0/System.ClientModel.dll | Bin 31152 -> 114232 bytes src/lib/netstandard2.0/System.Memory.Data.dll | Bin 21368 -> 29800 bytes src/lib/netstandard2.0/System.Memory.dll | Bin 148760 -> 148760 bytes src/lib/netstandard2.0/System.Text.Json.dll | Bin 293240 -> 510728 bytes tools/Az/Az.psd1 | 5 +- tools/AzPreview/AzPreview.psd1 | 10 +- tools/Common.Netcore.Dependencies.targets | 36 +- tools/Docs/az-ps-latest-1.csv | 4 +- tools/Docs/az-ps-latest-2.csv | 6 +- tools/NugetAuth/OneBranchNuget.Config | 4 +- tools/NugetAuth/ReplaceOneBranchConfig.ps1 | 6 +- tools/SecurityTools/CredScanSuppressions.json | 4 + .../GeneratedSdkIssues.csv | 2 + .../Exceptions/Az.EventGrid/ExampleIssues.csv | 47 + .../Az.Resources/BreakingChangeIssues.csv | 2 +- .../SerializedCmdlets/Az.Network.json | 199763 ++++++++------- .../Az.RedisEnterpriseCache.json | 798 +- .../SerializedCmdlets/Az.StackHCI.json | 1102 +- tools/VersionController/MinimalVersion.csv | 1 + 29 files changed, 107535 insertions(+), 94259 deletions(-) create mode 100644 tools/StaticAnalysis/Exceptions/Az.DeviceProvisioningServices/GeneratedSdkIssues.csv diff --git a/.azure-pipelines/powershell-core.yml b/.azure-pipelines/powershell-core.yml index 3571338c9495..1757153461e3 100644 --- a/.azure-pipelines/powershell-core.yml +++ b/.azure-pipelines/powershell-core.yml @@ -7,7 +7,7 @@ variables: LinuxAgentPoolVMImage: '' MacOSName: macOS MacOSAgentPoolName: 'Azure Pipelines' - MacOSAgentPoolVMImage: macOS-13 + MacOSAgentPoolVMImage: macOS-latest TestFramework: net6.0 TestTarget: Test Configuration: Debug diff --git a/NuGet.Config b/NuGet.Config index bb609e3bc76a..6dd04515c692 100644 --- a/NuGet.Config +++ b/NuGet.Config @@ -1,4 +1,4 @@ - + diff --git a/src/lib/netfx/System.Text.Encodings.Web.dll b/src/lib/netfx/System.Text.Encodings.Web.dll index 6d2b207854ac679d3a1c64c2b81fd662a6f6f2ba..a85aa43cfef5351b53c4b039a743296e1a34bd34 100644 GIT binary patch literal 76904 zcmce934B!5+5Wlr&YnFnlMoA&fg~glWs?L<5KSh@5P~6tS!5?c+;?24 zTCKRXTD7%mTeY>~uC=uat#xa~>Sy~|Ti4pUk^l3)=iHeaK>hy9@1K_UywCfbpqOMPXk|it z35!o!&-@IbN&hr5q_VC{zscYtL4WPwVZZfK4fSe2hoaK|u&l9Tf^k%*xBKSDGk{2%|B$if!c1H90NO9msG27#~t90DBI6@J_QOw^{Nf1tk; zM)nOpa;AsuvAD11mGnn?qlieplF!rz!iCWGH&2LK8)WrlYFGS`Z@O@b*LzXV^MvrS zRfw`rgg74q`<pTqz=02y^HSkdy}Xpn02?E)Hd) z(&H5$NG;D+YWAv2W}yudJwdcXp|8-2lD#U)docTzLn+>YV&s_NNOSo733`UppW!Mr z)17I`fed$=+vPUc1$TB!LK^(YaHYA@ozjy(plCl89W6mN1#75*Q-vNVYauzS+^J6_ z?Ztw1hchlcFildjU1^F_{dFT<1k+GsRmXnVQ2^S-pWsjQCl%J9b@wRh2m*k~r?)56)2+l%`rxmpxU$IjJ<`;WMWREGYY$h!>)bS_9r0P6`Y3K)7}M z3=ahXUyCg-L(D^7Sd!9$goy1ZR<#I1?H`5O>}$O{Odxx zzaXnX=cZw&WNlW;0;>}AKuzoTLk86_tH5T32bQ&V_<1zCNpoi)gklSFcAz?rg7Ia# z$VIts@@E|UD$@0WV|>9WQ1xg9V*37UO#L(WoyO~Jf=C`G3==~z18K8VT0NLUZK=D0 zl}JATR zcx`v&IEwqw(cG3X^Rve|F`J^lB%@Cn<99rI{5?{q{B{%O^xb} zwL`AyCJmX^K%moyH2)DIO!oEOG22sUFc{mh zjyZJy_B873AL_vdG?fuu04XErTPa>}AsOsZF)ldCBxJ!#NZ&?$u#wvOOv8q%l66DI zZVlq(MU~phQL*n87CdGY<>`75=T6%8PDUV;N)sO={7v=*RgyQD;(nNpe!#p*lZ0QE zMMKG#kgnPGZ=W7qkNjOUsL6qXkN!txbG_`j(%|$JbR1cnB-SYhr5{Esdm^bNigMU& z@_bN@I$&}ir4HDW4H^u-qEv^>vRT$6tH9w`svqs(5U8BMj8BuXWKrB7&en3b?&QX| zoboA8Tvj_N>}&~Q#`%IvAuN*>#SvUaR+)vfMfN+&q_Vdm#DbCLDAo!bQOr!A?+7c z$U7<4H)H&gdAF7)>QdtdGPu$hzg7|4E4E6@xUo*4GFG9CgCQnvNq9J@{BZNVHpOVUQLD>jZC;tcqWbta7$Rq2Y+V(XUdRY433AFsA*ve}mz z%mx=PymB(~LY$!MuKXlkn!WKw*o2AG}e+>T7KG)7prIJ=jN;p%tDjShgt)oV~3d!d(f;*6;$mz&x#&rT>(D0}nmm;!cj0C#e8>T3e9odND3brCbk>8=BHXFe+ z!S2NAT+c2*E;c+44NGHX00;OCl<$vSveq=i6uYcVaB~|KWzdCJv*G6IagP21xA_>n zH*v>7?(nm44@O91>jYfr*sg4nwf<*gb5d_1a8mUobyq9=p;Js< z0{YgTN9EkZG6)=1z zUC347$06?wvKT=e;%V>%H&MuG^N==^=7i5h)5=wxY`Eh6lT~0G%A}-zIfop4GYLI} zdn|M^YxNm?0&K-F!d18-#EgK$MJGyW#<@~xqQ#z}Bc37clPgg^{b32B6*eohKo4R( zyNWVXG(Rtla_->Bnbn+CprU1mOlh_vrD$0knbrUo1~Q)o$Y~m%y>M8SQATCVT?K<4 z#B!vH3BoG#+rQi@hGJ&V#S9dZF-LLXGNXzLj7K*GqP0xG{UUN8ZpTHs9FWM5oPpbv z-?+I4;fIwU2FQ#Rhv$b0-x5eXB13Z@maMi3T~@9sTK3lzH!faWPH6Cm?DydSpMGTa z;sZmpq1>bAe`M+7zNYjXtK}!@{(%i>;DVgsc@%uhebjCfy4v?Au!lMtxP5=3C%41hPLZf7E6sxx36*HypCn^V=;C-84qKuOXPPs& zBhAsC+u?05;5&snTBLn{hD*gtRH@{ef>LEB9(yL6IHAG{hTt03;#lW84QLacnK)WaN3RuoH%*v zFe(1PuuQpS$3(VgP8}wN+mUZoSu{3glnI&?6DtN5X9$Z9STrf-2+>RRIE_Y@sYx-H zfiZtZizdaS`>SRY!YX^RMU!G~Aexpri=JZ9q?mN)(j0}b=zNPN z#S~7^r4SZ9)uKr;%ZR?rMo+V7Qq0SV9<|X}Ze+blG3l_-=qX*Au5pESeN^9vHLD zMwePNDP}v-Q5%hwRC-Q|xtHis8(nVEq?mLeYz{+Mu7xa`6mx{=Q5#)h(WIDk32F{Q zSg9*5niO+{=usPut1amoDJETf%2NhUpe;M9ESeN^gy>NSD|6hwl&MKE`8YC6#}Spf z+M-D@N5Gh)HhPvtlVZ}vl{pMyr9Rf8Nij!=9<|ZOSu`mo9Xrio2rKn$izdY!A$rtC ztMB+w96>Nyroib>Z1=8X^*J=da1G4~QZYNO{_G$|&X;LTA8D|L-UlVZ|A z*c{G?)3p{&ia7$tywOJ2Su`o;UZO{B^n8mZ#iUb~IgBmJD!bmINij#jm^a$!28$-e z+)MPRjb32Uq?mNO+zdcinJ=_xQcRQRxi-4dqDe955#45^Pq1iG%yy!OZS;v2O^P`} z^r($qWYMIUbQjqCF@)vXVv8olyocyf8@hLyu+eNF-3rA2#fBtXi`jJf{sF1beBbw zVs0S%MjIWmXj06*ME}l4ud!%S%om6rwb9)cO^PYHq?pTyzRX7VSTrf- zipfMnSah#NlVXY~pyxtZ^m>aX#hgcUn~m>SgE&IG%2PiBpSk^w^}qQrYHj424T_LESeOvo#p`bvu?#S}}3zA>KqDvKt?6njBmc59rz+M-D@F9&1(&PMOCXj04< zh#s}k-?3;?OmQ3Nx!;dxevL(wV$K6&-e{w*wP;ezy+n`N=<6(+6jS^FbO6F?weMOq zDW*yEsExkfqDe8u?Vw8`tkgGHG%02o(Q|F|_bi$ea~{#dHX7|KPd%iVBSgPpqtVEc zCdE8R^r(%#$)ZUy#T}qaAuQK!wrEn!GNRjT^eq-mirG%|u#HCV$g)W>M~HsIMx%=) zO^SJt=usPu=9e@nruZS14Pm*4_LVd#W;@ZtHX3!5G%4l?(Qnvjlp|?U%!5Ra+Gwbf zCdCwYf-Z%y%7!XwQp_@YrFNDW>=W^il|`V)t4!DdsYwN56{G_gOS4rZ@yT z1;R>wzeST`rV<^n(Lc3lQcRQRQXBm(YNH>pXj04#M336& z2Q8WuQ;dRsAHwqdA&Vx({D5e>Z7FHoFURI6N>lW0zXZMQ_Yg*l18*VH{rw_PS-3BX zyU1tYc3Tl1v&LeF-Gbf)sO7tOIjYI8}wyR5(e6g&Y>p zJ$a{SMLFZ>UT@r^1ouH-5ZkybG2L+SO{3tcxFhP%a1>5XH_{xz(}40%OxM#KIje$g z0Ks;Mw&pav#7VC-rW?U9459u0g9#`GDx#KtI(9r zBD@B`Xa-O+y{cK5Lr*@3gs`u;qwtcajjNt9u;g7^D!5_eYmv0Tn zKnJ1+=Mf~|n&DeAd`lM&XRw&u?Lh1Vw?71r-FOU;jJGl5dl<_!yfMmkuSFDkvlGvlT)2rmYZ{moO});UB;EI> zJA!vm!RsCFpqpYPQY>9QkWX{$Z%T8l=lRuE?4$bA1Gd7u(;T^784lnKrz6cN6COat zQuH(@-U`idvgT49k>8u5LFcAN zlwnl0D7i2**;(xI^0U(7L4HDt7io)hyhmF@u1`vLk;6Eh_|m<>5lVA{JIxDUA$-+e z;n|*SyR=w5Za#Yd)*lK$A}UJTh?I!`Tg3M#I$h1wvYvvh#KMoW6ARy`@tuISnQ(a9 zdZ^X@LX}6`VgULU9NxA|9d1mhcJeg^TA;eCM>XU=w`@Q!<$Ex}z} zY**i%}H)Mkk7veKTF|%{|b9SGZeq57fMaQC^s1#kV&{ zQK~nq1#LO=FNM?`2ch@Sg74|6FfvIgz>8#$Vktt?({9KM7kxR*S~6?fp{0<<3S#7n?trL6)(y=+Obxu=y7Anxr7=l z5?MxPlVzo{@Fo_e)tg?=*^+e$Ru4VjAH-#->*j&oun*Khj66=>P1Oy5a0w-+HTXPC z5|hW$MwrHqB}Y-kj#rT+K@O+H93D-Rcr>kU%H|eGa(n#VcmwzfXY6n@ z!sx*eY_}4nVVldcC(~WqpC;#g6R4F)J-p@YHml{>7Hc^fBi3?~v|28fJl1k-8QXFn z9j)aSQ_DRGk7DFyv1ZL0poScIid;X|z-veAFb8MyR}BnLk3l-C)T6C4X}uNvMnz6& z){b68D9T871hPAvfz*z6M{Y;E(e5iuGhlI$1rPk&lO64N-_?g*%|)NL6w0F>?-eH@ zPb?Bvp5sIH|J!*cxMi;HoM0j{Pj=!QuHKn31a=X+KWpVbA=E1KAAf|;$*$avWPF!Y zIPM7FlTnFeS9^l2L!w8P=aJ>PUkoOVtrMN;Cd)D#(LOn$g|f`-WJh11ti#zCFws(d z)H+5V8q05x83vd^!ikW^#+z8HkO#iEd4@)Ru0GI%67VjeTyGd4&ZT5T8_;=U2EwUm3q80N*0F1i zzTDF(M{ZH z*7}UIE50>z;96!g?8VODB?wYC=vsqvzygf4*Q3upZrxj5uO&5XQuG4edc^RS#oYc~M2(g-dB?x+^PsE}~DRb3DEP zlwUGbsWuU~#Ny)9wS4|oLGfv>)>g{Vg^XK}anbek#X%10D!&+{cZU4(efa23suk6# zOSOdqr?BGKDU8N8?pdfa8TM2xFr4xxZpdl|S+#;A4$Zv&6MC^-g2IbAKu z4p%G344!9|haH96{@cpCw8vIhI(nVQ#}Oq)ah2wy635v}j768la^GEva?y=xh7Tj6 z42jg`L}@DeNtx*UicbYx(F@=$uBJ;pXvsp@@U5!f&1{A<-RTHogz}e-#8qTERaUq{ zv^1|maG-s{8qDZo@Xx_=bYJx^zp%N$iiZt0*tf{`D85O&4Ap44@;E{dh5Y)!FRYQG6 zIZ$hoO9_PoNQcjLX#q>}7WvRCv%J|AGYW@wOwo9cOi6b*(0wC_R%Kle7X;lky78tI?xl zJ`13;#W?sudx#Otu=WtE2GOmkGOg1TZz;kt_Y8#GrcU{B2FCleZImAAStoT$xUUOMX$qZ1T!40=9NYDF>Oi8c) zaw_%e^!Igt2zMOuLg@lpRZl^NTksC5%W&weFrFGS7L)|@F)RjftHig(I-*$Nb?W6+ zEY4^iwK(HLog2_rXPBtR_UC99?~g~rvKx=Khnf^$tWhK*SRosj+5qd0+7A=@Z;7Qq z?bB6c*OeTd>uy}y6Z%_$pzo70DCns!_R)m?2V?1s=oC2bE1ckp;$V-vGJF@e2zSA# zV4RkzWLFga`ifuwGwz%N1OQ$y&~WzDafN}eIeo|)eXomS5n^-YGJa<(;{vo2ZWCOD zfIj8Pba`4-30_$Of6LWFh&td6h6@O6`roV1b@rnFQ7|WPXy753^7ZWpX^7x#ini@Rn_w%% zdA1wv{{pPGdo}o&l{>6pU@J&WjO&q}yEdV4f}6WG5#RKW;_dGw*ETFEK96j8cdTpO zMJ~7OS{VTa2-(MFbVBg~ijW@Mi;U&X9}DpOI5q{pcYtj`onCTwJWihDY)ZERVrNqZ zW6q`yf#rrC>ErvqG^hMDt-^z8vK>Aa;9SBd61mo?BbZ#}=q^94b3xiNbhqCk>4OG|K=E)XmW_*kKO=uZmMf=|GTBc*s6YcWFdX`w%IlZZelo90$}5%bZ}XY}w z9sYGm>2$(h0u#Reqg(X22c6Z5+wFKTf&1;W#5HEP>2-W}UwaaMu>xEg4$yDv+x|%H z@fL*VK<=s*ZyGLdt2^3P@Gv$<;M3f091039L<7#q!V{QSe4{US-KqmEi&oInv~?@| z=<;9}bvfG4LC;I&JqUHTk**AUj%>a#n6(=ut}FN;6Ublg+V9Bn(-or2g#(SRSRYs5 z7%wj&)}`q3GYT0kXH2vS1&&-9tu95MV9RZyJ(_{LWR5_BjF^+62fVhJ0iTQ-NW|^x zZ}QuXoiFA$wI^52>yuE1&x)pVRyUKSDV23f#<+>Z{aDJVu{}pXu-uX96^t ztEfSZx>@&tIEs&fA$-Eb=fnLDH4+uZui-ed9a4J9`CRv$f245RqC zj^z^@(bPs0<&Yg(?%waPhOC%@J) zbviOnStm7^xlWujW@#+$M5zunsX9>vt4^fz(6+59ZgCNhYIKcsI54{+-4U1?=nV`8 zjtj1$A=Z~;wSHiZB)j9}NpW&&#W9pJ99SRNfV8Jj+R*q|+DR3DqR$8n1)`jOHAP69 zKv#?0R*v8Uu+S5(jIwX>3unf!_lwD|_v^H8^Q-L$zi_@Ize)z~hcZIsEwY`Qe2?--A9xtGlMg&Jj%$kh zK+R+MaH8cyqw*og<^!elG}&FCT#NstuK3u6HL=$U{)AT1>9WqZ{S9g$dEZFhL&XM- zZ=Wd!zIHr_Ab}3PStZBe?2x&gQ~I~R347r@H=n!ot%TGrJptdM6Wso12tAAAB+6r&8Q<$Fjzc}0_$fSY8v91xQitZ1B%un3qg z6DQa9Mms1n{&0@cPJZK-LN9I}i_f(R`hby2N7cmf_=nSncoc>^@XrZ-C;lOdxEcQ_ z9{Q3))Sc~*A$(HVu~N|YXw2hQE|o>^X>bTP@OR-j$^)ZSq-TUDyTqJhNakje>`BX+ zoFSf^Ol)5I$$po(;+T>gmpDJG7VNlVNPdx#Il(1DX*;1mm`b`cljO!@NS@7XKFeB` zr?LI^G-6#7o|xtmYcoiSw2yGl+)yT!@{j2xbJ9pIDlEzIiCia1Kcq{{%^~T} zqjFE3K=M)c?act$k4?{kn{EqAUr?l|oWN~HcspFEx zWof65bBRCa&G)**myTzAE|Kpf`3T~;#4popC#Q=FC+VZflta~|f5P*RlSw|qCC+Bg z=d*7Cc;XZHO{18POd?s7MKXa)zqgdwigC4*{o;yb%Cn8@wW^Ht-}y^&a)i%G-tOX5 zyCzWD(v$|jPwbgeg|@ntEg$5O{UO#9ib-F@E(t6C3;~1^Zx}lWN97caE zlc*j)^_VI?58P0CEk0IT&gk+KLg}K9W1bUyHEBIgdb@;%n71Vp$`jvm0o=__f%iX+Td*A@rQM zj7vB85cm&jXP!-0h0bU62cQgaE70NBikE;AfZp{I`lGmAGl2Gv7vd`XfWQxJ=oRrJ z8+u*b&*&8_n(M`%#6!pvKV=DYt@w+0j8Q&3i=!XJIP&ag>(wmpHORh#?N_p89qZ?^{F6p(gyVddEqAb-%Q2s0`3Gj7 zWcy^cY+!jO+uvmSLAE$Jw=Y>YS@&_AI@YsUZ)3ff^+DEaS^o~}9?ormErqPlWBD`A z^D?%d!Imf3asylLVar3D!vwbXu-wn`H_Yzin15rvf$e`~ImtmSkico5Vfi%2oW^<@ z>u<38bF!xm;;oGQfja<(sH`vSJC zX1R%FGP4~lFJa5WtncCYH?!sEEMI3!J?DIYE$_4ZC&y1`PfA#x#PS@rPvunW+4337 zjfO=6_(>U?WfHCo!O0S{};>Y%#LIG4z?Ja za~a!bu>B*J*D?Dpvn_0SkoB)P=hw63Cfjs2>DdgD&4?!->d&E^C{yyOe=ppl2)}M#`&4lM|mIF#Z zX(W?#{{F;=TrSsItR5>zKF)mERiPQ4KS8c>{spqm^;c#u1>2MN9%SmI_gpT~oV1N4 ztyJev`4BSX`xIsUYr+>Sg}Xu&B?@<*h)#4u|JMYsTNAgZlK*-M$-;!|k;9z)WZ0i_ zl5XXh;a-NdRfu!5@0~>3Mavk}J_fCgAwTjNiJ|d8m&Fiq-;1G4#;+hy5!0&)%<2+5}Rp;(<{6$Dpn;s5gc(MYY%}k*76tiI^pJ z*|=Ha3LAH30VT{9FT}W1pufe?Pu$0g zf2)`s!JoV52>Rkwj`?2#<>C-5(PQp;qEaIEx>n3qh|<-H`HXgZ2F70kw44ye((}$| zfmTaSyp#Q`yH4EB=t}W?$@A{{;wK7C1*#VhDRc%wxhh`kDpn^@uL7H=!GwRDcBN3`QIiSpc9TJPxjxK@irrhxy*BhScJPJ1B#f%toiY;Oe zqn+ReJzK>B$$8GtULv-OW`$mzNGQx`kLUKXEuQV-42A9o8Wv|uB>p+>EYD8yUBz9V zd%ou^aXX`PJ+Gjr&k~O*v^0~@Z&W&m>k`CVgxh*F%5QPq;5kS91{ae;JSF~>f4Ap+ z@gbvgf$sHOAm|HM;+{{sO-$$F^@Ol`@5s5teU%tg+)(DrKvyYlZ|1Y^?}(Lj0|@D|OV4*- zBRU9)-JW-m?piU(h}!y9&$Z$ii9BzW+$O#&USPD-^J$3_=oQ7$47gsrsW_Se*Nb-< z?GY!Z9`xKGTvb%U9?uymfA!ob#w)aa9HA;8kJv3dl}{Moya|&t&C-B~oafyNRdc%E zDD(^V^Y03s$SvWcM`Y;DNHXOzU7=?u5n8BF66e{i&`&s*a}`>aMKNzvsFTZkLZKTH ziF-?-*_=+tO@AtHP9AZ23O&Ik%v0#D1mfBhdYD^qhe8)75qE<^HJOBdsZh~WLa!;5 zo=WI*g)}Z<9Npwa>927K)d~eT=E(~E8*}Uyai&7Ab3a_I&^GR)`xUy1xdRIQi)YS9 z3Z2Czq|K4#ZRWNvQ|MTpRZA6G!l+N7cRA)I3f<1=E`@4%WIdV(~8ckE^XPmAs$6}p0R8BpjY&gBY5yF@Ve5X!rYkhV)CE6f0!le>rCJ%Za7YCLB!RzkCdp%ExzcSh>?#7eBCxtkPVp8eby-$i;mlJx* zbA8@zIOpEZ=rR4(lp60-;+G0Nm$K6PoOnT@6Hvkn;?FXjAg^B(|4`^`*XiB^;tPeS z4!;*kO7e>;v*Tts_ zk!Nq>t!c{TF`YbnM`Sa4iaqB*+0dpjHGApi|YvC`u6kE z-QM@b9Wiu+_e1f3LR+TX;r&=7u8=XeO!=AjKcY8=p70(L2NjwZJm7U|^H$23^MVJx zKJBg;`lmNlD>+$mojG55v$P1K-QuwxH(7gtk?e=b+GmX9n3$q{$w;>R6fL!d z%6m+wmY=RoQHWZ;L<=#JEnlkDC`2t^t}RuFT0W$O6{41}(l#=ZEk9G+!-(o|yle(Bdt{Tr?k_Og|=w7?-t8XJiWtcj9MUQo$@_If+UywG?j6!PW9SLrnc4`Wr?e;YaECyIr9S^CZHk^8hW3p|pf^v=xkGo1Lq*EACByPQtm` z6NIp@+*Xq2y-@p-xm{vv!IXrHw1r*d%Pw)iTa<9ImKu>UGkh}>F4Zas30em=ak(~| z(c?PJ_sg|U6r#1@3hk~n6jRQetF#9gQMycVl~&zNoJ@DMHlh%v`;PWBBbn}6?I5Eo z#hs2h3D;`(ucdTXiUW=l60Xmek4xly~Ek<9Z(jlK<|5-87`v_}}pJa5r{!{|z} z%CR!x7H!$-6!S`PmLr_-eQiG@8d*-f1M?oEH?<<%L;9iifkIc6E&=NArF3t4_Y~g- zv_&GVt&n2wRNNnnPXoGKakZ0r6Mm>2Q0SaV1K`jJ;^RzuMBREskk4d36i?NLjvf> z7m_~LIaW8sfumX+;w78?P4?u&0OdgW;9C-A54Si}Zb!E}Ri1WM=G=pp)P$5Lq>%m= zTV6$pn&?AoNLClpLNRq^r(UqytsM8{@MQc5`2@$2($3c7UZXB9gS2w^I8%qEzJywP ztlb{R(se;UeQbz9$aoH<%TlCoZ<=JejC({{=;!-1aX~6c)20ux=OlG;ayGG7jVFJq z$6GOV9(9H|fn!oyT~wk+tWhELxJ6enA3A;sO%gbDs>O5ixvSfVH`_KZq*oHY^AP2J8>nrs_uDk5J zrvsF>kK@ySPzPo42$9ljYd3pcEJsZA_)rjJUIQu_Ha&sKY?BlG+vmv}Ztmx2F|CzWW=lYAcQ z`5kQeI{(S830W>lUEJy?%m05L645f$FI4)G`blUjLySN=colVu^LggVm`7*vrXknm z+vB)J<+sMPy!wAz7L7ndjo4g_8C{&smV0A63ym&n6B;3wF8k~EljD8&|G&TNK77;Y zqJ5Ues$2Ze3bUMZiq~b8HYHI$NAUUk2Y&k zQ>~eJG&Vj@kJh&Fv`1s(Y2*ILI^s?N`)N-lR}$GWv~uD%Ot{CXUOLwcrw-dXEc^ZU zyeiI`PGjJQ1tjGPnayj6osHXZe8Qh5rWYSB?Y;Tmyy{Xr%N5e0cB1l9db{GB0+Me} zB;P7b%BQ@PR#f_gY3wMqkJvMKe%UQ{y)K_}lO@X0ex$`7->%D;w96Q3rW|RxJ+&I| ziB^k0;GYZsev5xE;y?UAXX-RaC%*FKYi3A#pY+~Isd%4&PR@;xIk-temR6QwNE2Tr zlI0ARn_2E;c>&AaEU#sG2joZk}QJ!E+jnxd{J|be-!q6C+!!n@H6X5W+yQFik9gA4`LGgnfS^tv^TZe z%bbvH;}an1trC*iECY~Lh0|DQ&wu9A7O6#pUUS0%l`_SYcCP5g*0 zPJN1)Ffj%4_HpC%H#Mt{C3+>>;bCwlbh1y^KP_E@M?<3%dSTJamxyPz(^7ZnuW*Z% z>(uhI^!rk8)aP>x%vY_4a`hU0QO>KdQ$CfR-#CoN;E@`Uqiuid-sZoP= zn_)C^o{KnDGs~0o+jE8tO`n*!336V-MUYQTy3MH3pP&9DTefPIR8x3(Rnq4M`RsI1 zuO+bbJ9@PHQu7@}%ocGSTe+0gT#MD>z07+!PAYntuBFMt7qqaRn(!adgP0ng<0gsU zIK7w$zj1o-1v}|^EQ?vrU|B700lQG#?li&}!JehtnVH)1dc_gI-|521D6G}ve z_%-BsaR73%_z1F4d;wV@8WT(KX3kQ`I?)1oqSy%8B+g>_J(l;g{59k$;vi(F_yY2D zQJPdD2E@t9C1R`Sf!rl-fV_zFX%hD(*9klsPN>6b@nk|L>z%CcVtp6ux3GST((e>^ zq&?1-$Jz3@xKq54_9k22Qj&6e3-*7fX&U8kC`oohqa5M^1Sq2Y`F#UhV;i-Y6g{?$Fk1IfnH}kE}lrQGoBL@ zGdl5^;*$xF8zHpqs+L_v%Zhz+b+uAa8rDfXVxO-+nLlp zJF^amiK&l54yXQi*5AdGDUaqH5O1Zv30a>ue+rj1m0})bDW;L`m`3*YX>Z|6k`c&L zQl2Owizux?dx}!Z$5G00*wW6HF1C!Yek<$yO4&EoMH%UiGRog%eICnO%P1eSobv1{ zC-!WXd&@6GT}CQC7SE^bt04U#%e|GL5!pkJzAq5nv~SO2;Gmi`a@ zD?Qc7G3FXejB|`V#!bcp#;=TD8~cq{jkk2-9rrta<=F3d*>TX} zgC_|%d!z~nRzN4d?r>ojb>r)855BhY;`@#Se8-W9btn~UXC~H1KYq+p z8`yp>%gM}s$4mCii6ry5l-Po>nIy}mlJuvNbaKo$IOb%we8KH}ko_ECpRZy4Gj8E?Ip%iuZ4S5g z87%+Fmb+Nia|;Y|%s+A+A1t7<&f;=wSPGUpr}Y*Rd((816FBXXv_%X{;?u8Rs`dEIK^O-FDv+rZc*yVIcaU^(ji`aVR@6aWC+Z=;D;7Xrk83qu+UQaRu}i6_ByWb1|aVhLy-5O_PV$q zyO=J1igTteeug($b^J2lFysSxYNuoO*ai8JI0y0bnyaw*Ksv`ALM@ctBV8hRL3`a4?_L{-s#wpABOxRJkrI> z@I}Yf;^UC7qI_MvhLUyhI?B|sXFmt|XOx3G%P2t?2a&ff-bAiCzRUXqEf?Qp^LvEt}gx?v2^VJ{{{JXFuHgTHeLJ!NEiP^sEhaUKV5tvK7{;G zd<^-K_!s2I;@^;;;F?tj{sQt-@fGC1@t<7K#eeXz8T0y15j0hyuAggi!@1(~TG2kF<2hs@IELT2L{ z8vjLStqw9rtA`wq=g+#Bpfy5H)J}xV)fPhrw55=yb`oTs)&x08TLC#)I~j6{)(V-g zodP*kI~8)8)&?2W!jRLoPRIf+0$HeaLl$X0kj2{RkR{rB$Wko|S*D!$J^~1KL)|L2Wzac5N6E-;+WL9ln^^iM^ z1&|{~Bjj1eiTDb)L+rr(xEf<;kM?W5+vqcX;Mn$=znYVfA2WtSJq=~IJM)?DuML>IQnsiQs!rn zg1`42XX4q6{G$@Cz};H>;wYE4Zye4NxLPd7>KPLBUqH&keS|!$ev_~QPsaK;4RtQS z3RsF&xD;z(DbC0hSOqIN!=LDDyrkTRuobmGM{Ly2!@sMcKPc|d@6n$Z_u}6@`bOrAsJN2phgB|ASsFr zLNcgOMx+22l0k(G%8;InGN_P2S*6TH1|b<#$e?V7Odx|A8I)B?qYTPs%H%Q#$)H9C zWz~|CK}ZHQGANrRIT?gxP$Po|8I+-(R6iMnWKbi6vRcW>AS8nt88pbCtWHLeK}ZHQ zGANrbIT?gxP*yLEG6>0_QU(n&C~J^WWDt@;g9_@)+1;6V8rC*cBZKl9Mh*2GRFqc` zS2lx#nra!$l0hv8q4^v%)N@dQ-k~0=MP=+CbJZof7Rx4x5psY?J8H8j|HeVWL5RySzJsU$RD4#`n z;ul6Z>q-vFW^hnmCj*Q(LAYx;E-_ZI|&WdIp;}Z-_MYY>6CS5fUpJ`vwtI*4E9h zte9Upv$}RxC^QQLyQUlqUsc77ikao1x|y>oD{HIDDk`h%DynMH1@%?6GplFKFE4AT znl-a(M(7&~sV<)t60>{e%xG&1iAB-wkl29#SBTjQB7-%(z0r-4t~zwXvS?4=;J}=& zwzl$05$l=qDuI5PAEAzF=#Q>PXGxQc(HxbAudiZgMwO_>a#GVUzpep;uCk_fJ{GWs znue+w4Krso)K!+%gz9J2)K$&`8LBO>t(j3bYgQFv)mAiA)z^g@szgIiUspp<|G;3~ z+Hilkb1>519F4hHEylQquSczc#NOHPioPDIha6ut?8NNF(XOH1$Q&_yS%1%&;lW7b z`VGC2^^rd6uxQ`>$Y8jqcVLd_jtsWdU>x*x)^8e&^mRqLYS>n{xxc5k_i$_d;M$(( zhQqCkkY(T4Fo{oMWRCki^GF!BkO74g?pPeukVQV4#-%tBFp+C16Dm7qW$X?*)+7l zYJpx1*yu*sL*-cX8>&OK*w@R^p%tN7C9Pu`MVgLm6lp)KQIzppYAj=YO^qdaWR0c$@V>3%YK(FC zD5m*G#;O-hn+FCX>q{D!il*ga#gfLlrSt3C7S%L0w~@ANY2%V+ab~!8DALx($xjUT z^@Y2_GONgj&b3l)>gijHrIF3eYs29_sV?m44|iMO#PDGFbPFt78}1(1pc03N`ojZj z2m8ZfS#-ltF9th?KxCjZydlyxAE`vmKxa?SVYasLQH+>iSUV1jxnXQ(U6dnDo91wL zN4RgJ1WWsSHit#Srsa`==um%WWS~SfO><<^U7>a$P_iJ>7wK2=7W9U@qrE+t zEi$+021{LlilIfZNXATcL;d}jJMbjj9qDRb+mGF#u}jRJ)7#e8g9W}P+#562bajn! z#G2G>oF6%p@(B0$j4^YOV=a+re|JwfwtjHx+USPp`skY2;=x9>M${qSE+nYwi1zn% z_w>;kfRzC&m|QflgmLt`==u)0+}AxH?b}cF5BDw(_n#h*)vgX%Da%9ytafN^588fNxIer;f~{c*f;p$Rwbh0@PlrDZJ&|6}%OitB z{e7JKkz_3G*YJxXecgj=k4(2Xvc4nIKX4==H!I8ABlw1%O_8p8xzR}f7GR~V>FcW5 zumQV^z#1IsuZ<2trTtl{ayIoWiijp`IT1l~um=kTPAAJFYa$qt(ijIr*yEabq6sLlJ(`{P1hHF!cVPNgLhjY|RF%ElmEYTR^>vwTE z64yrhqo+q=eqjy|_N5cR^Mf%S~wFgR8^bLg9LI-|i*EV6cM!RDs9y|7!_3JkbZkC3A&doZ_p!(+r@S#S8V71O zW0o%JIo+0QexzflyPJxMWh|Bq(VA_y99H*uRI9qpJ%jf6jcB$oT8kTLakz6WdMchs z_DXEj#EGRH15vExwy5)?k%1-ALAj1Lu8Bu&4)=FQ1{-Mg-5BjZJx*ZHKu2Mx4fn>4 zi^H2cB2=xo3AvJ?ag9>qj9g!jF!Kx^n+Jwjn672US{wV~dCBID^e^l|*W2tdhfZEQ z#>`8*Dtau%8#5oeW8=qa{07YYmDmyJM1BO>*tZ7fY`(Av_Z|_eDbhKF-E=di`1+oK zqvtRm$F=?*97F8ckLj3rsq-Ui!b81-vI*m6-g;_>)?mMg8<)VTGb6YXjda`1R;^T4 zHN8FIfp{WiosXVdzaiQ`*c1u(cdlKAs}5TvIkC9T%OkzvO|02?s|cJ2x`sLjk_KWiJ3r(z_r4Av&ErUNlN zkJSN^cO)`mg=v$E6%V6G*9imBz8GsyGKN4qTFbEf$zD1&UNKqEvEzlx#YFDP_ zs8Wz#X{_H^-S z4u?!-Ccoq$qxd*GDm$F`dUJKt*vPoL?89{FRcSkTVNn2Qlc8{LV;{zbve3j-YA+wD zxdtbOH;30Q>S29lScbT~mCAyl{`Etrua%&2fUi+G=F;A}wLPaxdo40U4cQ*Qq+*Dx zp6FoDl5lswmESs?ng)ABv|}AdsHF>LzAx4kT{E~5mnaPwP93;-5IqApvW9!{7FOpli-KgOSxW=QZb?*X*uw%{i^vdH<^J9tPCC_kPd&-TU6pQL3v>rBkP> z&N+3esymed&&|ln#VSgJh3G*#!l<&e(MicfRueAAgocMFr>D3_Wyfi>$=Ymo<(rd6$|Uy8=nR$z zMQ0GpCRuT1q{Dp4Rt*g^jp7gHg&tx3ZF}*)2ym5L{IPIo8fhGk9AVS4)4(a<1fXcO zDxF$QS%YVIvKDGeFcbuUG4k1kBqUIy2Bo4f7$Ik%vm^whWfJv^HB$y8YtvMjrBa4! zN(D)Gwc-}dY~R5oiv>QaBT@cYP`pWiU2zdJE`@WIQDvL0ghu&m=!1-Qnk+gw4q7Ga zk5Z*!{Z2x3rA%4^6Ct}$<^v!C7K&{XOH_6~rZvp2v`A>($?%6?2B`zGvXgtK zGuc?jLH2{!Qu)aw82LG+y|m$y76F4HXZOQmB{DmmOh?lFG?LYHQ_F&ljbX-dymsPG zO(*CobSQ1tVLrQWY z+Qjqfk^~SKSQvBbB*>YziBu$gBLNxkB~g5~5=bct!b=Z>(Sj-If)W@zJ81J@m5a+} zsn;efgDzsAoJ42P$Z!?=l3k;uxW1_G`q42IGwqK44YX#SQ?uAwR* zr5B52@!lM~cgOeXIE{@I+86p)>qO5!-3KSZ0xS&0mw4p{~WOrWr< za+Kw>5bHq{UA*uSgj=LRnS@>vmyu)C8BDVv$mHfQh8rzbm}cxq{}N19jxWIeSYpF& zSr!gXs%!*2R8X>5g_Yq9wp=JWgXS}Y=+NOpakMIK1hNJ-)&!izXkwv#Q%f5U$-wSQ z7EK$LggrzimhAzKT{CpZhNx39FPP{IQVX3FMl*_L^(XJPhSZWiD?M>rB&YFXa zM><=IVbHR{cvQ#w2-&IZ&0_iyTW%HuGD8J`&4UCmS4#pcnsj;+R>Y1&GU!T=L$Xvc z-Vo)5#aArv?naijX1wu;?1wgoZ60%zZoa~J@wFn1vX)8g9#68k$I}N?ib!o1<`g9s zrXATp`y1mpUsW4YH;m;p8-{FZ2CUTnshLSCiWQ0B5QgErS9%77GeGPZWmVkJ^q`oG ztOP?keyKy2*;yHxyg8FEhL0xV!Pwksi08LV{<-ZF_o(*n{E*aO5)#`Ik+e{uG(5kj zqEusSNY(I55-y6eFy3;iVdya8qOypolqC;QG@vu4aKX;W>{df67iOhkX&6*980$e` zYzk!Z#ju)ZWHJ;Lpl(nL>4ZcNvd=g&twHE?6&PF=I0!LaXbhGzvhXBXRp}aHZQ+6? zoIXmeB}-NfSun94n6C`Y;KoPE1}p7;w6B!VE)&g<4kQalp)mhI--yQKwqZ`h0wY(0_=x2AtPBm7Af>@XP@!^mk0wNwnn*WiShRR>*{vHI+c~*C zHh{qO*~US6>6KF&6qTut$C_6I(TxQ@#swXjz(>Ob_rc1I&B!(>6{bo~ndD0E4Jv{? zU}2?7GmfF$&KO|8zAT#PALDeTHm{8%*xk1HTw@raM8D(&Ev92aOK5%6PXrl@G|UN9 z6)l0#sSBk&IUf6##&!}e2j)98^pf>0-e{W2u!Id%Wvb#~^a@bt!rU8~p@9YqhYnk!bs1(c6{Hm2Ue%8c z#1c8gre)2P8cruM;K2%B16N|@CC{-sV55mH4M}ONp1_H@X@nDlJiIGl{9vC`Eh;R-{C5ULt#-PN&1tLfHhR1{Rj_EMun8 z#!-P&)Z>WFnI?bj$ZS*DT9?bVR%8gAi@JsXz#K|ml*r3HiM zjn=GDpN)+oJGo?#)ADdgh#eBdD#GnyY79pTC|QhG5?@`ku!02glpHQ7S=Ad>G2eoh zTE(!180C&PmVuZjU1D4t%lqDmL0@-sIWq|(lWKt^Ac;Q$k=1b;llpr|0Z!%8yku6)su*&4E3=H%Lx|{p8F6B;|7WfyVX7^&f;mI1-6QYjGQupJ{pr9^8j-rrL2fPJ? zZW}NZBXBvR5bI4Q$2|;;4h)e=!5^n_aPr%oRo8hatDg{A4W?+c71I(z9ENj>E3a3; zfULo4z!2nC>xOVVr+*LzN3~YyB9z&sW1|9l0tnHuTt;W(*Et<a1SjT{!HoyGD(2Jg1|)55<-!#bPN*_g}Y-K#d6%RMA(spe-%h&a)w6OGZHytr#me+70P51 z2iraZ2{PN*Gg2B5iA;ftgKf4zB9jYTbo)sRijh_@m6F6FsgsEH&@@tsg^fT!BAoHc zVn$>p5SaioYXQk)WnwCp;zx@UnVKRUij|m(%+1Ylhe?X6NK?@~MkuthGGX92IU-QR`;5wQzV)9^vR#s9#?Q|op9A$u0kE0nQ;d}tHu}+RshET&+_Zn3QQLfO+Mo18~ zab^e(6j6zpjX($h{#TSTLc4rRRBplutl$I9@@)ko+<>AUdj=$O0wK&9+E#nK(1J0P zN7^nm6?Cp$(X37)&{QUqkud|rgnM$l>!8S5dJsmePcKFC> zQ%Iwwz?F>#QY@AtYg03+)K)iFWG=N$#lWyLHK$=2!n(N>BtwH)zqzT2wJ6v|RH>4* zqEybXLy?Z%`7-n<`WOGLOhtCODK@q`9c^hvQxiMgP-6(^Hz61}GkB2R5}F95v|$oD z5@Zt01skLBAT==+$pFD{Hbs-oWj2Hegbw&>v50`pk;U9bgmj3MfQ;tm-1x>g7gD^X zrV=zRRVpiQYD(L0o5c4dnMP7NQdml%dq52{hNY7ghK`MZb{(Bm=x4bIJx1t7+aVzo zBEtf-uS`ft+YT82B$Sl#sYNBJ(E+H3ke8#j1#sjB336Z*QPv@~MUUC(4ui4iIEa)F zi%jepl8_8LCy_nJ6lld#+N&TYFa;GvQajzxQi&;M;&th!{@prOYH)p|^wi0(ljQ1T*sy&^bE0QA*s`&5(~8W^ zrk^*gd*s7t#SV>%Zymjq7b`w#{ZpR~KTjIBtoFlCwkNl)Xj*Lbxp@0R*VNu)8=Hmy zCVEpYBqe>DYv-Sqc(-y+f8FQUq(!P`%;xv%^NuI3AHDrDUU9g{#eYbL!YWUzAFEyA zz$N=zi~YTtI7u$;I8)dAsQ8l}2ol6_H5s>%#droMWbq%4Tn@Aa zx_Ryb-O#_WlDPBAK#AqVuvD%m=TEBFlXJ&de91SY@vojd5Q{6QFTUyQnZSB-_QVm? zq-fYn(|zL_H&!)_Z`erb^vicIVV z2~DivwGx`h@DQ2Mc_I>;NQEXML~F$+wz_@9IYgXe#5qMAofz|N3UNjdXDD&T5N8gF zT}_;O#QBprkBGC2IM0aliljSBoQon8+kwRMJ8^y%nwS#-C?OosiFJjRxC~AC3>o{o z3?VYMciG^&G@T3F@ZV()2|@v+ItFvi68wUWSdv0w&4`RbHc}*!5=SUC1-~bg3jHet zfC?rnD=YM?-5|iM@F$QEtiXR6CrD+XKxjqeoe&U|B7-9!j+G3ON+7cl*-#cMgES)y zSc<$9No2PXp(Gm-5%V@+;E>M1O@tH_QOI|SiU9!m%_2=12fRpZ1L-eO=AW0(=nt~{{skW&SwA?loZM01VWhfUx4jbE48)->c zLc_={bOgdkPjZt)XeZ6^eJMo zl|U|`M6gkmEFum^y-GGx8@U+#gEDxw`DmHc8uCgmrcWDbIk|+#nInpgR9FIJ2Mr36 z3PA*xXYwAXDnx7gnN*1$APUvb;OYW)ut2DDek$NC7zx`xA{#Bis7P(BoU~$C`O8U7 zKBb8K_>?pt;#0CA5jZ|ujMSWr5F!K6Jlj;-kP@#%0_y2zK%l}UOqF_^?6eeKM1w^< zya;e}Ifffg4N!{pQ-p2EK%%pQ3_8-}4OSo~eUj>_kH{KxHj<7;b0Ej6H+UmCL6j>S zNMq_y9h6`LYB~}1MgU;}jgy4!v=H5F5DF-f;b0n2vLISk6I}}r+KBbE5$pLztVeNB z@i?qZQ4q-oiqIzp1cm`bwmFcII+mSSSN zF+%)ViQO=*;gL$*=&W>OXC=~Mh9I$40!KH4x<%AokJOH0T)M|w8Hgaj5AVPeFww&D zF}P2MQ}+h54&9&C;0xW5Bjgu>cjdXa363_LbFRnp`o0a^8@Ve{h*dd5Bsuktvr*(= ze>sv%Zitc7)DrrZ0a7@{0!UQiqz_ram$?Xq*G4cBb$a~{QCNNn7>8155Q7FeT7FF7?(PacBoS%f@tvIUl%Dd*4C%iThvBf@Lfqov^} z1!_nmXwdC=In31L{JTc()}eiPZFfsEOEY$FCpA~z0eiY~a$Q2x#M11W9pG+s+~Mz% zl^lWiyHq7j;txXLWgm=1Bj^jBO817IxMPWrri0o9qNv-z+tX9+74M}|HEyhq^Y)DM zOpNpLiudvIR3`d(dc`Lyl?gb|-iUUzjiGz?tdx^s!Y~a4j3tiCWMJz9rWK%AHA$<@ z)HLz%=#{KZ%8ql7&q(t~$k1X($|H-tal_C77Ze=Op%q??C1B!k3i2D*Z{Cm1~kRvQrb}88}&ucsaS^C6CLMW2Zt+x{zzS92YY(v7>~s5-(tS zeEoFH_p1Z54nNE~`efP&n9y%`x)GZEo^jp3yE2W}vND~x;)o^wyQ+mcf;gd37p?~O z6yS&Q_3D`+d=hMh(7eD|ECDFrJ|)WC;*0w4|2d2d2*aIPm+@}VB{_o7$$dxP$S0~XnA@DCNa*Q(F2==6_Y~@aL5<;_%_f*?=CF^P02 zB)+a3fk>sLRSj2pBCbx7^(vo+rx|WtYH$FA^db);d!L33eaTrtUso+u4p&+)YOY$p zzWj^6_-Zj2d}-LypvnU)wRv5DCe%CR$naqsKOBI+vl;L9dT&6lK&YR^*vbihHUq>Kc) z26v=O6PG&{4>bgOk1<)@YP-tgG7@rqT{YV5I9ItbbxW%DAa%2y?7{akg3Ua*?q`^4 zohD_5`LyVyf4(U!_oIj7!`dyjhW&E5OG1>iRbh|OvYGD|);gg(7SMX>q_BfAZh?2x zXRXbS?|HK8;0Y1iul^dBkkPo`lsEehMl?*iac+0ZA&n;gI(OKq=eK=-iEO@n``YI- zWG@Ct22SkalNC_4zt7O>qwj3_>qOs&mEX5MdiZ>#2yeEBDl=u+Lq-r0Nv2#T{>Hq; z-(?cR{>U`6$6qb{eMHM#RCeui@gVeLhVh8? zAa{5Y(Nh`^T<-Ar<|y}ouG65AvOaDSsd3fy+X>w>6XKYt5WLT#5yMqEw;5L@Y1T{4 z?-wgQmg4@4w^?_1BKY= z|HU6emgN!?Q>l#0Xl8CtcSZ0_Zt4b{oBb! z-8D`k;@iwZ{q%W=ZL5b(jQnVk%v<9O2LIE-cY6J&{Vxl1b*oPTsVBopIPJILKEfWm z^m)vaooL;s$1is_6)-3DqR&rg`o}K|eXf)A%%g+8=PMr6?>*?7&+O9cP4(A4A-(?A zHQ%15C-pj1O~OxKBHZGn-h`oH)PC*LGd=R_pXl>Gf`T4-Lu2*3^p1RA4M!AxkKXw= zdi^TB-Y?cq|B`JBhdLpf3#A=#uHheTEf@R6W2gKJ(BA`m^L%Ln>XJYnm!1V9KxplP zKN0@8pPwJ^`(95p&c&!Kf&Lm9BYF6<1}!b|H2nO4i3n&K;iDJOSW`ZYA4#95x7J%f zCm=sM-cS_$BK<)E!jE(d`Q_oSke2DE*At#vivA=|Y1|OBenz2s{agJl&c|YKSI=T< zz=Vq}`}j~6@MV~#G2CT{^JC*l_n&;K*Z-bJhxtGX&AX<5Nm}7TLM&Gh7}JX;qHSk= z-_0dVhm6MWR^WeaL1d`x{1Ur73S!+-vDO&Q$RX!|I)RRih)DA;@qT5sS?~{e$J}8)?4<*MFqeFLrf{I(ZwAA-&%&1B@%$ zS_hAdp`M-kz3}I;VPFe;n;{M!6#tg2)dvqAjP*Jf!`gsKlKGXbqa^Bw?*|2bP~Zmz zeo)~1Q-Ihl^T3_)qkAUQQ2)dEL4h9>_(6d(6!@38k6)?OxIw|-8-;J7Wah_mq}&_mT0)x{v|((C*9BEbk{ffJnL&T%E)ms+PN_TV-xw~N5{N8rg@p>{s{it zDIlO{aw;;6u5?xGxmuiF{sK{mvj_G}m={MK0AULuJAmYe3oG0)eHx@r5L^LDC3lQlGRgE7Ho0k> zh&#jNSDogHMl88GtU?k?wC-LA;Ug}zL^tG$Myhap&y|!xC`fQ4_q3C_`qL23LTcli>T-Hx zn_!O@k|35~>xR4Q?P*Ew`0lJ3{Udk23Drnnqyj%VcfXy~5pAGW6Pnie&bzyz4emzw z@>x2OTkwuPgud=?@OQo?SV>6s7k8#OT32*NNm2xp# zRCJt?_z3g@>E#Sc{Y2WQBsE^{NL}NR-VNU~7Z}EM5bd#&5mGWA{&mWb@48zWmE93# zlRhsgvl042fj>`13AZ7h#7AZizPF5P%s8Nrwy|#)NJslpjavDy$qed{Ihg)M{0jsIvMqRDP(-JbAYtGFX~G`%?w=9 zwzgbKGCm0wJZ~W(^1cY>e>58THnsql7I54KUzEXk&>B(iYhz?3uyse8V9X+XV;tWY zEt|h=5Ayw|z#AnR;0vXs|I~~Z>heMxRQPUbV}#>qOdR48;rF8PK5$82C*qr?o)nUZ zkP?(3|I`fbv*72AGx7q^74KLAEDgC?Zt!h9$awnk`|cEY#xNErG{@(=m;9r^{|6|L zR2@hPg^Z%0dM6WEonaxv-dGAug+&F`LjejF3Is}Pg{6tC=dcigS|k<KJ@GxO85z{AlRW%j4s%j#XUs_I^-5hs}FV z#n?9zo-UH@JKAaFm`l@&3M`)~3QW=!1>%lHB3$Vf+Is;*`!N=d%7)v{#1fhc?Mbm5 zvH}aBG+1e_keP@&h)wK;9io)>3R@D8+MC7TlUO){j}MnAZ4_1nXlifTUY&q9Kqe@i z6^;aAX8-l8kxDm3O%gA%cQM?)!_~i<@$UuL&rvjfwcCKKF+kKu&B|d@d z(@@z3K~Dq~Tu>4JZ^6$}Vb0)Y+l9X==tfB8&`ULC~s}2M-Mz&Nfo(G(rO51A8l#c>t4Z%IPv3GzkfQ}qvHG} zZ^PU>qN(#oSWVm)c-^+}(YiR{k{RaCX-N-0ZtxrKdVgW{HonWx z->v^SKX&RE@u{X}XCLf$S?^IaYMRu1db^xU-b?q-uQ=;U#+=c;mFr%dn`Ab}i`n$& z{HKwQd%9*FvwzcG(sNuykLx3E?8p!6V&N?|la;gUez@RrrSYX^>8>eBLqcq0 zdpyq1?SFG{&|A%Ghd;+``q_Wa38#4X_yNClI@`oHyTu=2Ht#-%*HvBGzUj@Uw{IPn zWa=C(J_U7YE1Q3%oaNotLsu;p+&%6Qx~~0N8%@#kjOle|F5l@d#JmtJED#JvkMvi# zpzEA!h$||}8zxV(Tw;^iqatgdRHACJWpGj4gSCk`3CH9sL8a43r z^r}l9_&hYls2agYS1u$y;dZ3tw}NFA8aH;`koNPDY~fTzG^x@>9H9tPgch|b3LX|n zZk*!6X}^B`+|vwixh3~bGgI)LRE!m_PWYTSwD?88;1yjqFJOkOYC3ED)h^W@oypvMSvNP!aeLqdyGJXUD?^*M zdOs+q`pJg*@gaNakJvfGLANG(>I3I`&$9b@NJs5!y;2k_8mvC&T+!C*Rrg5~_6IzS zeR0LnZnwjdflqJW7`>vl-`tR&Z};!$dMwf=Y1V;bPr7L4O?tcPxM#n%9_!{_9npK= z(X9o$qmK;iH2v;c)3cwdoqpJ^x9Rv|=bHmh?91G7s6pVpLmLH)K3835m6>urXTq-| z2R%M9xlTV{f%oD5V>exUe=Wbh`?(EmMlz9O2DedtFdN~Ubgytga+@1zW`R~=o^ET$ zo_)|N=JeaT`MJm4X4jVFy0~Si6)(qoFZcR&MelLaj3Hjf248%Ac-BwTJQK4Nebzlc zBHA->?H}Q_54nnaUbySyxVo>&W|=gj*M)#P<&XMreKzN1>rd&YR!hd8JhjQC)$CLk zO%@tLN_ zURzB4+)=S*vv=jeVWVGE3c1?9Q=Ijv=!EXU=_{vA?R-Z#_O|TUfkuTX9Tc7WFOeOX zS=1;cY(bTQuPRTr&R)Nv)qAm`z_h=jKoZAF95a>Ggfmoli;M@0IRs7qh<^(whnyf& zQeU5%+n#gWh&;z(#FBy;YUXYaFY9Nkx3OkY-D6VYJHi;bPC76w$QlXAaH}FG(+t zroC*^ZGQPzEw^0vPFS9v&@g97QM`5i-&#z5d+VyH<+*OTi$iPQwcJr;-*3kh-=`mL z)$L;A64B9ZLI14lc1<>g_PF@?ap1%umjS5&Gt^ysTCqG4m- z#6COKe&?7e!?*3Ks;v=Q(QV_gT5jGoX85#jbaLRDNh=+z6)#PEq;lzf!!2}f?1-B+ zy8l)+tawOg6pt=qNix9%--W7~3JLF|=X4(qm8Iol!ZuFrhy z`_)3XRoomjF!;~id$amq&$?Uv+Rm0U_dng^7;|OF*hdkeisE0!U3=8EaMi~@Rwv%v zJw1QGy@8{eXF+ub*Q z3L3dj7QX-N;y@4W)HmsGbL5@s*>~?bbyoAXUPCXh9#P@yyf&|*q&| zG3UkMV~E513L6s{r&Kx!#L)W~Bl-7LVN}VGp`1``;Y;R2@j>P3Y9kvcy0Bsnl1S0ED55BASSTljAg#U> zb5zFR%Npb(cT^H#-eT5bvKoY4timhS(~}Cj9=vdauxqb~RJ7s45Ox87C+s}pc}e#- zxIIDfh#e~Kc1qJc>6B1QfXg&$v?P*C3M@2VrhJ0T-p-6AlOY=Jc=j(tgmA3EClJUmdL}Y*}Z|D4VT|mP#yUKTdj|c+pG1O$dhNR?L0Cm zJ)?M&c5e%b$r3>wx8?5FAyAvQC0E~l8<``64~>=)e6x#58`3l#8MX-&ytkDVSDcvryT z*?qg3=|WOI%3pnw(>-)|2iU6bR7Rm++&!TcVyDv?c^DFBrerrw}Pdi9rae+W*v%T0; zx$&oap%;hFTDVcWpi%9bPwI?1J5=DHyS=h`PK)t*>yDmoaaFf3*|z!y`I*xr+iXj4 z&sw>--ri~1HHXzx1lVm|UOd7*c;)D>q5BKGUC#$*%Ll$ZoHFm$@XZg$Pqv-d@7i_i zfmf&eH8G~K&#>W^M~W>{Uc3qTU0-;i@agSon>Ke)ZnLO7`SP1%>Hd7KP0;ifDSyo#WncfVyQ@RfcW-NWA}8)>VR6r_KU_Qqo}H)N(~3(<{j(*s<*7y%-eTs*~LG3eJ=cI z;)q#;tp-lHS!w&{?sgI3ohA>zGjVj^xxY^K-}16rantn5w`VQfJJRf3YSt^8qGsa; z94dTtplJNd(`QHhsoyx@cHIUSwB=hDMXXu6aZ$Uf6Yh&FgR~}#^5=DZmbo!=%(3jI zGnYPIT643*M~_=v+!TaRCG{qDM+L@U1qtFJ{m;yly^ldYURBy~C zuIQni%|wE)*ka}_?e=M=w$D?Oj5f~$tJm&2!Bx_8sBH0CdDX7&d(Kr~Cp1y@cHZ`= zLPdLG%z!ncG2UU+uwi3&WdpA+3b9TocvX~tYEk}iMgEb0i&|VmQH`j@=Jt*yYOz24 zdXGw8vba^&R8(h^IpI@=_%@9^Ix0#Y9Mz_Yf3Rm@{a`Q8fci@RmVrvHIFWI2(fAN~ zeY~1GEmO|DVXLUX3iJ~{R}_dYl~|wzAqz$XciiTo+esD%f)L{gMHU7F|1AXIS|+l0 zDj|Ro#+?00LG4diRVzJ}-kuE`HsbA1N-p^SRsUdYf4Q&_kcEW+3k&SbzR~Bbau_=5 z^yw9S`p$eYIm|}fb;W`nd$uk3IHO9^(%w%h23L&;nmE?fvueB98RysDum3Q)(cPwd z_owwAJfr8`6Yt-5&y34lod5J;`7Wm~g>C3+9z64SpUQJKzkigJTGb*aKd`dhJBzbd zQtvHyUmdO5HhtBmlPAlcn-DIu_#9j%`PIs?y_+;Hat$~%HoM8vpS%BR5jA-43A@5- z1q;mzpB63}T(~`J@c_xXz6YNUtC{0cQ0Hv*6NPvGJWwp!t-LsKSf_%eJI)R2^K{(6 zmGibQQ}&4dbRgCIaN5`_<-7d4wO-1IHIA;+u3ErJV3G zaKONpRrY%&b@?f+gQ6p=4YyUm>{A4@kHIGM&uPOLt(aXHsKo4}pk^N>)r7n7nj|z~ zVnc4thoK2K|CSgdcBK+c_#0)HwfESQ7Ss@1D9rdOMA9_qtl_Ze?!W;a*_xeIsl7ZA~vwCg_={kCE9On=X@0sN5^3!d;(X0ihdvj19gc ze$&?G;k7#BI}cg1-QwUA^P&33Z5F(Do)*-ulB(R@?uD*rHbnlE{W9c2)!}}ZULE?Q z^(nZHVmq643o4ktTI+P_g8jUZ7}FuGkJ>+Ylr!*cK$UxT&2PM3{W1Eg-Z^u~ z?%w`2V0P~V#@CrQg2?jgP$P)246*)uj3AWpDHX7Kfb)4ZYS@r4zJ_eD0SW$x+44W) zR7;&KxAn6f)kOa2qy6;P@AHzUq-djU&Mh`$3V!#q7-PAm>Zr5iH zQMJTM7yl}ir#hXG*^e8jQgmLU2(o_ObHvc-K#L0zo4uv$0{)o1{JcgHQ?p=Uu;r-- zuUq9G-&wtN+ zxx1EA^Z z+pfbw-FuXuBapOpjo>-e9dN3fe`^BxDr@>KCV+E)bv!!$-hys%NvD0MOz3*y#H@<@ z{%@I{VTsN$y+-vty}lRI`$pMV`WF#Chj+B<#aKk;Pg3NMFSYv5SNQV$537IWH(6|C zSSY*n4~&fRz<0P*c){L3vGyn5l_**Jlap2CEXqGz`ANaOj;$yx;^_75BI+I`tGxw?FWCJSL4>ZZI4r;W2AN46$IIR z_%&+Gu~$9qM)f_`qJ{tL-@8@NcYD{PLcyp zVtZzlw{?Zr9=ZAIOG`JT{CV)iUq|{g8DWZ`>aNXBJ{B#WHokN1Z5uy{Z)6sFwyyQ5 z!zz!@8*h*E+8P%->q<pdZ7N!pnkbKW_9^u9Rd)q%xk(}peDKCkjhalnwx8+5Z>z2zHf+)jA(=GD%@ z@ttc}_jmV+>ARrMGLuo(Bg=15726)2b-^2?j6S%Xz68U2>#A1#(G_u2aBz|o5Z>$8qK zz1sYfz*+a9%E&s=K5M&PK4jTpX8+-urqVkz>OUBJ-OJss_Um09(Y30+IkddZWw*_1 zmR^~*wm4wH;ggm8Bd!m7S7+8j+eF20TeY5H*Ww4fo;k{+%E79uI&WC{dr-6Kk$o=A zKeNBXt>mjQyH8(L?D}->z` z|M0Oq(zWxl2h}RLezNJ&IBA=rVP0@0Q~lh+x}D6eH9H@_n3}ugQi^BdfTo>#e(ddh z>q46MjTZ6iTm048QduCf#M)6tNA%?XY>!e~*4LJ<#HEXz_hg)i(? z593apKNMSM?EOibrHaHF^L;{VANAOi8Tp4pV#2yZ0}>Va?~Mu&dMNWBDDv+r^8Zxi zZx_p#PN@7~Oz!-hHC^tU{k_ezck#n^#O#dP-JyTmj=J4fk}fLpXZ#mTg|8D1#=3js zs-I?lnSDTX=2_U$_Cto73i7wEJCzijnff90+`!I}#sd;|0T^SL!#T}2T<|@c-~Pku ztZNn$`DZvz&1*TL^7A8pMSX;?&4&JN(r-?>z<0sRW~bjA zIV2yNGcazxQu1iUfzQDHd*uN`MSe{+D`P|^~+Pou2-`T79II(UL{B0$Y1vL8SrU) z^L)>F&c5DrCyQ5IEF3}zC%&5o)>B_sU*!GLD zW}@a7;$djKQrk=kGx6PzuMla>>oVP>Fo@8{)P#Wk{EIZ?Yt5PDmHrR7N+cCNX|TJL znEgWd<3=DqEyU(=1ZW}&wEY1g%1QipKc)~Kn_my)1va^;C%Cx>a=Vo;$}7@s|CmCo zDT+iREl_gW_Jbj#kK$|l%tdt-MS>k+c%-yan%UNqEX2uNAu8j7VyY>Ad?;yPQ1TXQI*yhPp<9^>14Q=DM>l7>;C4$kNY08tyLN z7zFZ-rI1;Aep+k6G(F$j>}WK_TTPCY1?zMe)x^p)L5$EF!Q|((f)>My`2$0dfDyeJ+h@V?0C5f5OH=lmVNaxs zm25SDR33;ObWyCU^kJu>Q8;zSsSa|oPDMX;7Tl`)#-XSjVe}%e^q_Agf4&K%uzStZ zw{noNFu_cTehT5fiB#4b9X6>rMR!QwD}BW>Q(M_9%C4~B7mi6|blo=sKz5^VG#nXJ zs(e0}%c|FH0j5dZ!4TI2YMPp5x&*RhTs~;Mi5c3#EF^DKxB!w@_o2!R1C5C775w$z ziktIgx9TgTJT@O1odnjY1j=+cR&q)tv_wHpn@$L7OXbJ|3gs|)@MZ{yZxUjhl;)Hs z8)QDR3!GVs%|baiMJH?^v+2^8jEd{SwX)c)ySVVJM0r(846B@!>}vE)MqIuk5KCow zar&l^R+?}%%6dnf6!&JhF2wB&V|+zPbL+4r!Js4?(D`ycZT3_B_FCvcG}`` zie|)vf$ng5`OcUUvyuvjWoRB5(}bMHG_AJYliir)$hBh4spWZy0BM4s^%+0 zp|31X))mX8m#T_QHorp}i}Gq^>c40+4k|sa4?{N`GLWhj2RGS**?Kld3tt#*R2!1z zlz?*L!Blm)Mq9Pytn#6$dU=#poy_17R`xm`aT9gjn2^L{uxDWObx%rSqwcKmG+02R zr99-JoUoihz0g?g)ejCwYtRkl*BIn?I{YS5+GZfZ7+QQ#ct@Ui0n)EgJ!QE)h7W_0 z_qq%*l0136TvP4~LnZII3pl>j=ww(Aq-S}JRB5210;*JD_>Mt<`H5~{Dy&cPI?>A- z9PWm!0=M}KL~Q;IgeSHcIs!=L%F)e<@Hb%V3wVm#YD@Cu@0s-mRBjI%sM!zB?oxxC zeudjK;hL$*miZegfVl=aHTys~&SNfSB_-WV1!3jnZT7g!P8l5Wlr?UoZg9*r*Q`WJ zXxgqC8H>dR8JIc5K>pzj%!PsSeFtN)Y!p$0!~6!O8b%Zh@Hqt=x6MRRPD;iH4J1~ zk63!4pbmdw&1)3E5}MA`TyqZ~eRS)Z*AltJ_53+aYhFw881?Hz5CIewI4dp9Ig_4zvSfvq<-AF=u z0*rWIB;8HKSW{4>o3yoP$~x#MsO)ZDgo!chfS7mK;4}*+#=Mi@ zm<>+1U}8*K3z=aM%Q#lU(l{|@H^HRl7ZV(_!Pyo}j7hV-83VD5=U6Z?CQa1lQVTH5MusNFq>Z0R4cv-*j0F>8_7fbl!DB6$7?Y+qlX`*`dYlClWA+mq zv%%vnm>82LJUI9Dkh#9lNJ_{zs z6zEE3AI(cD?xQW37_*?;9-SfTwEOpGbePt88`Mhh;sU}DUEAm$Dm zj1{hIEyS2R369y|QVS-=6zIlgA9|x@yv%}$G5dj-J8UpkThcf&=1ziRHh7u^6JrW= zV>2JbGCtjci7`!r=h$E@mZWiF%((Lj@e+$5E3TF z6c|FxJ3y?Y&9Y!(%sUB=*7;`_tF&kWA!NiyX!n)fVvzy=@ zHn_opi7|H)yw?UVw_sw-R|t;T;1w23j48$dUJ7ExeS!rOW7ZLTkqvINU}DUR369y| zl@?5lDKK4`F%Zl6DhnpY6qv5e7>EU*Xu-soVm#nEAQrsZf{8Kb65M2izh}Y3m}>}* z+2E5bm>5$`0Ne*+8E>*+V$6Pmci7-H7EFw}li-*Q4p=ZTrodEb#y~9N%@$0IDKJ%< zyFo0t#e#`3_Yi!*2De%;G3KWP$82!Wf{8H&CR#HFVi{j+!NiyX6Rp_?V!>?|OpMu2 zaLfj`TQD)Ez&vcmK&;Rq3ns=Cn1{_6hy|~+U}8*xdDv_MvEcOgRit;V$A&n$87Lb7EFvOZUa08 z#EScB3ns?&6CAd|*H|zyW;emRZSapQm>6>p!7&?rtpyWfik||$TGwO)i3oF~vU!{^vkw^f?I=V~T$PUJ7Dm?8g>Nj9Eu;?3)32mjx4Jii3btL9Ec% zTQD(Z8o~KC7@bwdO^j(0JjDjzXu-soeu9_UVDv^Ani#W=;IIuwcatzNW;ekx8;m9| zVPZ@X1AG9)N;#UHgo!afC76ygC0xm8BzzbieV@(>RyigoMoy%2yGl9~!~q|w&sjj{ z?k-yE@%gL6Ym911H1hMClJu>FyDvH#hlUf5%l1Imyrx01lyMk85%Vo2Q32RY=xxO%43?Mxr>V|4qRP$>XUdrRTyBWzUPpzAT1oAoO_fSX5@x zdWMjKxDL(BWt555Y(8g|&l^S~UFqa^REyUEFj1N{E^`m~r1a;*p9X(f-ooL!!}ukh zeAoK^g1k)D@z9=*{GBBq3@=!QNAlAX@+;u1Y<#sK->-v`vcysrI;C=zLm%1d`vey7 zKt4aUNwNhax7|*alBY+%pgM#5rF4C!2KjB>_czE?lYO?D4Eq6|iazJmPa*325T5j{ z%>JFiznv=bXZbz=3ud;(OthGzEM~056f%P=29D?i*!FR1);Z{LiZMygE|Bp!d>=uk zr|`!ph12&j#g~$ggMBJDq>?|*to@~l5sb(2))!8J-N}g#rz^$j8%>#W)-S#u2 zpLL_8ZX$Gd4AISk?#>~)+0flJSjT3*ru6W$o*+^}b)Dta`6-QiBpxwL{=#L9Y;3^S zS?qFU;rWgue`39Z9_%^t$63tgdRgaCa%CNW(RzJkOPX-xtW4AN$san<2&h$1u$lGQ z=q8;1RWkb``+@{KV3?5QLwhxLahY-r_fvI8cA#8*^U#v}DfbcRlt>wmJQNox&ygqM zB4rmX<{s(nCI=11LFES5DP7rcGX1(ZUZq9%;fWQup_gFF8VzI{x*JCHQ;4cI#4NQT zsm))_4MPcQhO`ondQdB&-~+AXWCu5c-wi~|QQ^#AwVEWW+T~tu$-*zw3;w>!Qb|1Ti+wNy~+_neU9kuO2b~Cr3yx~u^ z%mgY$W1vC89<}TF=9G-41ov0(@;)^!B!TT!8M63rYE_ubq&c-+XO9mFQq)&$azjyn~fp*Y;Cc z4_22EH7m)N5o-(H#X2 z!-qQZCh{z}|6r;~4^pBFpvpx3q&t0RB}Rts$TEDjP}1XSLl39I0Q=;p+Q}I@Dzyx7 z0?Tw~#K?5%?sQj%k>Sn`XTkf#boZphba#e}AOBBt`SPL6(9#XxLW(~_pTHM_6rS#0 zxzab1qSk!J0iX1v4E){7rS@PmZI0J@c{TQMZ`KI~DIVj&$3ZKPG0RyQF z>B~h(o!czu%_8!67BVblVR#uTTqQkFtCMM>qn{@;ub)A2xLDB(iB z92BnzE5`6*(5W|sATyH=Z_Iguw-x4aud_U?iDSrWIa#p4* zE7QozbeDgHB1xs9J_df~XF5@>7yyhJHzW0^oF67GhY67&5&XUZ<}P97j3>Oq!Oe1I5tl zP1BL8^aS6sxX*fUlU=Y~*alw-C@bkNRml6pr|oxJMMAv|Os_RKjO`{Y@<9G6tnF ztKeGtz?3vJ2Bq>f zLgB?dFzQ{2?yM;u+(02uiSXlQG}D#ga?(9LuUi=?9qv*bVz9WZ0$luY^Kg->yZNS1 zh9kq7;_{7!=_Hpsp^>te?rd!ESmVJdNHa#T^r1tRm+#adiIfs!;BF4?u}pv_Nq2h4 zwl#D)F?7*%MR`<1m&2WfrbqoXRZrkVrRlK8CG+z^H+E>PJp$>-K{^~h7dn5Udp}A< z<=$G96mNj;#sbwemPxpJBfG=Of^=sh6*~9J7#o zT*AgAV9=GkOljWmG``9)$oqIDf8zV4Xmj!W;hLB#N#rjXJMOE)N26TgS^F5*$+?7l zf1(147uN@}xc=?(BL8utC@(7K|AoAeng1j&MTgJJpDFdT^AASn0iU3s`Vx0++PhI5 z(&xMOZjZyaehN{!cVjkRZt107?cNFoZP6&ecW%+xgKdjO`-SU}7F7O!v_Hd0L+y~B z42o)eC*g}}3j4FMMQ+-pl@yk5dm5?n7S7zZhuzX`KWDda+b`H1w+*{r;G?!Z$!_Mh zr`T1SwdvG#25r{KCwrmA|9;79*xR-uo8PTD*VAp?9r$u1}n#2+fUVr zBZ_Cq!I{JyDnPh%r7O=SQu33y|DT5ZVNAlF`dGlUw?X^2##7uChw{{CU`RiOs5+lu z_U|Z&$TSQYbh4OZxcL@4hB5*@d`7{CiU!|+FWHxsT$n9EJ~T~O^D6sE$Zkwd$WJSI zZ{XOA(>tiQkjd}tE$l({7P+^MAYV9(__z8BtvemGX2Cx8wG0hQvroaNI2Vp+bQQy; zRjD(7LcJ3QRJzlxT#s~9ob0i|$ZMV8oxD4{;N-(?=P6J9Tp>sowW~(BCZ%t3x=UWk zFZE#3Ite|zfKDiA4=LA`YK62@w`3FmL^sSV9&PZt@-Zm5sDQ$8nc4Up$?IYOHy6|0t zuYqq3zT}U-$Twa46SR)IA73}VUVJUwsd&W2m=N_iwxEw8?n-`RgduuUh?=QHoyj+h z$P|Cas=^Q_q`W-L5Emv9b*B>j8EeKdeKMIe?=ZcLHO0(7m$EOz5W9z+or_Q@L|;!T zoM4EDlgNHqDxq^sqMH$yA=V}nKbI}Mn7A*)E3R-7y@=_-{DeG1?1Rk|u`DSMG$%O^ z{x8kB-i?$yZ}S-9I;O88tRWU~jIQFmG@ z{4Zer8)HZ#n7ah`r@#+{&g-o2oI%pIZE_uuXw zp{I-f%txT9_m059`b^Mt@w3F;&UCRPgQzBm{zNA_p7}eNFK2qUgY?T;e+g^WF@F}* z-)n>h+0QksxrON*_W1(S*BO0^_2XF6&Ga_bzr*_dtZ}lnubDTQ_p+ZV=5v^DVtz97 zJ*oOtYtrCtoe%RR@Pj{G?imN zpDmossKKF1SYOQgI@Zr;&1$BbnWiw>%=7}*JjVRx?0*+)9$@+wYiii?FIjVd=_l+z zgHuw(^mwLcvVJ0m>SWD7n9gL)bhdLEYie0@BlC+`pT(BlY+*a2Gg$Km`#FI%-)H(V z)7czq3Hxbb+Q&4;=s6rJmo+D`CYk+T%9`OE%MGl5oHajZ|G#DaJ?0D8&znp~aoE2z z`WHqwvHlCDM>9Ht_1jqEV9S2iPi6gInO@E4pBZgr%|pz8!k-TG{b!?hj}a^KsCTc(d%{^NRt372Zo>Uq!?oHea&Ce5m1q&HjPdF(?imP?_Z=nCL?G%g6 zNY6m*Z#he~lid5EX-gvecaJ5Sk}yIy#4)4ZgZ?$=2))jv+2X966*v^rMB^Z7%^<0r zrAx#cV?RXLbxImD?n9?8I+U~E^5toleoMq%R=3M1-Xuh}CHyI}PzemM#~U zC;rvx7FR0i;hZm>9&wYB9!&eI(<^>Xl6JWmmHmw~QS4XPUSKIAZ;Zs2k273&eNRbi zA*G3_N_uOo;Yt_tm2`V*qANo*DCsEp94^)>DG5@R*sP?d5H4Gssia4;3|Ef0jwCL# z4A%&8UtDtGTyMXWJiF3%;RNnOCEcFpg7le^UK_s)JK%#-68pxxAdRLamN-k?;~nM7 z6-UP<6VfUvdEUsF=*koAEIlpi(_X`V;#!4$kvqwiFK$%f4rG==`a@hg)`jabaj6DU z);Jm8fy^bYF=CRE&K=(98YjAy^x?P`*97rVTw3SyiSF?Tr=2Cv@^-rl#JzDT4d+tM z31oA-SUo-syZUyP$Y-x>vUnvfZFNl%b0^B!&+?w;Di$}81e?!gp64nN??dvyN*`h< z6<;Z-4W(2j+K-Yx^YE}?s<@OS@dL3U^HSGT@f(&d7kRF$Ak96Rd|o2<55L(}F4mAF zE)k1T?|`&ZNt;st>YOQ>vA!ptw~l+zHA{4nB!1xeRpw)^V@02oa#oLc3euGLbFXZ5f*T=T`HO4?(RbdQpDx=4CWNj(Nh zpDF1tqe)7eL@B%6^N&1|rYI>gilik<+V3H$Q%PsDbiR^e9N%q9dNh-KKCh(X$CLCY zC7r_IJlM}rd_k6uQqrH<$~+}~;HGdvC7m{$q%)MHb8fF!Qa4-qg_2%pEAJ?24dcKY~ej8omJr1KIe-04a>noDq(lCEc)KUdQ1RPwoBNe8$^(oJE??Pr{$JUme& z>2A)$u}XTFV_2=EgY0vwlHOqHY9(FH_3)6AUg0|Wjgpoz_N9_i8Oth_@dY@BsYi_^SRAWR?_}_vbjh} z6&&AsB?*?!Rnl%Qvs;vO6JyURDTVvW2TB^oHjSw=z9%^?6O?qtNQ$poN&7i1ElN6< z+tO)DYUlRyV<%8KW+`bNOD8JnelE|GmGmWJ zS1IXUmL6165!?K=l16ZD|E{E`xwQ_*;To0h1g_gMCB4pAy^>aQ9YvIMG3W0GN*c#? zbf=Pfc(mE8r0cnqK2g#&Y$cfCrbJe z_r_V2n@_H+JrE9rIi z`L>e&z&5{8QWHy~kCCxo%syu-X*T!wRZ1%3cD6-HCvp8JnuJU z#S-pl7>h(9OP7dq%@kvan5(4o%uHjcSgxea`8h_N=pYFtf1NqTs25QwVeK{%($=^% z*=P`_vvdaUq?U{GSfaJ!RAae#f~8Bu$$2x472;oUtim`!Bvc5b>}l~Yq_a_sR}!Uj zr6?syJndPQvrC*P%B3V;$y#8XD4t~L2V&-gWk!=IuOy#8;FW5NxQ-=C^=hL<+^D3q zG?IQQCFCIh>E5{1ZnTO=S(14OiYHl;c?gOzRTKkB6~qNJdIMwS!S~XdbsqPZ3O3KPvW<>0t+Q`Ii<5bZxkEFB2$i!Y_o9JihX<(-s{o>QObhdGZXrC{`Wx9T7d|$j+OVTCc zpBXn97l^l5qHvEImxzlO61E*SUoox}IcQuY8HsNhSBtqUJ*~x@?;F>Mr&+p0{4wJb z<458ZB|Vw<592z4W{48JL`=72Dx|u&G|T;hXk z*QAn0Qak#^Sb7RIhyCBoer`_Hq4{F0j%N>p^<=^FWAVDU(o4T3M;D(4qcRrh|D9|? zKf#HF<>w&t3zA5))yDsUQ$kc1W6}w28Aj>J9cKB|ISmf+7W<^Ix|m@S`k9BQ6USmtAy=1C#D6XlX zng}OaR2Tn%e~0)Rr~HIG(x1zI?DT^y(vRnSWpN4EEz8=uI*ZbCKKp!gB>8tSmAtep zHHTUwjV=x#7Y^}dnvQ2m1zfh@rnlR_iBtREu{Bzll=P1^IEXA1C{9!4Ewjm45cK z1!|=Z@d;bVwOJU5SJtT}MsaJGmL+dlpjh5Nq()j0*I+%J^XZ%~hj7|jh-Jr~5_)bd z)A@I9x3cbJdwYXh;OqHT`_x1&w<0?#Td&m1+W%i`QQua-cKv_9rS0H;N3FskHepO~ zs=nWrlq0;j1$!;N2ELc!dljC9((IcK>cZ1@;&HA&!YhhF)5HwW;i7{1TBgS{UCA`S zG{kfR(=DK*#5tfQW-PLH71O&w)5Jrd6UEP&{}b!~0Xj*H(N>Ho5l3ruYFez(Jdh-A z8e0v1gGrj3Fy0Rn3q~}E8QKDj?-lT`i666taP>}Kp!#B!4u4F z=H;Mt!Wq(@_1*;jjf@9CZ}&bUZsF5u^795X=MMjv^+FpjE*S0w-HZ}(mV`bNeM?J8}4=1;Ydc3|8c z+APHNJoGC@{7JioQ~qP*B2C<)MUp<%?qYrxhk8hxlI77K(teUyD>i87j32F28s_NZ zIV|zD`Xr8Jl2|ig2B)w=*I=hbU&JY)G+dyUahex_7l>EJPB|^(P|s<9cV4MKr`qyc-rzkP!FCYYoH(MhVv+Kx;V#Ogdc?>nkg;>9VM;+9VhMw#S>c4Qt>v^e=<$; z6yb^eM9?Zx0eT$!sTaNAPZZ~Xwur|;*Rwt<-t<(7^I*RUZTuW}3-c|^_hXg3&vQC! zPG`+d*6d-rpXob{zKiE0=eXY$*N6oP?~3cij}vJ9yU(L(WVuDl0DVHIT)eB3#^E5^ z?cSlT4o*evkOnqSexMSDYgON(j4bUbU+kJ8ucKhyW< zFX?~K|Ezzbr#MD9OvgCK(T?ek*$y}6Vh_gL1X#xX4BX7Q1-EW*#anN;;YP&m7;S!r zR&WQ}%$<0P<}QpwcVopiGW`U%5MPWZ`rC{XLI05(0R2s72=x4Mq?dlKPuu{0VFu9! z!-zg<61~AibhAP9z-Xf1bCpI@+@D;eFIMw;KS|EXT$3t2C6h`*byU6erlWKPM=?58r7G@oNPRZ1(dkhrMPb`G1eYUdVax;Qa1lKW8&KiNl6jms{=TbVF^YRh%YdFo9vi+kt&6~NFZ|2x{FnT?w_7ZMaQP%&REjZZ1 zPOgPVnQmozGTUj8>E!g}v4zA5oG-TjCTsr4ep;Ab%9={9uW~MjW=?-H*XH{i`z((4 zR7M}>5=i4TjAlBE2BQ$&UC#!c53BThrK3P=anD!BDPBJ4aj>e3MVPU4u~iC7_8K8}r+whyV zNSBV^lAZ&4B2uJ_)tK!te(wU9=(|9k;)h zgRX^bU9`cfF4|#F7a>^E#X8u~#d?IsJqU!;@vG%@SFQ_wbrFUy+(-tliw!_@5rIw@ zQAj#wgD7Y({^_{?x(RfX*aEs)Yz5td(<~kDO!a|o#R-!xPQgsCLwhFZHgPs+A6A39 z=*Rr3!^Z`nr-_R|PsjRD7iVDh)#3Xx(6hu9pl4&nsEhAo4%QL!TF`UF4$$+k-qXeT zn3Z){xe@e2aWm*em|JvlF=iGW7HD**=RkLg7eIe3UIN{PyLLL#@ha#I;+LQ| ziq}DJ62At$8Rr|i_=)%(=q=*+ptp*Bptp&4Kz}OU1-%_Jtd2SG1JFCfpFr;ve*wKq zd<=TGH~@N&_zd)3@j2*yxOJ%G#Oh1X2k@&SI{voDzd#=n-+(@hAKcK9A5GKo=Oi4U zj|ms(SVhk69uZLI5j~PN{VK2v17sluE~6Cap-PL^`F?@lTZjq*Eas|1_zTj(@rgE}atTR7l5P zE-~qpNT)(N{uvUJPKk6Xq%%)Ce&mz#C!G@MR7l5PDKY7kNT)(N^Q7ail3t`!BAp89 z_^Tx*of7HzYot;-CDJLA&OGV(=SeTpDUr@R<9nIWA@c1o(*nODP3DQbsmtc;zCY3vkFXUAVImC`9Gp30_6q%)nJ;u-ABtCUie zlxo;1DVs(Cil?*VFK4G>hIA^}DXEeU>X=ep%1%WkJM(I!5_L>iF+0Vj?37HE(lm)p zmy&cU%B6CKR7$5rIu+9Kqlv&~g>?Lt(x-I%RZ@~piFEwcQYoDh>G*3{S)!cc8DtZ0 zLa^yFcKlP>DXx+Z+8ex-NT*aeXnjx?mr87^l%}y$Asv4?OMWy$_^h7JPI0+(&?Gt9 zDsueO*(s4uaV1L?(kZTDskoY*GU=3{og!RC89T*QQYx<@W$_GlDwI>fQb{#CrN#5e zOUZQUpn*b~N6xI8t`_|9r`c^yO_Hk$M}nsmmo@oCZB18iXD||I?g*|a78Q|5U`t&% z+yQ=BFwnZRt7A)jcc2TR<*_Fmfwa7~tEaR?G&R-t1bRX(9Im!2)YGt~J6In&Ie2V& z@r)8ND>Qp*Qxn|z!Jdkaj_{^nYZcN_7Y=pxL}#})H5E@4ZNZ+V%34T z+EdjYhy+@Cf{})>OzrZXwdJBZNLi?F33LP^D*_$8!FiEzCnK{Khg*9)g0sb}x=3ha zpeI<{+1(NB40ch{!d=zDoJ?)`z z_fYL3nCu!Hd_kbAt+!)gpffyJzj#Zat1}Q8tgKqMetB1DZ7A4U+Zv?5)z#e|Wgk(b zR3>L}DB2S2=m>NL!@bePfu8nYClzs^qkcpX<%9B(bnkT6rk|(A7FA^+$eM^ERcxZy9erSTL4o&c3RMm(2su7jt zrRZO!WmQwBR?n!Jim_m7@wDO^e@%5+#k`W~HPh!6SC!4Em?tV0En0d)O?6Y%f{JDJ zO_j9`i!17y7S$}7->^W`Z;AE}edd!Q}atpW#nBY|jpPeg?e zv^591Hc4S=B(x_JrJ_KUz3m|s)}mlnTTlD!^-WEcftK}1#k^3k19~~2T4U}Zc(f_d*&U2TQ6pkL z#)*oq){5?KjEw>#NH9_v?gdNZwqhy9hCpahP}F0<42t=|p1KfPJ7$k%!L>ouqf`zE zy%@Xe!@Uvcqta1*h#RTOsW<@xupH~ZV;Ydf+#ZaC*9U_F!(DTzbr}XSFqo(O(YCONrt3R@wkTN`;E@HiwF1AvvphER{)e=Q0ifP8ay7YAC} zQKkcdmNrMj9l;)(23->6gh4FOG2pGXYk-%D3Pu)$kZqfu2Ns^V<0WAwX&#DW1v(bZ z>W6@}U28E{^Wr4Xafq+_U`sFRWlJ4ZWAyMAs)JFCF&IMa=BtBi1HBzRi&1UC$f2<+ zxS}Hzhz_8#>NqXSf*pa)%-L`&Lv;}>vRZlu0$Kn@a!e;}?KY@tQ9YSOL|ry*T>yWX zloyHvMrxzhDsw zE9wHF2(1_^qL@QFY|BXM;Ixcf7VI9pn6mpp|F)K$Vk0d+F&x)+@io--oZ8@@(ow;K37H`UhdAl)?gH+ z!>vsDYvv+S0@nS#fsWcP6rIx0A8S=?2TyXGisJ%X0_}@J%&!PY7mF&%%SPnI?Vqg)IdblUFB+wSIY^+0j?NQ-qSw<@?%&j66#ZD#AffwQ- zP+2YxVmJvc4r~c3*}fib2)49ib_#R|^viH$3zh^?ECV^p zg6J$IwSG)ISTA8Pm1Y_OouLka`dy9*iw$Gi6HNgS`&`S-6BW)2!lG877^J?-%jQn9 zLOa5S@Umb}Z=|asOnXC)0*jGOX3*hK@RDEJW^s$rU$)>Y^%#*mRa(Adey3ho-yV`d zDg&LpoiwB3+s0E~q^CVVQb#ZvWtN5xxer|w>cI?9gJB##YNLZhIbUM%!z|DmUqV%e zdO8E$YI0Bkn_3U+sWQ~2JWyrNSL;X4`{HmHt#c76K@}0~IZ2R9DB3r(-WGRM#>-Ge zH14Az)QnkH`mPUP(-`VE&3cwgElUdG&v;>R`=R>H)620fpd$<7G8BL`zX4>(|MHUa$8Fr>|IXRT=?q5 zLhyoIPJorYp^nyI1Sd+oURu!8srDXm)$&MOGk5~V%DtW!UNU3x0JNkZ4AAz*@)YES zK}4wCtXvZaIq!)u4tOG*)Z^N55U2JvRP5YB;uS27waTVE0Cxmz2WEmRY5=6sU{EEq z$w4(OBjE-(5Uyn)c4ULwS43>0%|ZlGbdZCVi*+;B_9UQsWJRenxgqN=``Mv2E*$3Q zpvbltn`P~Q=$LUf4i`|Ed`^jV{ozd5f)4Rq)IvduTG*iiL2IP*x9`~3b8Vo!JHk@mo=2kKfi6#<)75Qma!rVTZfxgOQEcA;&{lFbxs3Rf^+sbAdsLCiJMl ztW7)3p7toVv}H|AIIoS0#i5o+I2vBtQ^cE1ES$DP zq2`Fg>VRfJpkpnc%nVi!J-1dSqHYXYFbrB z)}b6QeqwbQ=(Ho;KEcuC8>@{pCpVb%~srx?p5O@x#VIZ1FD<9#sHf@P$2N_zIQ(NW0cv{6;-t*PSXG?>M z+d5#4%B38QJ@O%!z+T>B*={e@Ar~Yay4LqLD?!Mdp)b&}Rj-UsKD*(l57*&gK>3I^ z^@yd->ySJ4j6KV=i^dBYH81wV-!qO_hn3{hK0{zKGN>MVGO zI)2(ZL~m`~hN!=F$Q|l$-Fj;-7=j!+2-!T;bZrbp!dHv2c2UNsB5F~ zle+<>wO3eVJMA7o?PuTv+S(`|s@WBlo!tW>WoPh15Gf=@;{tQ@a ziF=6;dsTRb(t}}uC{EoY)NN=3C91G;7qonrt9B9Q14FSmyfL^06O~mDG->fZo|zt! zxTA$Sn|qmS2zKxBsb&E=34w?8_5%Ko3j@-dT{SlBu<3=PSH(#!bI3+ zEjUUIbjg%*(sI}YayLT~i5n5F19pP&6NcLZ8$`u$N;{<+tr01pylzGbv>cLFDv4hB zK$!kZDiELzB3(x%mC0@kypVwiSWk7fAYWVpCkEuBD_9tFyL(6_Vd#K%LQl0mA9V@QnU*G>_B7rDw>aNj_8a zB$$GMOyR=c5bwXrBlL{^+f#B!8$wF~=WuHt@_Lu%z}ukAWD1zg%@iKj@br-8NE8~m znF1;p_9Ug@cQ^9{>GFibt2y914Zb~YJ%s~!O4n`XN&ek2L8>K?)(Fa2ympd=ThnyADqR{_+vq1?I@*e=ebW zAfZT+8T@pymh14k9Td!!n?U&m1LFzIaB?W&9v3VnpeVKc{^uyGy5Z0bJvB||oaISM zzZ&dHU>o?cTh?)zQDBcJ$?bK;KL!$zin_rc?V_U0Lr^VaJSV(UOYnGb&o`t0_a2X) zo8UyY5FgcRt^=kV4o|k5$^tn}A8nNhs>$O?5Xd;xDITxjJc0A1;BSFZA>@hNJgOtp zfjoOWquj|JPpTu;h1k+Jcyd+NIp5$znu}|ZbMJ8pw4C=7OeaEkQe9}B)E3g+21iHX zWqOj_E>AAUM%CfgQyn#Fj(BtFL>k=i;X#~K@-98sWu$48F0>+7n%m1sp@QasR59G7 zJr2X|Oz}8S3@Ipq1cxJmsu(%VbvW=FWd;g3V*%OBSmSx%G*Qk zg7saGj$L`?P380Ry1v-(;ty{K%n}d&Gx)~nm-oN${^u?J=XT~-oW6X=r~~6)JUaX7 zH#6V8v7+>tT-TeAzgAfOg7cdg5*Ul6Awhh%n9`;7Ust5{pYa|0%OYz+8`yKkAAe3V ztvfuEO!dt8So)!7{F`J}VL6V;_1LapFFoFzWY*z9R=+;f4NKT>wea>x(~Sg&k?Szf2+;b#Ld+QNFw!T%Eys7R)5y(r z0l+t75xxxoTj4HnB6|rSDMUO8=#&Ww3DoEl(i~|H==20bI9RF10d#SZ=5S%4anQ(@ zhE9%gjUx8Yn1QCCvjU8zKzEgm#N$CzmP10C$3Xi>OQJEIlR=60Mfwv#gML z)J1MWvT&qt;J%TTkmkV~D#UY&Jywb>tqUzuWAh#ZL+yA6@*^_Fy9GLUTE_SU;b525 z>64Hb4Sn1c>60*s;m-nrP+F*?p&T4kKu8se#w8;X8D$u_Gs-d+kj1jxjPYb5V}VOx z!kC1SSc3{Zl`W)UNU%6c#ViUsO9q_&aM7US|_ELLW`NM^1Bc}4{xuNW?ot6U71 zlpmTYG>in8%s8*(Jv^mBq&(G8p6XL~BR%7*lYDbeA>2=3!XVW-iQx=`9~8Cde#ZJfQdUj@kb*3pd_ln9}Oz(Z-nZvwEP}& zsSfX4h~Y&`Y8vL@STDFK99d606uLBnp!h32iRzG-p3yrSBDgicTAZojPC#u}b9l4T zj)a}~$)$(HRKwl zl3*~{Qi{|LO4l!bW>Q`$d4OE}UIhLep{u&4a`}8#AlE24Drg~=;Jy5BEx95pO!aic zIwdaru1mtAQ4`DPI#tx%6zXX=>522u!e*D_He5y(=H3#ddfc5oboOHaJ}I>E@IOY z`hl>srci!maZRzx3*xLP@q!dn&V71mTgRB}Eq{M@O6uIQ9kb3X`QyA1E#F&l!R^cYQPjeRuZZ_h4%=kXQ87q9x&eN%JhR*d-Sxzy_x{K2`Z@{yNMEkDrS zd;hh=S3O_gTSv|D+(-LABA2>#H@-U`!1pTB41CfCSmu`1SJ$8YyXmceey3~6gLj;G z)2~BUe4iTkl%^?k$!0A!xzQ=%=5ozb6AVOy-|n%fyR})Ar3T1IM4CE_us0805jRZK0oB?0MEBwQ?VsHW`oQkRLE-2lwR2*9;FrcQ)6)kg@oR2h5q`+$ zz>a^!V&6RV`Hn69ckV@^J~^A@&R?EALqBOxtWSKh8@c=Dn-`I$rh`(mlF)XzvYhua%Wfp^57Ar(GUE%fQb zcL&>?g9z1!0RB*z!D)k-`YCH;v9Dt9Do&>0gP2TdJS7Sp>ilb{;!s(ZG3c$p=182X zfA4`Z(rVf4&5GUizPp=12@jO5jKd94Ub#C2*t!j+DTW5;#%<{~s%X z{{#2j`Lc-nzGLTlNG0Ip>kyq(e49Qdf5*RH`bv$T0mc2#*%Q|()2ZY+UkTWh$DRP+ zCuO7-=WTHe430CtqP_aIZQHP4S4iBtlIaBM$md8294Ub#C2*t!{kM8Tkk0>Ac{2yHcxbucfQ<~U`JN72N zbYY_$E*$) zG=jHe2d?2);{AmrT*_aD>-zH`FTyWfH;HQe_H_fkLiq5_`|Opws3Q!$`;I?6#2-ot z;pEogdp5qfn2ui-#$6hG=}wLTkS;5bpRxERdfreYux!M?QhGxtirO^fJ%8|HE zsg2N_)wpMz{GnE=IlTR8M{Q3l(OiGl@OQ#oF%8DtH|j@e+AuBs7QI|^rf6n=zq53E zzjL~le5*c@G#OgHK0$Netz&Ud+REy8=Ym)t-vpRH-Xlm?CMc+OT`lY zZSW;1$ECo9c+7d=Am#W`-6@t$9uAI5DH$&o$PZNum5u#V4MBrddUsPYeevJHAhF>xF z!@?r`db`H&$8^SD=)j8+u(pNYhoRRziqJOX8z@D{J$||bvA3$2qCigo+RV1H;%aEt(Tuw!zL=;0R#=mLM;NB%ZtMN7fZbPCZsI8$jTFNy@wOERG#AcutXW(BezJ7e^9j$3dgCA%MxM_HMEC7Bj zFmi*;&A?v}2(a$}!Uy?Z3!^l)<9!sAF@6{U`cCu(dYQ>YuO8g8s9pK-oyzIK*jZ6s zUAts{W20h@$p3ej2mXiv=2r9}O!h}U|Nkq2&Et?~T^Ih-#)XW8g0mK!^<}c=)_0yZ zZWUB3u(T*n^(Pw%YtCAr1szUZa|!=y!&_)*PVKbm_+wo=m-rX?vu&DGe}V(+NarrS zU*PWq3=Zowr*;4EuB_ly?ialqXWl&jnhihOa>HeJr2McqGU~)7cOCtgvYn?TZ}*?( ziuq4-e6Z7@Yr39UilxHYk?hFum2;n=H5(){s}idvB1zkd6a5K>W4Y7F)R)&6XZq7g z@ML;Vzz-JVHx}@-Tg7Sq6jHh~-OGZl_^FWA;ynLo(s(lu|KdZj&p(lHM`phL)rZ!g zSs%jhg>|)=byXE+i64IkAul@_f9L?enO|I9I-_j*Du~4pOO@#F`5#H2O26Y<((gY_ z8*48p)ScrrEfsaGdG*t-J17KnYQ%l?JsvHCsn;W`ugu3J12YZ70K%wA6~s_$8pc@Ub(gAwZHvz z&J)$UZ`q!=f7;C_eEK`lmpy;}o!35n>UFDMd*ZnZYdg+4_o63uY&hz=@uk0CaE#}| z-@IRX{wovC|LU6aC+x_-ue7RRZ|=*vKmYK?dwzb#*!zE8^Z2tTdM@mEY~uy3Up41_ zG1W8Ws8`$m^8T3Aw>Cb!`1eI~%6BLBPJ5^B+}F-|^30x7PfVYh``b>}lA>Fy9yb2+ z>ZF&Z+&b%-(zB;ra>e%pcb~iCc4{d!1M4 zXsFutr)k?zA}9OvQP;T>oH_oicxztd(F_mTx{KbB^yiX?6la!m*jeX&)i&<2KmD|I z!Y{|&JoEmSmcKmV1%DmE>CRgJ{2OZgRmDg9kD|ttm}z@&CjR>xQM??7_wU2zGW^PN zan}FS-E~Ga(QR!==ta69EfkSXCZQNWdJ&8iDbh=%3erJ}fFvLSHjv(lQbj>P6p@aA z1(YI!A{|5!1SyKN_nV*~Z@+7O_pbM@`zI@BGN;U$efG1TXEOT$%!E@(nP>?cWFU~D zQqm|%l=Sxz@e@WA#;oOTKdDdJgS*9g_%L6kTj4W5NFrcF=n_Vv1E2xzoTE7!k!sGq zzMgV$xWB)@gxhW!BJf=kxThVxmh2%F%ea zy0q7H-4~?7LO3!Okz@S!&=UPjb_aZJaITby_kKjIb#$=c)$@8*>pI{~% z^3>c@lj>$o7{GDuQFYTs%s&sJto=blQ6B-5#v>R zi{WC`5zfnp8Dwaz=UE2cM#nExo(v@CI~zt}g6OVY`-tc;Q|Jqd@tf0yOlH>4Or0$v z;`4wR7&(<*V%HLq_l$hiz?0o)eOEv0aaHU{_vfK!2bux`8$EcxYNV1giWi1Djbs=w z3d9ZqB-}>w z)QSU#1dLqp`-aZDsGA}u(l4F6otQ{w7ddYi2x=mFmUQS z1W;l2#ddFlGxRsc0$`*5Bd!(n=7c2)WfK1B`VBn5ccRn?iK@2WR(0S}@dMv%BBV*) z1pyEW4g)A8VS5i*0tm=#7ZKo=GqUFYI7s0jzlQ?|0S+J_9Dr-Ccwx<(o>SsZzxyp5 zy^d7%;(b%zY*h{s*J*S8TUBHzb`tIC^UXBegNI#P8T+XhP)(_1cb~}i5;G%Id!lIr z?JtHV*d9Dnnx&mF?QGpWoNic7CDvT}rbx6Th_bXV$?TaeJL$CJ*$+sALyYjLVha72 z73vSH`X5U`{feEJp1Uo{S>pFEYgUh->~FiP6xm}kFN4djmvHhI6gkdfU@oIV+L<;{V**w^ zyl6#($CV~Z2cZjHK^E{{{&7z$x)YlI6{|#}HMb!+n}G(Fidv3W#^@-~jK!i3>M?#GuLO5u1*i$`o{ogjOe8?J>-$LoC_B6{C!WjLJ)v<@}NlYaQ()iZlkZ$Vq{**h*2QBL{Go36JI)Y z62qw7^;FfQknTX5*hU8%2{FahX74Vy@U1$f4^+?O>yH-QTsl2qSI;M%mu%$_5gT$z zQ{T9s=6Y~9JDPLpi0UPS&byng`keEcvqWN!h?0n_skR-A^0d2oO43C5a>KPHP0^tZ`OaGD zd3S-5$x^|&&cUU9rKv*6DLVTUs23@sU&ES_Y-0;8;x8<+?rF;-YJ1=m zbwa}wh4d0+KVP;ixH=>z$8$QR+$`GJ-J{@vZ?iHfSw69dkRncrNym}8p+aY6^xAn& z50(&(g0qv#A`Um3tqe{@Hgnm@Bu5UvU0Pk-k53aE?Z`{+{A6XPGHyYhaZ!=XpR9|l z%n!y~hrv`XyldqksT)>l+b8sC$N@f^`~`2B)KBypuUTuhl$=M2)}l`hgLM)Kx0I#l zDQWm~OSg94xRD(c#J8rE2rFJc${)6pwOa4`0G&Mc(Jz2~cII$uARGFZ*A@KEe(y`y zHZFan4x2eGU%COzksQA|JnZLY7pKsbc~V!eKFovDpOi7Y|pi7#7Cu@ zc%9VM(r8e9nts-TDoo3DGcdcc*3Hf3seum@ZIFHk0>@$j;8;vR`UhYW|7qa*QwF$) zl;&Vd0MG&b;DnS=1kG*`50X@n=l!It)QEjx{Q0xY0>FP(Bth_z@c6o|PPzb{1v=(s)M4l&Ba?hvoiG*u*S%j=mo!rn$$@Ug z{7orjnCFCo=CY0X%lT*3n`fNJ1Nyw|F$L~`D&0N(p<^!g$>EKP#PFcPH$BN#!lsYT zEdUb}dM{O|DIRkBY~=T`k-buksq|AVb~0OOOS7xe&&2RN668+5cN{+hQ49@Kl z5YkYfHUDTj!i)+^{0HL130rPiX4qD9K(g#J_yg?=CxCB9U%98p7f-#AH@hL+1tGH) zi0a%g%Ep8QK!T4%$bfO8EE3FfAcZgoNWvh*%Q@K2Tx3=MfS40Yu+q*Y|ZHNb7)#HD4C8i*gwLH9Oi z1a5C34(5M!^W^!FIwA+R51c=e&!8mpW{)IuH1pc$_d|$qvu#P{=w5>+NHW3ykqP*5 zWl$!rpA)cW#6JWX;JYA$Kp>C^6jEARnh=Wnss^vbMz6Ppb(8V6|e3@fG2$ zYTRUcSOh#hYpJZ5^NGu%+iBRKvFqpR?EXa__6;hUE*|6doV%KzEJ&A@tEwgM?#oeR zB5#`#ETfQ>@4@j*3E3e^2mHE zP6p=p>td*0llct$NVL3%dpVyJtlrJTzq=0RW_S-WD^x7SW9kCc-U)0uz?ov*6UN?K zedjS`kB>CrfU7An1+2Wn-L3vrG}>z?XBmTtT~a$2tjW1=+%%@{cOJsQ;mK-nb+ zlwEc;k$){31+5iaU7(>7WEWstc0p`MqUJl192kibMAc(EWiS#|{4*FK=sG_m(LZVX zw|WZ`;R*yuXaK66E}#^@S-zl92tJ~EyziNGXyBb(#@-paqx*stQu{v}@k`iCs3c7J zsvT$>O-3@TP#R*d&m7mX6?=q3OWgE!tjk!HKbJW2ItJ&^s(qCDgpyPxYiav*g#Sdy z!0o|9r_ElLxO9FsI~dyRLM!iXiVEXlosiOkBePB-`1FFyJWqIRH%?##EYD_m=5a(Ac0!|BY2?(UTZ32C8ul}gt(UXWEN1A`%`NM(-c+YD zAGL*{$ZsBZR}=*tKUR(#XGSG@(p?8|WL}`-Gusg%D6t~jA_U|&ll9*tLTo!ea39{o zpo)l)l=<%Xq`w!X2*rQcE&rXTD&nH8@n?vU%a{*NDD1kBSI)VSO&x z87*eh(maW2I{QG;QPg6A#ZZt00aM{%Pvm+*$#gXs1DKTo>U5uNqauvdX!>-jP!tua zgYmat`v4|~a5pt*J7-poVms;&+9FMDH5W~fMj|7)eKAgPHdv#wm+{B1H$Kj{>cTL& z3$?O;iwt`-jM>m^6y!SS#OTe=8&it5kJdj`X0_=LQ&=$ZyImWjs-t|Oi!Osq(dqn( zV*@lvJ#@Ykz3D!g_N=UMF-U|8vG7)xEbe|3h4hC2&b!m89Y?0%>eU6y@9b-Hi5qz+ z;{!T2Y8sxZTUqbVASTu0)7kMA6;NFD9tv|Up;jb=)Ka2b=_a=WIb%J)RbtFXz>jhQF zyou-asQ8%QzJjQGNjg@vwPxaW0H|ncaeV4ByfU>AP}^3RB{2T2X3o{fghKQLPMvZ6 zq2cBBWn0FWv+c^tD(UYmS%0zoX3Z*{a_}VDcV3nLNooE0*7J*pL(G*p7gGa|#TgKl zqUcyx;DK0&H$|1M6KyZPJPRW7Km+Or`HsAtgXSe&GZU`4zezIcnT}8aQXOM2|Kf7${9wy5>bOH=va<({dD&&2<8^D!xOwBq+WC+qm)L-O zx9-u5Z(JLw{)FY$JgTI~+}bSm5)#$$s>-l*J`_)-z@+``*X8<9J2L^gAPHHMvp2kM zk;TwO@2|!bFg#D|-*+@EtfjM~pmRPXd|_1Hi*ne?H-(P^^Y*Sjw@2;gQKI1~1bJ?} z+*gOA0UuTiwTizEd52NfXzdpIG`&Ou`tY{#qyg>EF)0YQSbVee-iKN|R za0GfD`6AK7cIQ@7W8fTZyrpK9CGXUaB)EBA;8p=~z+o^4)W)!3xuO3sUhR1@ zMGEGVBqbVuofQP|vC;kDe}@4{DTI`a`R)PKj{|@|=v=;Q3?SJgAx6N#P!CMxy4?Ul zOr-)pAP}-T2q=J(Z+~Y{{eD8<{2Ji|nLX7Zgh$c4q6LAyLUO183PLp~Ii3f<^PM;{ zXK!c%4jGEY5>-zhie%-a860zNUM@o0O~=&=7qsOPb3E+s>b{`h2D24U!7(Z zGbd8c4_ETdlIId=j6(TJkGm1F3;(qaVv&x z`T~GW`7c-se>`!ZSmv%YF3|p1;pD-@Bs0J052_mN#6%e;9|{+%qF!oIQLpYbNKh9b z2wldlFCL{3O~?s~XkGa&TLKd8f~@On3#?hL zY#lD6Pm1g0%Bf%qjeb(%vtRoftVGdU^DAj!+eYFK|@1*H_hu>8U~rw z6w?`;v2fy%$yz2>4#QIRhkByHQJBZMD%T|^4fwooP}hrn7Gfxsq!se)exp0!BzMt_ JeFG#B{|72p%MSnm diff --git a/src/lib/netstandard2.0/Azure.Core.dll b/src/lib/netstandard2.0/Azure.Core.dll index ceddacf2b5aba29170be572b2c52646d47ca81e2..390182c78ad8ada6895bcd540d5df8b677bd92d3 100644 GIT binary patch literal 418336 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%0D6Ax*M5+eDf|5tr}eCrB8L0lo^T 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

aL>nl{V%4e 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

5B99BnsU%_UFpG`>P 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

}f1;eYYXC^eo@9p{q!y=g+61 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 Qn8C@g)Gj|tB0-?P0f(LC%m4rY diff --git a/src/lib/netstandard2.0/Azure.Identity.dll b/src/lib/netstandard2.0/Azure.Identity.dll index cd1dcdb55227084817f1a78713986a53e71c747e..23654ed1c021baf0a793d59cc91c128aab3832eb 100644 GIT binary patch literal 364064 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 z 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 PjF;~dx_rEbX0QJPbluS$ literal 350752 zcmcG%37A|(^*4OyZr#(fBt0|TlS~2=0y7ld(+MQ(YY2N}U&FqGVY_gfAY{76VO0kEc@Ao_B-tIe{gwOZ=o^PI{i z6TWv_LULYl=FaKr*xYeU;5d1uUa%+dIlxZbop3o> z`L6{Nr*bDOW@%9t#3zjsZRyINbod?-4kMCSLy)nA1$Uu;=04I}>o;`KMlZ zKHS%iB2xHCUXkwX-yEcBUR;k)CXs1l8biQJHlb2hi{{0ro)v+SX=R$J184KK_!iSU z`*#@iia(~!MI_h$pu^enJkRMAYU}68-2-Q`e7VBU1ovEnzgy-JP28+Q^op1kVf2SOMqxA{1n`1 zYk;w0s7QSq`fQ6IH`)%r-F>dv9;M&*rZ9d6=#7<|iHbO-UR@UI^Z*NSQG6wmqa{C(52a){VQEcTj*Bph=E<4() zJ%(u691BqSg!*{p&AZ}T5u$z^s4HCW8d!o^Q#em@#~HBfn&SZs3btxaq=+^TXsK#Y zVc0i}pF&7`Bgm+VSh)-}NQA9irqYhA^rNlLg^pp7i&G<_yaH`mbJjepih8 zo~BpQl*;su+@dGN&1np#v3N^0&!<6osCEVAN%Dh;tI*Rre9$>mkv`Xf3fW&4CGw}6 zk$W|7aC(R5nlm7CiygdX)Mvt-M6$Bh9nPVlG+E-Z@JC&4gIdiQwC-xt3Dj za5~J{psR5}ylhXf!mQBH4_a2CQ0@x*I!pxA9X}Vp-C{dJa~|-Q^38V8=@f^w9V~I{ ztOb^#wb(0{tVMDMErp@TVt@+cUG(6?D_a%|FK-4XD<-w+jj{p*$V|Wl+7R{Z5v%?1%4{fQy?}U-E*R+ zu5xz{ww!wM_jSj|0q5-;4|>kIL)XCEV~i5t2FI$ALG`@40OhY5nUPRu`ui%yG!RnD zBT-JOs`43@Qr)t(1mhF4ed{LGkL7_>C^c&uAE30#M%k zSDA8q&$X$Ze5VRM^)OE!G<7LhtDQ|W9P1BVZ{NW)mewyz1&+N+U3d;yo!+J{GIhou zILIAmddCW0sup+kQ7T9CqZt`Z^0j(rUo#|WKgd5Yx}1?+fgfacqr^{h@q8MFy;)Kt zD@kA0=|mT5zF;4=;7Fo1-Vi6o0D-eR(#=1&{vJdyTpO;M_YygNczz_vPOg~pp<~Co zhf?&&YDYP`lBv21Khqu8ybrMQjBBn2R7ut0no62Ke7s1Czl73{zlxvenlxx-PqPxZ zYYv5Fjowco2_?D~4g<4}&Y3oAZ%rnm5(DeUk3f(??W5V?Us@OxgVMa|z~=Q4 z3yVR~-y&D^`-4F+1f_+Y7~I?lN&WCBE$m8Neigw7m-hR8Ubz^Uo5+zX_vhVl=CQx4 z+}~Z@xY$+fzPZ1rm@D>}o53;5d<4H^5S_2~7P}F=yVzaqTDfe&^N6vt81xs4`C@ni zMj^FazSz06yLwuV5p+rf1|3v5T0JCJ8}OtCn4>}P%K7LPi0u;2LW^^Fr|4GDReRA# zfsXchNc55BW5D+r9$na(8y*!NdUTrGK<-I0Sl;QWHE+F@8_VSkj5G#FIzHVDWj>wy zpTl9;=0g)OBR&Q-#W1>^aV^LXOp+8<-1;gIP^eNNUGdgHU2gPocnM$S41*?Gm7n+t z)SvoN#5TD-L`c755ML4hJT%{GxzEXI+PmGnraL#d6!~_fgciKwB8=L=KBm$0mY@t# z6%H+i*Ug;Q75|VC+<~~!%bSxBQ6a2NrDj8PdzPRokL4E->%%>Ng*3hNWWj~ z+~6cMl1^mf-N!$70?Cb8u-7G!ib|vSqm!h9r@N6FSI&{!#+tWE?-RT@$z(lIv7i6^?4lW!_ za*-=D0ZHAuC0Aj9S^*>^9M!zwkIe}EDGBm5`_)`V54n}g!Xwwxh3{;Hw3ZWH6xag8 z>-=@4Rm;G4VBlqZ$uxDLSP#vuo4??$T;?q~GMpl-vRbMB%4J(@gnSrSs45%=mZRz$ z*n;XV?lSv^aLmIEGS|bussKtSMn; z*wNPk8D-7}LVGVNX4ZXQ>duYR3n>-0&jL>=gG*-|-7R7A>Un<}CUJkR&Hec{_ZQmS z55OHlPg68!9t3qH7kv=`b7LB6&TXaTp+74}qaJtusb@PaL^wVGxaa)(rfV<3mC3jIX6H zC$06b;AchApYHlI78VCaYTcvp7vQP%iWm0!oECAp17p^_^A6}`CiF6~7|N>c{p>qX zlgw8kBZdJucX(i6#x?N9!2Q`d2p~Qfy+13HCbC5j<7d@?c?4i`H^>;Aq@;=6DQ@3q zXK->Q;*O!X87*=9rx8(HGuA|sB>NJCs6Pt1D<&yzpfExC1LiT1#&(vPq@-tWLPsRA zgwf;hJfCjQJOQ-Ni=IcZcq^B6&g;uGM45Vqm@a4ubV+)VxNRk`Iix9E6@87em`*H& zJP8~_q%itAkby$J-(NkDSv}&&`y23isfZfaF&ptaZ#i3S*-?O+f#2cWytCr8tIvTp z1f65L_7V8H@vK}@0S&s~Y5_fzTdqt)%@mJ=A$O_Nq^?}Na0+X8URe7&%6S=vb!CI( zmnye}@0sT4cx$>7?*bXH8s!a9qS7%b-;s!?-*=0?v;|2@BEK`g6y3DQ36Ja#yf8P- zNn$Jp^`Ah&7c(P+SmE%ZZ$eD;G=38F8KCA|R5>sD7Es@u!|HdE>-jj)f0>E>DG1R^_$jaHI9|gkf6W`HcK7W?Fi6bz-V#G3Mn-4jtXNermXJB4~KSYQ&`opp5q2yfku^QqlOR@sZ z|4`gi((5GcpXKt+??~G-Lo;uXBI)4T$1u|2Ek6Mb8l_wbqn8nrc?CZ;v}-!59RppN z;9kyPNKvh1NdrpC#ysFDZQjJIkTJks z5;Do!!G%cQ9O@~V+gjKi&Rh>6==JS^0t0&xp}}fEIQEWr?+1s$NCGA!v+@#pZsP#> zM89CxX1ZSemq08@@ERAdUx6Ykxyd3)vR<@2nf+18yStH3;?$T1bf6&O~z&CUnP{ow2??Cw><)uTCyPh3tqpmOUA9%#}Ep zLvt~_PN=y96<^k4XGOn;+=3^Lu)Lt)qs9IYNYxHsy1lLmSSLR>@hUq1k=o$s#4AA7 zgnvZ&*M9@PkxBYQuLG^jtN#{Yk^#6}TK_jI36bB?m&oslFkKy-`#T#mUC|pLa&7bv z;+gtwB7Scset&HGO-Hy9_+d2gr^NHm^kg{tp?%TsFNxp((r-hz{#U|2Z`9SFbKKgX z`5S0sf%!W?d>yo>>td2V-+_vqO(AQ>HMC?{UwarF=)PoAVbvsx&Nu&H$d^Hn{t0Y3 znl-isYUTRB;3~9y!|2~2gp-F+G5ezfy#a+#o)8iLfe+RvJqH6f#~{85a%Gmd%o=b+ zZ{eq>I@B2Ni>oVxy}ax5CM82NLh1=NR2p>$!_n@LTUx z99eVjyU+1Z`8v}5w#|@N6uOUSZGa!Hmxcm8n-l0;42D22S&T6O8_H&8pj{>|(*>W( zP`w*q#ZI_42hHi$FH+H!Gt&T~>G;V-Mf{>Cb)%b*B6pmznLhDB0N8h?A{uBC;yYQ8 z(T!k^N-gTc%#;w^ai&pKFqmVk*dV-FWYZ(zVRDtHtUU4eD0iH6m0KB#e*qG}KNRE& za3O!b^lM|tpScYADws?0%dz`M5DCqV8~qiOTqui4VPyeFDd@{@fj6Yhq?n<2zJfyt zrpUZRWL~^pnRijl6q#6#Mb5Yba12rpKW^3d5#~~4RL6r^$HR2MP<&FMaByF0z_3;j z^Gz9gQw&Qq>`UX*kyIN&a3?uBR$l4c%&+?0S`pkQDEngp2a z0>}O&%tR25v{3&z7!NCdT8Cg2=c|ywJOw@t4=qdB-arFmRC5MZ0()!)0pZM)AjksO zP#e(@GYQ|bQeQzpI6EZ>0>U{dK@bqA5{W^O3ph)Qpeo&Ib-l80zRm<*!`!IO_JYQ0 zY7=H5UK@J42cH)Rn;;OU9t4(bAh4lqW~SN%y37VlcI-}#vg~mh5t<<|qHej)E{JcQ z#%?-;phl4lQ=YrH#&AIiBiR46YCn7BW zVvF(|FbH3mJO!m4zrW=^mF|zX+^5m~Xv=*%-QRDy-%0l`TJB|VSFnzSIq5U3A&Xrv zFo&V_!vLR4KWU9efWYc06tO|DKh6T?D;hzv+-OvOH^ndKy?xG_(w69=!)jn~XroZy z3_r+|=j@1Z3lYxH!W7Kq`0WbKD`%~AB9m=`Vp^Ru>FwP`OhoS`OP~w?j z6}z7hTm4DWW@+cPLb}k8V{@ip2c!8A;v5J|*gCU`qlq=$ zR#v*qJS`jFc@lAKjX1n`K9e(F^}ii(&AY+4uMlm4pBW3Q!yB6gz~av{lfS`_SqNtV zv#Bisp|iiOBizu!y=SF^yz{2%AaA+A8L<^OGrnBlP<#`i*$TqCyxiJCz53ShGTY#1 z4o9PBVA=I91kt26d#DZ$jE5!~P&$BBFrnbx1SgsIp-zl-36N1r#r!a>53X|rbb^+R zdcG}UDqwA5IhTTWSSSh%y@QY@Ll-xDrHQ#Gt&KW z4`X*9JL18rk(s^zDzk`kKi85wXPt5b^IOOxBm zA*4*b@i|=t*Q}H)2d+0ss<^|LD2uv*b|&bkyI~XCAi?gAbN#61?_rL5fVpNLWWY!c z`{9bK`w12jBydQ(P(SG-BI@|47(r;1SGKRPw z5>Y4DH%}WeSlHKTn)a#KW}n!X)n-5Zq}?eaPP$W0<-pU{@5Toq*3j(FfCu2GOO9&f z^kBv?`ayFLsNExZb1-0Z2!1MyC+?z!JryC%p(Nng@=>U}ItIn6i~M0t1%HoSvdA0; zp2<5AWO%mria0o{Aty!9t#HO)#83Tja(;%w>5SiM(lElIz4q-FfMCAs`4P7ELyM^k zXTc9D)qas|56RfY9T(PddPS?DRd<}e3Aw?5(bpiNGO-r>v<`Cw5)!?FP#z9-P3!Q> z2IY?_kii5W8~mPGN`@oxb{x|HUR;S}nwpe9ReUQjFKyaT0DSM$UYnOIp~OKDGP79n>P>%fyh&<8Fih~KD@c2rlemdlg)=re& zRSj}ugVky?$sG3#UlKShe6L#kdVRRA%%!*FNFWk{7fVBZE8IwFv-xH&xk)G&O`i3HP zV2u~OiLjw0gJXZDpHQ;33Y)xOb`91y!upNW#_4c-(L3=QM9c6Soq-?pj{(=(I0r16 z;}{K6HSuN0;^wZw!b<4*p~3PKmoPd3IQI!0R0L-c!g%%LxrVb|-Ww){F@{|e&JU1| zGZAC`Ec{GTXZ6iMn`Bf>_G1ZrQlUAUsoPrDMg}+ul(`RAN_vBV0W-W#g4+83McQ_y z{zZr<)2*`k4AP0ol6?XZ1o0lIdj^%gsJNP0?p09zYva?%8*Ebh@ zW(3(oQ%7CabN!2P>l!v(oOG;XHWi{i)&RJmEsZ)$dtGaxJL8&Fu%{zs3?Xu(Uj0A>$5;dPsb|#V zoGl!vf0DHND&Y2;j9H5khA1h@v>f-y=zKfLrfats=-C|v`gTWwCA+P_hO!x~G*b<9 zWpvGQ+%qF{7YXCqT?Kk}kwD)r78uyw1eWa10vpP1P}3-zE|m=hKAkF15G0$a=B zj9bCQq6W+oXQiQ~ccM~+dM*tm2nYxzHsaL;{(^9^JD_b4+Q(Fh<{>5E<^~Du<1iWL zotDHFxM*GFY8aT`L)8|2GP>?sSF>NJ4hQD1@JW|QHj*Whg1H5)s~)55xi?d19e9~R zJ^K=Yc`x%JIm=D_1QaZ)kYs;KUl}r*qu4%wMz^$YqyTe@FuoM#W>74XWgeTJQ`7UMT~OkP7hOo;M;8&4qZJCq2?nDE!NdztYh;N= z6ZnnqM7g`;tRK<4;ZDY5=b@BjeW%tN-$xD|4_Eut70)VR6lEq6pet7}7XzA0@G~~* z50B`ub_;OGfcT&w-W7NlA4JNLXmtl+oAWR@;B#ub58~xH`zry_v)~Sqzov9GtQC%F zT#5)VI=PIIV#zF`xXa<_5BdUg1rQM510qh?z6Y)vhDY(OYca+5lf)GXoU?i_01iiZ z=1L&uD*SZk>+b{T53@%jiX5gUXUvPvnT_;pgzuaWI{(a-Xl3!QDf%j6o0Wl4J(E9x zW)q!E{t$ReS+!ie3~be4f;^LKu2Vd3Qcnh&WU0k>f>6JjLSKZF{l+f|*>4B}!mm<- zARxS!5(G*64f?i>+#gaNK@jL4Bmn+1f&V6K*|Y(Jna@-sCj{t$b`Be7>$P)#gCwyK z>G=1*w{w4IP|spSHN}!)R^KvK#~@u$C5Emuw(}!#5yb)bH0`(!}$HbuwiLfLew?B~>exoW?>x3gb3R-pDv`qbM|=MF%6;-}Cy+=*i#QO-jg z4P;HYm?Qmb&|pR;>0_|FQZ?^~yWqjDeG5TCv1{G1YvPJ?gQ;EX&Udw1cF66zYtNX9qEbaSnpM>ieK53z%=%^HGpGjtyN~hXYfkL#VS& zP`H^Hl+Lw;8pQ8P890ezVz5lYG=$?6SL+Jv=o~|pot>mvCfHT32!nMD$9hK9nM}Hv z@^DSKgf;CtluK8_ogV$dPz`~GMqPtRZ|Is+@ayMPM16!qG3uZ#(9|&(l>$qJ>2j#y z)*g6ufF-don5?#qm9PfYoNHZx>~cT#T>?FOp+MhWB(P+c3v4JG?>e)c($!`I4#~*G z*jZ#+fu4Q0K;KRX4D6)9k{uV=P&;d#t`LHW*sf8AnTLeBhd%oDO+jzWZ6#$m@LaRoDTxV=ObiJ zjDYzN+)0>}n_tFZwWoL^tBc+=QP#jD+t&lgyi& z;i}en_5#SPg&PCA1z7wEN`HuRk?A1a3esreg+oi7390tfY7b|6!rBh;L*Va8qS+F` z=3sv2%$waA|7{4SD-%5ymUI=fr&Bk&IEc};S=TxCc*oloPPAVvq-YBl1cX9L5Cnv- zlpqKQSohN)f`HJI5(EJOV*uq4zKnmA?b!9;S(l^^vITY*(N7#>+jkxAI}Z1AaVo;gLE$G|%D)^6_1w)Oi&diDx|zI~6tlD$-5 zL)i@KCT#~@&GxNhlOr-RF<2JcfsIu_&t4`H+pi{Ul=8_I6BQrUF1$zGa~ zeZ7Qn?FR*V_6C8z{eZy0en?=+UMH}j>;|(Qrkk#&Y|r@|>QfoAGua+w7Lu zjotX-jB~(^pKdwVbl?PawPO&Hy$w>ym2+?^2`)_-?}9zv^3yhgRw;k~{TOUEs!Vnc zIdenoPwa)C=%cV-9D{IO7HbSTHah@5u-%wm;X|-Zf*lF2SH(Xt2o9M1ru12^yAjNv)6CR;{+7)u*@|h z{>R25FHd=I5f^y}RRW!pWAO}jka28>wVm6MIQ9fP^elL0HP!bMSuul%7`#{Gs zzc{?;vvj3i_fPTq99`))-;!ie)ocU9VQY*Ob%Ap`jFI$?p052vtCzC$G2JVy@K)BQ z#~*-GX_&$kR+J0XnO=A^Jf52Bf%|<0-sxHJDwHKL=yEKoOFEfM=aNTd?BC5|*IfG% zfu6lZpl@##Sh6<>Y$%(-Xn=N)uBP2ndwq09=4}$jwYLlO>?(o2{kXuu-XXALKPIrD z>}ETaO_$0>+0Lh?05?zI771LCz=aBRDgb?k&VA4)|5V|bp+0WH^B9}%t5^!gmI>uz zw69wjzCm$fIN3Sci``3%FG9|yv(EK;R>vpm$5#Ib2Dg1FX0-K+(~nsKIh<5oLzi!Lnr!ta z$%M_u-cXrXCOPLTD4XM?{+x~CpW3LIYYwJyy^|+YH9AWjU?xu$V7GEg^WGV>UVr%_ zZieEr+DL5!>~)feREIMB56yRxKqPr%q{dQx>uu)LDVq7C!oQv!&t1U7yG=Rg3gkoD zfy5VIoNWgb;hL}D7wv#S(su9&NdM>UV2-wf_*;nMziA77X_-=M467IvjB*cJpqWnG*S1OZ{UlpqKQyQc&}(yCA2 zR@L8&JmB3sf%_zINdn)YP^*5kF0Y1WGj(}gPOX2BpxpSkR{xUOqMuqTnUJ+>C6k3( z$yBx1$~}aJ+SrHMNQbsZ-E?R6)>{RcH&nqFkQr3#b#J=w2_D$K)V`gNDbp`YnYs2M zfu8+}KpZF#Sh8Od*ibgUJ;ySoD;Wz+vG0=d_?gj+eP_B{^CSGCUNaqOy?!2~|MPnN z|H;0ihU`mCumTDK!hR`15D@lH34)~cjlM~Jn~Mj*euKpG;VyQ&-Sv&QCQyz_0Ooc2 zEWr_|KLV*^2QM_gCF$;DH0VWGfe!7#l;=gq5I>Z7{Q;OZdk7=fG29ynm7I=9%k9KW zxjiQ3;@Zar;>3tR-+oPC$v!Hup=@SnEjPN7a-&QPE}fGyGJhmtT>E2zo_#@}Z+{{% zurCTM+2;i|l-=y2vgvA*jd@OUeeoL-#{C?sgVfr0B#djnC(yIc3iR!F1qSx}0!#MW0vpP1c2(JQnJ+<1<$~nklliTz@!(X; zPdKo+7rg-PAuezmhoN-Lm&vMa={L|H|J=sm^mzzAV;kbqskq2TdtSh-yRa#Gro|k} zyNx5Ju!<|o`f<}@T{?wTTv^sFD=pR|r?84E%lbgI#mZcG=Br4VrZmNwloY3c6lc7O zQwPnwReqi*q?zrede)U~hHFV_X8XU8lGR8njZ8~ZBmaeztg@!&sHv>~LP}PTEgiAz zISTm`!y*U>N2dfqKsY8P2m->fDM1hrj!OxGfN*?D5Cnu1Qi32LoR|^>0pX;SAP5L2 zrvyPjI3*Y^&K@bp5O9_I2aC%A*1cY~{1VKPpmJ$R3;f$0Z2nc7U1VPXjc}@vy zu&1IOy9RBeIwCjg<=|i;+zz|2=s3n%r!0SfvkF=M0B1$8`~lA5wEO|iLb3cor?UnY zGcFIhKr zlXX)+uEDMg?!pRsAyL*-J?~^$Arq8UFOj0_ z4Hw)74Ei-Hk8^A6y~tm4C4L|Hjnrn3zKxu8(S8@OrZ^r&MKC;X$|!KdRHDH3)d9?z z)Nv9fGqTj62c@t^ka)<%N{)k?EhJ$~*KE{#{^^h)kco@zM|$zKh{5cJ)_{eIvyf>F z7pXK1Sg0Bd0(lBrj#ZX%f@>#;v{Yu+11GP{UhpuR;-`I_NyTP{l2d!S7kJ{BDwlcD z)}yZ33?fjVn*g-d7^Vio0%s_fXE0&f5?!U)SfXvNNK9QdU_oNES`~ro8LeWH=U2Xq zyL({5+Sr3oNwOF|nB4nPzg3u!mg|qA3V6|$;Kjbb-V;4d#|9g+t-L0EzH5Ii(6j#| zuw;KFu%X@t%L5$O(xvw^dEEikYJfhC(0*id%vH&QlTdenA**BBIpSI3!`5Vt0%DA=QmSQR;45Cnt^ zNkF3>NKQnG8}t<^qaYxRrvyPjXru%|K(Hx65D+F(f*>HgJ0%EmL9)ut7+f($ma<#s z_7bx1+&o}v4rZG`T6JC1TerI(Z(nu89-Rf9rc)GqF(kpx;^=<_8F)f#ISK<-CpYTz zd2T$j5*-1Lt}r?hpgW9?2IvW+V*&boTxuW;!stXoJR@{6VJ?hLB}}g9ZhsSMVBWlf zQStUGfp!X7o9*WEo#@D!1l$Kefck25;Z`z-vwq~SZ4vTe@T$B?7)IZNKSC9KJR#aS zCFE1Bka{n;wrNqLtZj&=4U2g^WR(V3#;9=dI*AH*E?|dv=YlDLHBPk4gX@QbD?PZL z&dso?-kj@9le*^G=>k1l6zJPNfhF53u%T=Q%l@p3bhXv8)9fN(`h5Cnwxqy#}gcyCG& z1cWP7f*>GVl@bI2;e9DV5D>0T34(xdO-c|1gq0~l5V6UyGxDe78_82La$#;{0 zWjyN8au zHiJFcpk+^dOZ_0XR2v2#JoykLn=RCg8!U%WN$-l7o0(2(GD|L+8$eEXJhw&5lzbjC zj~mG8arLPK6B*4=u`&jlj?v5o5P^$Afs9iu3#S=$>L`W9fKkdg_}6!jg+oK^!Y*^LA?l+7HV zanO~G<0{56b-aT!9(~yjG7<li7AxbW}?0z9c$#26s@n>Zp2 z(8KyK@ni5fDqbgzc{g6d=&;i_HM@iBUkh3Yu1wN z;)N@W*Ta#ZJ*S?Adc8fABzXOyG7+AUj)x-5oI?9amWOAhAjA%F-m*N?E^r%E+VNfj zarZ_b?%oK*-5Y@oW#g0gth01!d(ipUeN$}(EQ)hMCXRhY2JYer#9bVLxQinYcX0&b zE{?#4vhy8%#zj|iO!OJ8P~%@vs1+-jyK~#~%SZ_BIbc&Jx!Ng&48vF28H9lJ_HT}F zVF29Oj6ISkyihpY>b)9>p*h+nfVz@_&V?Xkj7E|`%!@Vr5wf0Cq zODZ=&arPnYj_(5vw>xw7Z$j?$0G)OHYiMKkbHa=3r87p|aWYX8LG%Q;a5Gf)NvT5g zw0aPs{bnfjiVpRD;a~eW#OL8H?KtOre@Z?wgO1Ez+msZpoq?%aahiE6xee_7lFIg6 zZItB79T)C#VIC*%Kzi}@zt3K(fhUn!z4Mx6PizK`)I0A&9oBNnyN?gir`G1QTIYQ+=46P z@p6okX<~*FD&_FU+*1zQ~amIQx@>UMkM^r zi{%m;`e8eN8t|fK{Xwpn4opv(j9@v&6*$$99%FbJqV1#fmr}vg%&(GyrJ(j<_#;BX zL5Uh#0v%o&;su0gPALY!ft&XagF(m8%(Pp_Z^1rJG#!ag9Zpjv>l*utiqz6Sk7&{< zb+bQNk*N>Mq?}!QhCt7rDG-aK0!#Lt0vpQ4uUWAk(A74+8qdg#B#dj%6^JEPfxbOY zU|{P4OZFUr4P`etNle*vWn_cuG*mXSTd;VhK>EMq1>(MzK;ND$Ft8^I#HEvy1i=L^ zfej7E%Lx=ONXt{hbqRQhsg-V9K z))zlFpEn{zzya`0PT1lkR#Oa^UKb{zWSF|V=xGG0^=UNj=C~%6GtV#%rTj5NnOFZ6 z(lyDt!e#<4ZH0n>@U4^}2nfjLlp(3OLH~BjCI}uddVU+h|46&)4bo3x@h7eiE%d3)W0x z^-=Z{B$L#=yw{%f|1S6q{nIR;LV>5Y;yOuW^Edhxe@qH;n!OCm+sxle`hOr3$szv)2kSX5+mf z7hee*+BCiU?D4HizGsHFWv1Z(=$-sY^forzYtg!L`j&d$$HyoCh$zrqnr|VJ<(TKV zY&@s}(uh##0#WV)QPPB&^ITkv`VY!r${?MqxoZ>HkA{wqHL7=uEj=4Cd-6P{(VK$* zrWqlM3xqsVD7YJBN7SgGoc^E+v+qUaW`}A~|1o-AjtK_eS;6NfdofiS>vk2fsOxJD zxY1g&qvmz2U@^}!Amqs~vU770W4>5;#ap43}X3y;s zjbn`YxK?Di_Bw%{ysRY6R z34{%5jgbdgt+=bs0kb&RPCo@b@-Lm&CL`!MV73%H^&%atBu1JewV9|yf}0{3W1RFp zcfivo!?bS3qd_m%p__sgdSGBku=epDS;Q;4@diu0To;!s8;JqK7^$Blp7bPT%jKbnr->hwW${WA*H!puT794b`Z zK@1bn&M`EYGCUVI=olkt`xhi_|8%t4KTMajca)^Sf2CmrfslVIVZcqC`UeB!1O$O> zRwYk1**}w_hC(a{%B5*aV{o;7jK5+ye{5I zVs>@_`&yTGlY>~TN0JPN0)6|Cz`&wr!`_wb0|Fb$&M$J& z7SWaIOS$LC{lrYun3p_~nZ7vd#DgjU?}VBbDY{% zXhW~jbW30Qh@{80j|uebqXK>VguuW)F0f=D7T8dBen*Yzrc3)$siT{sj;@64I%-s* zkbE$*yWF#F4j%c=kN*zVvEQHO8x$4362a<(M?5}_7bBwEpxy0WLfUfC$C0N|(C-0V zEv&y1rgUs!LX)qbRyW{rhMW64`8mdqBE;|<{Z3~QUjX4}9gFy2;DVp#;`6so9?DG^ zeBtI%FIFKlg5SV3qX2SHAK$JF#x}|&%<)xiq45bzMmDN9gww=di0t6ob}&JO^ud;K zlJuo190-7=yH@Yq`U+Zqcl-uKcyaGG5QL?i zLa|#ry#AheF=$?VR@0|PeTrS^3k}5MD|9z~PUljnB+eJU>I|`85d25Z5c^qvD+QNI zoolHlsWzVUQ-#%|UGa^SFPEp2PPRM#dy|xJ^}Ess;hVnGoc@PJKJd9tKl>xv*X?{qc%ovyDkmyNQabRFrRrcV&%1Y2F+W|)u5T5;Hj`&X`$evDM$GqX z7w>Y@Qs?T|!DTy;3@l6ER`^ z9v)a?+VL4F&4P3ja`lwQCeohB0}Hlqc^GMTgwEJu+WHS5Z>g<+M(mVpza`MK-xlcG z?+7f}rv)~YjUOzh9iuB_e`zB>n34IcgmLZn1$y=e0)6|Oz`*`cV99<@U_;sY={w4% zOJ$>UeddF!V}gKyqu5Fi1Oyz)R)QcP;DELg1OWj@wUr%HlqpdBr${?GXEs&WE5IFGABT3@*%jWu7y~ zs;fLyj-#n4M_l4Jc^)}0^n?akO`c`{1e%4|&rW%DSWRhi@&4KD#ryakaC&tlvw$;q zw5!^-kp^9V8FscjL~RCAiaX6rAEpe+(8(N$obg00)`amTK8u6v7~l-7>99D?-kj=0 zb5TIj7B<2#$>NZ^wA2(b5aQ$9W1sHMLcs9qKlyGu-1)d zgz++&9IH<~5Jo+YYx6)1>T!IVM_=l3LYoIq(Muesw0R7r9;dc>lv9tB+dO#iUPPVN z<}p3>IH}EpNBbqjiK#~zp~~R#g?NYUVDz5FPaRFCutIJUBy)G#?GICTs-^S9TF7Zi z^9rp_5uLE;532@Yv=ni;hBwB-`oX{}YZBj>WtHHlU}3a3cv6A{-BSq+8y$$Bx|ly1 zm*9*^a_>T7V!7i}!SYnIo+=0ZyO9!XcOPahkxnv87{V7xHB_Kl)HcG6wiz^!}D)x)aH0%dK6nG>VHE1@Eow2KhI& zwEB&JTV>MxtJ5&iAge5^Wti?GH)(-)V<8zgFb4wmfN}Ier+vP1;hrAsVd4b&P z`$$XPyRz~yGs1Cwlu4RZN#Bknr0J7nlP^gs(kc_LXAf^Fmer}jab}iXjV9^ z;M8RWhvnfpyFy?5OTu522`}pU0EDDE z)&`~)PW+lpqKQFk#9e2ne_zqy#}gfH_fuARyq@kP-x09KQm4 zA`=|5lId6+uW2XD-hK+l-SLhofo5G^(rJD{YKL0~d0(kuuxL<)uuD?bRQjrR!ZYoJ zaEB?;EsmEo3GdewUf(1nNq(@M@S}FZo9%>f$F^AJwiA}N6ZmrN6iwaI&hc0~;l*}> zzf+rxMNFAR&%P+IWPdEMq26X36#(Nhx(t$l?=w!!qR=$i_z(-?!gUDGfX>f` zeh{TQDLk#u_M!ju`OR6vdKKf3IxuXI#uq?u@f%d$<{XtQj^DX62)E!TB|JyMhP$MM zG+rzP%VR5_mtg7HD;!Xf)=Rr`I`YjwTs)hPXkiBaij*av@zU>ijVb+2(9ejS)Uz-ZeoNH=)ECbaW_Rvt9(0j}NjEWzs=Ade&QSx9@dA<$@; zd7jvq+(;MG_$5G0k=OTqlI(XR@$?M>j^*8P#$3bJ`lk?I^7+ScCP5x6OuqGaC%)(y z-@}+os3!@r^~o=HoLSezrk{u8hZ>chd_j_0n98DGkR(0%f+XwJDDv+SZSdhe0 zg(P%96FP=L-Z*s_%|Y(j2{X(A2y>g(McGq%Me3YuUlr)tp9}QuF9ZhmmjX-nWq}Q4 zHw~?ubYJ?YG!r!RLwW}cZR{TM;$r}Mq;Ue51q_}@@RuHFYLAb2k>9RE9Ad2!7Q$NvG> zD%RLSeKCH}uj-qc_~85ur=ROKLlXA|O*5epwh#0`rpQ`GzbszoKh zT<$qwU8{3=lm^I4IjA<7^UZd;4UdU9&S~y`lB@W3g!kh6@#`BrsDN*t$B)A?Lp;jj zQ8rK0BQ>&D3=iq6>~DcD?%WMO{rEAk0EJ0SEz2@5d-|V5dga4Mo;>YV5Zo6WuiLI% z7GmiqCuL@yhT_dn857dS@EikTFK@l!MOGlPuwkCciVlV*^B9sn)0Bsf_ghT|kK25^ z>1r?iZ^8%r|JZ>yFCi&fEK)a73?0cGl{p*S`qo=JJci`Cb2cH0RtR)6phxb}1stnv z4qB4@KLT*~jGOdX_#fauOLSY9dMBO_4Z8Z7W>%-dwwNq9@$z=+rKEnbjaof7?%926 z@anPgJK9N0;`g$;)nirO6q0Ed7*Rndh4ZBvx59~$*<@4 zxqS{Eqs8+dVZOY1SNs)-S51d`gHEf^v%2gEZ)jcs)9PH#ya@P`JjW&Pak;qF)N{1f zW!IVORQKcac#e}+QqJjiBLRQ2lPkcrBLj4qj=#C27aVAAK2}JjR12w z&8^J>_FbXzk-^&}L~axx-iFet+TE#Iu8|4?!X7C>5D@lE34(yIS4t2BguPROARz3M z5(EKZNlFkTZ6aLb^!WCgb02gQ)VD?+55ni!J$cAFx{B5<9P16^MSJlj*=^um^UK|< zx4_Edws069*)cG5)h>S^SKp4o2fJ7IjpDtA-4Ucoaq_Us+Fur&MN6E%ZQ(>Jwnqp& zw4}2l&+d;@y7eEUKHL46U?iL*!UG7|Hg)WYCD3LaEJ_)=wl68m0fD~l7l`lN3M|>_ z0vpP1aKeVeLb@{bWN+x={*3H762`L|3k>W=0x{N{D@e%>3v4K#xm<&v$F;Ib_0PWJ5yjo*~}Fh1zkFylXdE2ArmtxtUKevr`Ko7+46{_0uaM$<3Uo?hL{w-vFw z*`aSM4pfRV=h5}(Y0eHy^c^|Yp9c{47ZA6;ev6^bEKLRXjhKq=>Vb%gslcmsz9fVD zj&XmQ6uf5}$QNAn_(G{V2W(7Qf7lnw)>EO{laNdfRSuizn$EkBPB)v*aEuSE!))Pe zw)|Qg3>V(y6=3oRsb86nYlvDOM@QNu8sSN|S4Ygi8)lmysH@(!y9Sr))eAK%M1f?eS>D z`=FE~S}wo!v@r<$TV&933+5dRy3n22mkv}ce0gV@1Nmqs1(O63$C0PbIOAx8R#Ql# z!Dbet$)Pc2)+<;SzlivdgIUOk-BjutzR4!gvqqqAHxpR0qXHYsX5OQ9kuLp4`T}?S zK-BgKKYUVG9M~V5;=)2VkAf=WAyd2#r3-D`a~3hr_)8Z|EM(xgM*Ixx%mGX(#Nf1s zg#aGXun6jV=-Y}c>U6SX{rV=?ekn`=9kwTk#N@XL~ z%IX{p&;Kgx<@jbh>Z(#RA0(q`sk1~*)WFO4MX{mVz?UOeAsn7Ox6CWvw!z|TK_X}h2!VKBOE^uzw*hwXeRU&j>qEe$4B>Oz@08! z&4E!4$Lmer^MOVGVPuFWt;Y{*9+$(x&XPdraG4^3JwuVu zo+$`E!6dMulFT(4EnR%)I2|`I-p4ZWo+E)=8wvDmU7&Bz7Z}*(0uk@IiUjsNMM4`3 zQnF_YY^Ws8(OLcJ%EpT|59jeryw^$~oSznm^V0%xep+B)KPV9Ken^qP-k?ZmKdea3 z-l$04-XsVPT?=feZ1a9i30;~J)_-gyI!|QMaf<|T?X3cF=2jri+zJfr#|5I!-l0fn zKdMO1eoT?Py-kpk{fNMZiZoagpd#o>6v6nZhp%Pg-&exmezHJ}UIqI00D-ulED(A) zNRhxEtVn1NQ6y&%RU~f@69ku;1vXT+xlR*8*Hk?`nMub|3F6u#1$y>afxbOXU|^3I z2tAyj2rR53IeWAsd3%f?C3}RxhKe-TYxHzw^uTiXdM5shB#diU2=wf@K;Je52G$CM z9wrnC?7I~S?W7_(d$AxTd!fLFiZmb4_~~kk{~MY3FOx9%K8ZljUMbMG?-Ll488_iE4J+clO@X-{p zm}JDojMKF@#wpl6Q|h<7Lj;vTX<+(Q=F zPSaNZz;-DT+HOU1wnvbX^#wLm zr1`MMPgh&J_;x1#SrW#zvjuu~jzCOZ1!68M5b|jYl{Ls+b0n7a)E&z5Qz9oiUhW-NN5KY$=Ml#lvZG z6F(;Z&i69$zb>}KwZ9eU+20BD?e7H!_6>oE{||};_Dw}X`$t7`_D_oB?Ozn>w0{<) zWPc;Dp^=!6Xo~1cQlw)>rs>&Cn*JuCT>E!{Sk@Hi+cg3M`yYWw(_4xJ)=^c2_8&^g z*$$=T?LU>$Y5yfi$^KPfLnAS_XqxDnk|y?}-_NA!`x45v&k4kNLxH~ip}@dCFA!<^ zks^Wpu_B@Ui6S}sf+BhQq97&vtiXoKHn(b0=+dO5{rPj5bo@+$xOTNb>|qM@?XLs| z_7?(?j$bMg*w+*Z?aPYf>??}o?W=;6>`MY0D%)WHfEAanRysJY`#~lh3q`-K-BO@u zw-V^vtpx^l8-Ym2wu%IHJ4Hgfy&xsKKwv{9nU86#bfpEs{4?GkX5!sR0=af)fu3C~ z(6_q_#Ct>n5$`UF1a^@kSc(>;WOo$UP)X)CjhC)$ye$9cGx2^|RD?I`1>%i*fq0`{ zU|=5>hT&32dmh`MAoWOZ%P&akzoki*ZJJHl~!X0hMEVUc~Fef|^^<0h(Lc z3-0fkPhuD{hD%f!ub7WY&q!P0$xhc#ke-ACbIUcQ2%UZ?oF5~n96!CSiQP^NOF5WL z`_UJ;pw0JieuI4RFIl_6LJ5e*$ zq+j^X5C)@rAZiNXGfe^pct=2J{a#R_FC)0}fxNUy{z{g7B+2)Y`-?(mzIgz@+U1V3 z^vq|QvZIH=QLDJ|5|mjcel5rtpKa3*b1p_63?6$);*K6|#uq(C6mLUAFqbpdgaOid=9@B3n8-h%r?XIx1Va8`8@rOk+$L5W0SUWw6+x`8=P=pyQ9lI0Cv3(&vy3` zb=@kjHXVPSnHo&8^9UTPF%S$_1Pi9%&Q*_?@95SH-S|uKYEPvTl+m&vGT>k zjUJ~Db>cgyEBuCF5hpiKg8;FE_5NO{KbP+b@X{*^fl0F zw}xPTLabAHDkA5b3tIxb=t;1duj41eV33POw13AS-qnm(1J&5%C|nolHZ$J<|HP@N zOY+jjDL~eQ=$pg(Q}7s>q>s51H4bZ^c#G#0B;DtEkx+6tpgH7z3D%;Wml01L9Xj@w z1A7`mCRyvjr-|w0sU_N7P5yEvF5eTiY;0p?jhGyKff%C!O@a9Y;x?xu+Um9$mgpJq zb>T}|9p+oWgaP=sf!BVE?URl*<%?kCb(?2u?2>y`mL?$Dg4)vklCzwdm$&wSwoS_{ z!YCWJ0x-6Qm13c>O-C4EhdhcJ!sxLebbE<~r12&)`A&ZmkF) zOVi!&Y`nF`u|4+YSObUTTqmmQcc7C=)>G~0PJ}8IJBgSqG8#PaqxHp?xg^9oE^bRt z!2BhzX{}r~IB$A~^fGteC(`tnWtOXK-9WfUJ1*9f(xKz}%J&%K^kQ14I% z&q0cPC+ZpJ)yo8;e-?-}a)Bj#y1<6AnY+}M(q(?gbe@JMtsz=EhQK@zk~?4}GQ`7n z%(=&_h|gRM3yK@g`0X-R;1}CuNC&c!yxN@CN1J)rHXOvJVFkH>PXCPajJiqZ%E`}u zWFPOBhc#1wof{Gc4>He_DvbK||7_L?tx04DVZzolO8ojvfq{7GBNsnnB^7`gxgBPKqRrO5& zC9K*B>EzuIWqg$~dfH7`9>$FeX+{7#b2ug6^0|&&Yw$APwX=qQR&z7@uumm6%#whye5 z4k<)O98Ll<+uqVf{P{T1q2?vbz%|XA-JI9eYXzSja09(-_m<8l?R;taj*0ejC($pq zy?v_ZT_}fs*};}<@H@f{~!N|NU~IeV#GDojk;QjrqQE@II`tA-!-a0UbK*dA>0*FeQod0B`zjYH zCdw^+Q+4$R%1@tZ>*KeRarK#BH^_UD2Ae8(8EmfHX^?j#4Mxtpe>?Sq9;&a@TC()e zKc?co#lmpEhe7W5Fvxu#1|#R}f8E8UuTgQmmWt~}3*%L8GRWG9LEdLI7&&ME4i}fc zM#c4~R9yF27_V}_K`vS}*i*UJVC0;AcwA-FS1K;a9L9s9-#)6Pt1Jv}(;DP18-q=i zYYg^OzF;tN-u$~=T;|*^9>j0UleC(VZ2IYFk7h@WVyj$Pi3*e$a&M@N##>t z{$C01*7OwTpHp#OXkom{#Rj?C++b7XB7;4Z3k*iin}3gsQ(vRvWU*Lfw|t&$VZ6$@ z23e;t$UEu=dn%tb7&&h~JA{-^eT|Cq%~YJ1TNvItH<+z_&LB%~26^M$VC1~{_qjOr z<>FNPXI9=;QWN-jeapctbPQJ}2(v7*fPHMfBKlj_|L;l2<@e3jra zi9Qm%r8<)v0@a*&i$OgVDPHZc*Tez!sVx)9H`DkoXJ(;;dt3EaP2@AT+3rUdQ(>}$ zxSPFDmTGQ)bvu{QW0oJ$hPYuh=v{S;InnJ>~c_zDUb40{< zyBF{pOKxb|vb7hdr|{}TnX7$bx#jwhzq&fJJ(G`Fop_Ze3}!2j8*HjPX^=Z84E9vM zX)to${rg?r>C0^`n^A73P>XrE`eLY;^>0>^k9(!7)SqpD#L1R!l9g>t1IRFqD~DP& z=fhP%xw%a~+l&V23Wr?4Q4CfHOO0j274;sHW)c?{(~-G`f~fx zPVlDp^)2}#r0s{OA1}W{oY}teyQ-^s{h6tm%u+eJefy^|@9{Qid!^O;;%qYovxaSX znKkeFU{#7(V88fuROY-py} zVxPGM-MK!lFIsxZh%#&nV`SE4-p zHsPx!!wQ_9NLFc>bLae{{!z*M0C@p z>t{74ct`a;c!;~cX=rA4sJ--W=we%@xtLh?tgB+L(Aze^Nh!M{%D<_`1vg6iM2$rCoLH){wTxR3VMWSie_5e>4vko0i6r_vIl^SLW0r^iKm{Ue0CG{NZ@Pp^NZa5vX* zqYpzIg)>Tv>T3WR_Zp2S&GkQ^e1%*;opokjOU~!&ot((Woij6*+!pr_=|;{Cmhb zcmFU57--9fzlFW>;VWXYc}hhmXzs_yOKdbw#`!bnxibfeCcNCkFqS;BhUr}=W6T1A z>0A>+UlV-XiK=X=D*CNKUUbnck5lVAewh*(kU z%SBCn+^%{!B~clS_&s~ph;OdzdH%O4xT7!coTD;cLCaRgS+MW zHhGe~=DqN4F#ZtTVsFq)G3+X#oGjY3oX0Y>rPn*VP*DV4v8i&eV00&DC&Q6%lGWj# z5|bCofw_uEu-bDD8Sr}IaKzL~Oda`f%}l0=*R1ZrPf$=Q++)N`-mdmUUVp#Tz zt^O38N4gu)E&f!n^eJjj8QSXmO_Qc;o_j-A>a1?ole?WE@G_Zy8h!64edzlDpe?t6 zImwLYN*he3yQw?`o*UTBd=N9}B$A*DL)R`A0w!(>R9zn0d zu5ITL!uO%T1ILvpHQKJLPc7Ij5LZBF6$WLJDN0 z(|52X(T&MnTW8z&xnskQRX{CwZ7z51|DSTFDBDN+yE?>XRvF!n8>}vh9scU%bY$kZ zt}Xr=IKpdNGNBHuWmcxf)(7qiH1<@1`LprE&W#^C3jb*ApKA>p{NEJ&ZzXUN57EHw znM^mh)%f>gkNI9)lhrM13E$s~+rNzOAH|9Jiygf1F>He;I2g>qZ*Qj5Isor#6Ek(ImK zXxA)mRx1{tMZ|M@L%6zjT}S8rd0=bpI-jYWl}XyQ($D&9%Y81VzJXjLgjeLoq|6N9 zzg1R$T^vw?7O3Cd3f5Zeh3hHIfwTz)VkoC?ulJbB`of<8!tgxwBzz>-YEL%>(n6M; z2D=>OeQkLOHo%x$+OL+vfzH{Mshk&G;ih6(|MM&Ak%>L}_fL}_x{XBu`X5HTnS6Kx zAKV+qKDH*^fmO(dCt?m3^I-{CUW(B^91=x7WbvRdS6Xoz*GAvAJCf(i;iS-7F+;uA%I~0*sLn>=9dn z-TCTj9vEc1=^nC55!zEeX0&443tNmZ`UZQ0n1f%Fj6WJ_=T6H!pC5zvFR`4kkNi*a z_XTYH5siUu(GxC;7db1&#*$2Lj_-r1H66tx!?*IaEG4 z7zA<6q#SQi=d_F>GUjz^r6R_0?8D5vu~BdczK43~yX008htaFc-aXghO3zV>(pwn8 zq4=FMp9?|hSBzCdP^ z7(RE0sx3 za=0Ch+t7<}AGLn0YTX#r3t0tg(vA;T7y5FI#S2H|Li=S!7;cyugRErk4bAqlhh?bXG+URR>C!2EH7TI;6R2349&#bNr_fH3CNl%XNFmr4gGZ5B zA$o#fQ{$Fk@wJzp0oCLi-=}gkZOSC=I#C?%F_58d<}P>_qcanK>!Q!LIF<7y6iy%u zb9lMNDwpB=?}#{7rm__=0lmL!T(nKyv1YW@I

#e}RYwxu-|`;V2Vl4a%o**8TX_ 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 -#J$a8 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 Y61g)sCAFgJ>o@GoX&LEekIr8I3!?hepa1{> diff --git a/src/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll b/src/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll index f2955edfecb7c1c92c8c9bc628b09f2fd752609a..39fd1311f2660966f58a43b6e2e581064bd9febb 100644 GIT binary patch delta 9936 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 K7X0u=KK~C><~d*h delta 8518 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

-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%0AX@r(544k=Z|T`EBt6uKS#R`al&EKiF#Tw)O2d zFNW};kK5UgwY_c0Iym~pV^_0Y`2Oc3dk5wRS1j|MaN9r5YyOt#=@quiAKQvDAC5ov z?mPDQwA0t7co~o0vS*K%gnR$=pyrX-J~!X`)mmLQMJjm|`uadxhjYb+OwBF9i%Q>} z-|{wQ;?U`<2fdo;zAVF}-+JO{QqH%FhmXGZ=t0u{5%I+}mhZOr?sZGJS2)G({JDo8 z-?bbz;z5u3h1x$4t8Jw%p1!Vg$^Fe%-7g0Un%}xK zr>*2SRp`7r2wk1&a#3JzX&!FG<>C64Je2Rj>oGLLnwe#2nlUJ2 zXnOCcAWMM5+^0>y9s|>}3~gGsHZ*A6yr!i_Omsv{N`ttFdeI5VQGpf{v18TV{HCYw z5v|j0!!vrNFU?bqwB(6`EqMaBr7V0aWz^N-jZ*2fi$^=6v&zlnS^@tlE9vPhZ%b5k zRDvZgHld?V79DGein2J_|EGcTTmCZJ`58j-@U3ZSzt=S-$z`&S`XL=JHM(B=jHz*A zfcbG`_NI{2t&CawZ?o(0iu}y_kL^+N0e}6pH(9+p zrxCkv+?KM;hkG~AUKseDtztpBq`cdsdyBfx3-8o<*N>|PR_uM%|AGD7!?IqwxwF;{ ztW(|2{E&8wZ&>oQYTomAwG?@?ZzrC3;(6VF?e5zs+|S;ozv0gOMkmik?Y`cc-PdQ- z$Jm!EkL?}Xs7;Ec`=**ZU+gN;#E-Q6)}?sDaF zp1=0oL$hqm)T3#Meblq3L}}WIo8|0r>(-!H{Gukdm*jtY;qi{CCe&o)g~!vX@11pZ z+T{|zI_QUst&A2-0`Stkb!peuX(+?KDIdy2* z!D>M*My;B%>1s}c4zt>Z&+akuQg`2a`{U;H;THD#ZF03;1=9o9P28gmY-Ft19Q$r| zy*oa2AN-OyRMVf0wkM9$W>p*;IPFHYCB8%3H|-<{m{_sBbl`{|htFL*C}GYA-L;Im z1)3@9zh#T3?^2p4?@94|w6t5$%GND>y7d3hbI;6*^<*%-w~N@gCmBvy^vUUN#4i4&Bw$QU-Vp@@ar!j+m}w*pt6s79X2Wc zRD(_rYR4=nvp0Kuxpl8SJ6=rp-CeNgm9E3n;3G9&Ki+r!uV!P5#ve*`=_r`}!(rR& ztIsEwYECUYUF5+(8kUjf-}SQOzE9MW&Zej#H_ixFHLh92*E+XIRjfTUSk?8-x2w}b z+BbS*{`l;F&~?3B5x;L6BOm*0!1wZJ`|tX;s5|c6`6hQhOrP%Wx#r4?CnXW<7hRe!9LTRZ zDDzSGk+k4`oZ97XamwovA}w>llE);H^D+;kW&iKDT7Kq74^7H)KjWlcJ`GPUn_72Y zjdl&~j~dDN-5+Pd{|iHm06ma~lv?~f+&&!~?6FvH1XBhhiwJ;W zBr}|ZD$F7wj%3*#XP4k_?BJKp%|$abDdP^6%ij1eo=|dUSp1u9#yJK{zgd1M>*PQF zu&70ik?{$ec6Z;tA^lu6eoR#U-+=<_X14~zfBZp}65q_+eB$XBOV(vw>N0dcn;@D_Q^YHZJu`kDC!*_(8X{ZhN1t_0O~w{LH`DIlAI>c(*q%J!=%z75|>}ao-OY zdOaK8uJzupM$I4JwfgaywehJI)k^;gEYvKvyN+<(3W^Wf063H^(A zG&-O=-M3TGgz62im31@NhHmY2p&*`He`?^C26b+0)Yi~mLkHe(cx7XTwCL*9?JuU3 z#Z5TBRJG>B%sVZ#fqez}Z8vPG=lA0?>GUIp!?hbfTKzozfn>{^+K2XR(+2b(+%Eof z*@QRit#@D9eIHdG-tRl7?X%MrM=SZPmOC0fcs$boZv9+I=^xwPZGPLqW~sYwXDr@g zQ}6JdR_E7m=iI9--qyz_%XYQDarSxkU8$nM;qK+#CgfYY4VbZL(!-g-+uMILxcQR| zLG8V1Crb)bBUXgyms`JUJaMRzTKJ?do${eOt9wQm3b diff --git a/src/lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll b/src/lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll index a617d778fb2a1e20941818f8484c15f428d094de..8db4ae9570f69eeba9bdfd660013dd0a466b61b9 100644 GIT binary patch delta 3096 zcmZWrc|4SB8-8aDLbC7s8rfbmwjpbWRAef; z#We6nI4l;8#u9W5kp=|39*9F@K^ztZBE1PXGy#S4#_J-DKokI|zyN6MwE``?>ku1R zuaGm`tSSCLs>0!ZIxc^vlpefvqNO8{%gb2MU584JR((X3ei3WJU6fTT0SGhrUX`^@ ztWB?CV5%9V+qvx@9(6qt?gl?B%XFIMf4C*Vhr?SPJ7rlawLC06&=G%B-szbUULtLh z8`l{?xzj+iejS~d9F9mHv{dp}mNnoy4zNz$qR1CWlaArP$yGhtol|5L-L*AjIGMZx zCDW7Te~F6izeHAcKwAkSQDf?8cQW79bDB{v2F_;*Abz$2ejzQZFCNaW4`>4*O=&<3 z?((+_XaIP?2*3eYmZ4dO1qgsHUy?PkT1+!ehy6AuAdDmuVrp(4hqvGQLu# zZ~AGUz;b4N3j98GOwYkBM#_6`w^)6Gi~kAoK#1F$!ebAIE#j8a+a%0)7N}=AB?j4X zvST~cfJ(Z}j=tUM{(X$SHx8W$^pAtSJUM~4%?q8)t;T2UO@r0`(6x{DWS*~$zFRdU z%dJ(IQVLs$7;KrY?6WG^2uyMIKeK0yHTe;AuwztTNx&PBCQF&?o1!2Iz(Wzb!<;Z#B2i+X6LpTRvdfMnty0{P$MCyTPq&^bV z(?ue+QHFYu`Qih(B?u)jQIO=47$0*|{L*wZCM(Y}1SiG8!x28k}%OB*wtA>XcY^;-&= z0}I?=J)X;2NrddQyiMnsNEiq@-95j0U7lOsZFdO1JidI$`XW^}Nk(?CDhx0W^#R^) zX)bA%U1FD6?lrErCU3RtJ%@62W_%qlm#l{S$;z1tbe;@oU+LWF+F)4rS7sM{u1jk* z6mOF8k_UFCNsQs-j!|6Ev+n$>TX1vRvn89wmD0fvG<3zxMqPS1WjpWwCihILQN??r zP2+I2oi?wF|3kakKv6c^PFVJFp@U&JuV*1u*L-ajN9Z?I*vYvyoJRX!#xhRuGc+f; zF~bT`jg_{3!K)@v`>tBy&8O=g8abZUF&5=R#2?C($a(*<^(R}~M;0Tgj7VYQ3mxji zA3ee=KHat>V0R-ey-@~RSWV{Q+=h0X>eyBscxhg zKX>Q8>j&TUNQA0+7aAH{78ee>$6hh$)Z;f@x@(d>Ff2!fEltt(eKv-XV}d^D6#f;# zGw1BRyXVn6w#zYo8CUm+dEJMCKwq5vR9>`s{+ssIF1w5bfeN351+Bl>PAGk zhO!xd`%*qqp=FaiIWkf8r?GGvG0y1Rg$jFv0Joly6MS6WI-~9UhRxP=83`57S#d+I ziw9kd4Z)!`*i@~i1|^VqBWm@z_}R9g#6b<}=%#x2YiD_wkE;g*p-0_WZ*&E&d?yd3vCgYZpRY zK(FBT_*RNPZCP$XO3~N)?yJXl@t&8xn7VM-%-+UW<2@gErOScxI!>>8;@98Dq6NAD zU@k9R*G%?Gl83#G1G)I4XYR(KGhtls&+Y|vOkZ#i6tt>Z;ZXZ_Ps5@{al~onP~rC$ z{jf8b!4UmX57Cx{#OH1rqXk6M7caIu2q|0htGy-YTj-VdTX_x5saMU2_LS4oR#yT) z-8o6gJfd{xH3=c$t3_=Hq%3(jhP-|vi}Il`Z?5bQWw&5Pp0dM22TKH{G9rS~hc3??umpisF3#jx1dy3JoIN|0@{$BS6=; zq!d`Ga2Nn`vMxBB*Y}qrLivk!*P`vJZWcf!F*n zleD0n?rJ}WI9K@!ePn;v$bi;Kt+Un125U}&-!?PEA}YXqv9{oER(IC8V+cw(Jp@fjp-iICz?^IHlD^Cz7SSelVSFyF~8GP zCTlLu@Y&%n6M6Mko!E{1ZsK0+*gAR03#D^FebJf!Qt90)1J5raZIf^XbeY7soR9`51Jn%sR1w4ehIb&FTlM27 zsH6Aie?xnfMTM=KpNYm*U6EW|AJQVdm}*_~IVXQ$d!~L(d?&Ti*vCu5pt^&cEf?2h zKK)SgohfbQe)v(eDqW%GL6oUbB4(qp+tf_M;#ynpfC_s1;Z#Oe%G|3Z$NZV|voJyY zcR|p;Gcl>nPn9wwSId@WcIvbM5#Ldra<;Acc`DSh%IzXMZUd?qw$IM--qsmx9UYK>JaDRDX9bg!B1 zjH;q(R?-Ted%W2ZOy&0e<4V*Bt~_UAF?lHIJ*iU_z4E~c*JWXIxJ~mDe^V9H|Mz>f z0V~1ILQjcbGDI{tNQ+V%$^3S29jg;ZImI6LEAvKrF3a!fSX6F;C$itUq^fZ+f`@y% zy7E#J?dsEhE3j6PhCatSUU9X2aAGn5)9>yqo#1aWaqHdPH;vB%`iKiNKlX@uu_tsD exOE2+mM)H^2-_9w${?RhpC}>li+?Y#0Pr8wWt_SI delta 3096 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 diff --git a/src/lib/netstandard2.0/Microsoft.Identity.Client.dll b/src/lib/netstandard2.0/Microsoft.Identity.Client.dll index d4f426f5834870c49a59547432019aa7b5f807df..880b889c5d98615bfebbdd69f64e98b17362e28f 100644 GIT binary patch literal 1584568 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 z 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 literal 1581488 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

sLOn(21 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%0Ah#)>;%wvM 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

!HABjt7=NxM9Dn@Nb6hH=i86HE^ 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 S!;zU=3j|>Sv9?TA-v}90&0To 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

D1W7k(mNAm{a(}Hl0SVMPMx2It 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

TNp`OaA}}+7~~6!jBv>8wF-YZD*J4#%}tsU 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 N`x#TOtb#>9{|_K+4-^0Z diff --git a/src/lib/netstandard2.0/System.Buffers.dll b/src/lib/netstandard2.0/System.Buffers.dll index c517a3b62cc7e190fb347c00a960311a9349b53c..e3ab66abf6b54ac8802f6e1c4aa0271b042e09f8 100644 GIT binary patch delta 4079 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 G*#84h7Mq;_ delta 16188 zcmbt*d3=o5_y4`mGy6=InMgu56Om+OGg(9uu|yJtSQCOGvP=k(A(OF1OcHzT>nLjH zW2dcFX|=Yt6s0~@N-2t>T5Zuqi{Ja+XA;`)=kxpH`yH=2_iXpvbI(2Z-t){8@BXFO z^N=o>nbUUZJ8OvRbB#1JYN?r!E?}r6=AvO}jri8!ONb}O1wv$;e9@9aV1WPSezNd# zXmne2>&aAV2svJ_%jiCY>*wRivx*Dmi2o)Oa*#1SNz zdz=Z}f)Wo=gSRKR~S#?u15rp`|=t@2{7=7kd zWdu8A8e>#30~#N#!az;ItPiBk&_-!1;K68H2=IyZU81v$qyr(g=7cyjI+a28%o|=& zz04L0H8-J(jj9%^*r?VphFh^p8bS5UtC|gY)khtrP+LtvzrLzbMky4g77VYqA3-SG z5y$`%GKpy59&jI0F;l|XBw(2!VtT=0!n8D)ZzLLpD6>YPy{Z&U(aazWd9u!KMB_`8 z%#goXAV##vBE9hUzSbCY(Khr|M*Op{7y7c4lB2JIn2;KpY6lWrV<19xEN{i?INr*t zkpdlAK{a9T+mQX;WbiJtIZvnaZc;ET0qT2d}Y zAxT&UTiXLfdDSm`XtWp>DK~XsdW~GkQlI=>lEx)G`K82hNSWhWD=$(q;YE^^aSvZO z`1f3{V*BLfjAu@C1kblWMrMd$N(Z!N0EGQBP1#hUuwV|BXD@9Lmm@*M)aivIo$4L= z?_&~7G$!hw zX)6eI)Q3-2A3i}e8R3{9v-W4bmI)^0s)A1`G}=e_kCTbGdX|Mv$_=iLGtNIWy6Fq{ zf9{9fSd&gSil5D9N5>h(C%uc4&y#2R4u%yRsa7)J-NU+6Yz~fr00QdiQlcZm4Y?A||MzB5gqR)uFKAOltQOvHNrb6n$ zGGavkz6#&|8ih1-qKUici|k_k+oC^qvmSk;Jp|JjC^z)qzyhlkrRDXJ*4J7A4at_n zwIFfFrA(EoO`HJ@)us))tk|sNtyqnl4799zEN{K5$MJTOq-Mg6&WcS&y;N+Tf`d3l zkPitEpdO1wqg6z?DWzIkr{uLXQABk^@**5ii3hZf2k@~@0Q8a>WTuHg+^`l^XrogF zA3T#VgMzwx5^JQ27Zm`m`^c+9get~$6DG0dnKw>uDtNoPz{q59uR62}pOy-xRJvbn z;w2ZFK9g*6V|uyC!PLC|&NkJ6>8e(n65Aqn53!FsS-6HYX@P+fC1*raEz`sjnB~L` zyVRRUfyE3{L`WS7LvkIu3O?0nG)dbTK8XdFucNYlyH+tNUre1)#nwP2rICv7SfPsb zuucK^|A&i>jBrh54O=CL#(;QfSiHsxRg8^zvF4?C@fDWhC2%(oCB59YKX+K-FgMx8 zXx|af4G5!x#fy){Q$eqIDU2`J2xBmh4zEsF_|9Ex2p>x!7QV$FPH)jJ+lP=4EZDnf zvyssuIh7Tq<-?$ZGZ_~s$~+R%H-{u3_7Ibh&V92o&}M*c?6x>;MwlZLq%Xd#?T>FS ze6eK-Cd>Id&|-D?V>i>ot-yaHz{X<7D|-UtG+S!Ki#-bB^Rb%An5A!&$8`#_QN`d0 z#Vnl%`9sI}(>VW#L*b`ZklCu&H42iYWH6QE!#S?tFhqi!zd*rsrpg)YqPPR2d*saY z1(h0{qwWl96b$M-IFvD1EMqz=J=AIq(d)9b8q(H1ORFG%svRG|moSYQP9(~i>c13B zb%y#YH+S+KVVuY64{(fhB{SR&qyiiRX~p>puD_R?ZVb4F+(Zx*q`j8)TBK!me#DG5 zWRjK*Igm`&XvlC3tReF}7_9Kf!bT%!m8^rOhQaH69<@5=&_&MK%?GREFbNY-kY*Ub zKz?##a0KTMkTLySKn+=^oD3Z^pZ6Foi<6E!)JMnqKH*XM36_0G3rq>yn2@&_z-nU6 z@I13xe#9-SftrkXFbbIjSsvCg3%HC^?_v$Ju;MHSJc(R42TsTk0Y;^gIqJTklw=*~ z08)mlS%>4CQ7RYZg^dQ)_PR1R1B5=L7DE_8^~FUVfI&S;Pj`t5B^0tFsxr9d3D21` zC*|uw=}9D~?r_SBwB%GX1(SJ`cutL0G0LB`L;==lBo%$!Q?&lcnmSw zo$cicwH7XvP#8v)<;SmU6Sl+!YZbHy6Wr6oG(i5u@WN_;8{COh!sS1^eY zp2{e>1Ne9Rb*|&hr4A0KfkVj?%HUJ3{|Se!MH%cYP5_5m4pkgp;Jv=!@F3SbqL#@i+2}rB zpyZIp8XD{%zo}Tbsu3IovB^WJf}GZR0xoy+1{5@bfMYblh!Z87MV7(a1qEq~Apc#T z>9AfU&|$qOsl{ZZUcHQ1D>A+DAZ$rW`ZrKb`{kZzfiyiToBqLk3UtxC~3MTkWAtSUmFv-7MR4?@-qH>U=W|B~#3q&=U z!>Q@y7ODa*=@7zXw`s9lfxGk?qi8M3#yquTcyozr$0??VV^=;|ezgA91yv?*DaXF! zA13n^JQ}Dnd8XjW9va!_W4WKZT`-VS%qW?zqV6ejFY<*%@vwQ3>kU+U$bRC~$KoyTFYPAxCPQ7+WceU@V=|gk%gAK;2)RFb)Iizgfn=s5jCEXwj+5n0$*u-! zmb@AHmQxGKO>v1ljHq#+5yGg|@^F&jqRxq1K)uH(3K`ucH<4c(sQ2U%y6SuPi!_>KOB7}wPNK;xE?I~?MTj9q4Khy> zLn>Ud-^GixC7I}=ZmAhn=c0a4d*W!C{ZcwT1FLjJ1Z#8uE zMqPZuB_o~}X#)A&MMY3XedVI=${2OsMLm>xk_2+kMfrMMq^-y=pfLaGs%9RZxYPc0 z3Eg2Pk%%~BnJfV3ULw)CsP3AJv^8nuqVhGKI2!{c3UTrzNhGR)Iw?;k9UG`~@-`&D zf%;0`j@TLH;Jfm=yaQPz2~{2B7il_K;i6*Q?#k22dKdLnmLjB+Z7ym&W|&UibW!s- zb-+dKhNJ1^h>JQ1N7KnkiGrg)$}`9%PC2Hl*btfIMuU)|7Sctq+25u=iIj9A{asYF zr;pf~{LZObvdo?0<-}gxK1?%6^GKdW&blbJVY`w+QA{?Su$|tOta4H86zE3oNR)%H zeczp=Ml;px^tOir?^nz*67`8J0aOPU#bmum87?@c$z-fp!XXAdW$0c*Wz{KA<68|F35lSR|hKsJ@C2K#cUU1%5dwSMe zc!6`@VBr_s|1NO@ix253_w=kc>M3V~N$@||?p6Ovdz?6O_D+yP*UYNFse9 z{Tb(PgR0aamz!WvAZ=d4r@^R5)^O89ai-QwCH!TnWM`vN@dq z+(R;OWgG?G9%bblgl(yHw1>w@=(B4zf!~9v{8CLI>=sPr8?84jlZ!N)R}tB~ipb{m zKsK);vU!csn||V9qP^)9wIi7xrVreE(Gz@lH6SHwdP$o{zal3!gXrh9x#v)tOFDW~ zQ3~lCdY$f&t)!{kq3ir=PGFTB4qH|U+@;YTD*?R#oAVglB^_m3aXC5Y8*~D_tvU`k z+2b6or4KwVqW+@^>aXb_K3BECVo-^0xqz$&hyveN*h>6y?NGsrGwv|G>E2$@ap@#3 zjUwzWpTyxpa#_(&xJ#b8ucUh6s8}E{{o#PEJ*}|DuK846ZKd+c%h5zg_jG{8YO+*b zlTGEt)l^<+1#^c|`B}#zaY)D|nd&ou9XS75R;Pi(#0)0cpKSW*`$doCc`E+dT#s zkZpiV$Zkj-OF3&f*$dVxvLA3Q`2cVuISRN1FS%7@2RRM6hnxf4OD+JuOTGqtpIiq# zL~a8fBi{oaCqDst)5m~;lnoXN7>egd70Q$d;_eoM^2}cmL%c|HKz|2GM-xJ_IXtY4 z!P86|bqpRrrU14fs{zx=cEE1r8^9bAqKP4|kOaUYG8}LunFMGfO8~3LIZZqUYpP90 zxw%c2juT^>EE8|9-Q_u)U&Q%EoL@v{6UP#*jSHr5!4xi-0>OKDPGN>NaQ+6)-vIs% z?M9e;qT2+iO8yqtIf|#JQ0-AZ%n8y*kh}ex^S|Z%Z@K0}&Y{$gRBJ`b^wkvh9a=9m zDtQQJ#dAEKG85^Xla3B*T{@jey>(fvgEoij7^<~#ehpnru4rm0 zi^LSJGllES;yUZNj$;ECY~X?obT%2MJIn<~IsYi<9|gZgcbyyhmh->m{BJp*3TyyT zXa?s*)X*xqD9k3ybite-!ucVb9|HbCT^jJF+B7arcYt+MSHOuP;Vl@d<>Fe-nS#zL z`8seywd*)%1BZt=Jk0rrIewkPZ#kqQb10a@G!6?mtmSYjc1Ba}I*uO}9ZdBYXIE%bIiO_ZLKTfwTF~!uxlI=6~m1jcHnTRiW#lpa4m<2IK0LoQS%`=9LnKM zH5+)ShS{lc!Nnv}dq}e#c8He2p=2sKOYV^;q@9B#`HNj1c5Icw& zVn1=5ctTX-EYlDHzmACbO+IuDOWA z!(4|+1-K`|T^~I43M3SiK=9}WXoAB6PCz%nC`>`XGnJnG{t|;mAZ8qh0xB18%r_2D z!2RwE*b0>mYBv0KL-DBL4?Kwk0#61MNDBV?gyNKJ3Otnr18)l`kaQ9Pm;na_6!YPL zolqOGAMqmryI^QavH($-cEeMdH`xXyZ=CZjFz7DezBuh$z*IDhcO>131@+APs0%9T zxAafEQPKzr!bah-kT1$=SlK3hSS!l5@N(S6Li0r2$A1(>H3v=nj>dUesI@_}=TC{n z6wfgpel%l>lF=uk5BuSk^Iqu9K()(W9Vp?n62Wc+hw&l-A9q|qthcADHSm@o{ESbq z08$&}Y71jrNV2PK>uS?oZD+J2iJ49yqiHAdjCRDg6R8r8lIgbV<{-^Szb1wyJeKMV#3f^l2u+AA4gJ4 z+qKHiN1JXPJt5bcW}8r6)UG%`KQ{hOL-;p2lig3hFL1}8QW4}>r`4^Y8!4T zCixZrU}V`cEG4Do5HaVk5`a4ZNG?4amcJ`rNoXve{6X$kcaL@bFFmGnOyTxWJ7-k`( zTy2)~NfR34tnj1F<(XqK2j>bun(R#Rr+)Ihg3`*KPOCqLyX;R3o!0|ske}p}g`{H= zl@^lPE;c{kR>{zP>w{Y?8SJwvoiyy9z$EoIzDi-!Mdnk+j%3G>rQ9k`e}1Ed`^9 zO=@x`*eWffNM^Zxl(Y;;Gt${o$qN#sh=ALDY-2&%2+DprjWds5I zJ0rDSWqy94ONtI1?Ik79OShJnln%2a(^$09#$m0&g*?sqpe0RnrkkmkHm#_#bZkK- zUT4NQgX3tFGdGTg=zCbpd)W)iN{hN%Du-K(ZN&Lm9QAXW;%Q@_J{FtRUQuMRkqk?r zeb_L(L&DB--b$duoV};fKn>|(M;r^wES;RHL^{}8T8hl^2%`+nnw<+$sGkguSe(yNXrMfE zd}$?d2B*?SIW}ZfuC)*Hi?DEJmho-NhwNjuR@T!@mSHWjvqU7_3(D;UWz1Y9AA~R? zT}mP0``GzWdm7cayLGIkhh=;v3t*puak&gltEeb&uFIfdZPIMgESc1WSx4t*j)C3M z$_XTM)M!BV@$F8mq!@QZ8Quj{kWy0V^v_xHK$%g1LoV*+hC*toD)Q}=+0;_Vlc~;)KCC^04P!6Fch!>1VIs?1e2+V3WM2Q zDGw054ZTp;X7;2{J#~5mA6-0D*4+wxXP>#52Jn*L=-ujxkG>8N`&|M{J5JJw8 zdlJ~H`2pQI?M2jx4(G^aN+Cc%e?EB?8>;|CnZd5Fd8#6UV5kM|rW6e|2lX|FdGyr~ z*BtcJ*SsM&Vm^n_*&Xj4;F3Fh#PaBs4v`^22nTqnX9L)<2o`h8j*`pW-Cb=IuzE~ip%e@W2D^rchAi$T-kS&k20I!DLW9JD z|2)0i4Q2!*K!IPW0$qXa&q9gi4)oSDRIQ|*5{8H|hNuXXdn!ehi_60%cgJ50attAc z9ZX!M!BO11ds=Tu`8zH`tN$*?8B4kH%Fyf?!)$ z&Q5|rxyH4{0}N)MUW8>GHXzc$%#R8N1%utw$P+Gri|vM*{cZ@2!NM~Mlm_dDltCss z%t&gW%pRCLH-Qo{fTfh(U`BHDj5FBP$QFhoP4P$K2D=XWI6N4G^^kDbK{< zxG*ddk1dxz+hAu4q|bJDhrgI6CZsoION+gb%2hHG_8J3b{EmVQH4%44*#Y#~`!-FW zDp@*w(8k7?W8xBGTE(03Co=Jr#4v_AGO47bpmlNUlDNde!nmSVmiXd=;*!=0g>eN1 z$wkS93=}8FnUkCktLZpd8YQU>#fLf$*Po?~myZ=gV8k`nv&fyVYOXPdsVnz?g9(Q`SW z-FvY)jlg$D3BFyJMEWq_@yZ{MSA_Ts!#9gKAIzq~o^PeSp?Bm&cUaRj#Z7}8=$TEhzC z7vNtqq{*P_v0_khu$SbVzlg?C^S;B2Xa~B`tWpn^{wvLr*8B8J=mW5nP5FPZ5%9QN z7rs%Uj+owM`fqMjDXgsvUkcVjXVYc0kMWhTk7bAEzh+uB=bYp0*Cn~{^ttY_`fayS zrDKb>H~-|&%6$u$(MfK)ChN>~O(qeH?PbEN zvyW^)P!QQop3*kbKszgje-pjj8L^4xIl@W?Zr;%1kj{H#w|)Z-9!vYaU&m#&olCxZ zzAZFA$7}9rzoolm_qqfYelRmsKjrqktTlTdSIYXSw}0e36SMbv4`<{4KB>_Otwq3EV&NtFr z=NqojL@KC^*0mNz8e8Y<3!c~Cmc~~G7IE&`Onv?OE3~df!|5qoTSq&~>S(&Tj<$DR z-%Oizv!2UH8~>)(ChOVa(6qLnx9Qsb$qwVOQ!PggN`AB3tjj7vVX1oR#COa{h)(F3WR6ZuPLFr~`7as~Qf01FhMVi;9&1IsaS*)NU(no| zKjP5CwtMkoF!nIL8eS*@^AmAF%e5`$rGlYTwwD9=Si%?a-b-fA?P7ZBfdQK})r9_TrG{OaB~Jw)D?F zb$3Q(_1o6-%B8NU;`1Bdb$4uAG9h5b%AXV84*mV}oP^z1H*Tm}bue@4bD`DT0{3fg z-2c(7sQu3$+rR8=`eNl5$8V;7@=N-H!y~c+LcV;y*|z@Ei2l!?p0D%&`KMo33|?B8 zcWbBJ!aLEcaln%AM+%|@+~d)?;JY6ZgxANC}gis`G70!5=J_!Oe@#y z9a7h0Mu6>ci)SgB)vBG*zh8NfXZYjDk%?2=ZO?jS6dvT=UR9Ppe1FLHdC$+jJx|^& z_EyNME8%g&{7!g>uZW+Xw70-N;KROqn)ix1X`IvX7ul8NzYTWY-%cAh`sVqX8Sizs z#WtIic}uO5Cy&?7*tW0n4w^z8@lTF;O`Fqp;JCvZJ=YA6^4~o<`AU57g2zG18pEO` ze~#O<(>HftvlVYz+$*Nn^eTKsNEvj;{BZc-^}TMG&E2Alv$Gd|+4olCFXc&tnz|>= zNwa-(_Ti+<=TGbVciUPMlNxgS+2z2ciF8(LPOt92bm>6f%VQcH%A5Dy4|lRAtH*~7_&~R$P2ASwC-3#$zH-C$O^zpJ)#amt zkA_%Yshs$VdGgMP=3f}s&D=U_sWEQPVG{jjuzkGJ5VY43F}>omUU_HiV+;|;ejHyu z`fJ^#^MxscRQI!ja+a6dPYxRty#MCPIYi@7Cr1H^Vwq$`=}b zx;EYIo41M{JylfR{pI++yD6If7@Jv}jPIyV7;GBx`?Nn4gL*Ie@^s0??K`Hd z?-}!acO6bT+G@(U&oVZCws5w_ zd0`)22m0edql>ge{SKGlfZI`)+jxVmQCYyJCZjZ`}-cca_ z^7`gp841Y~qVBJFKkiNU&u0Er+NkjB7G1kJmW@%)y3{-of75e**wsFdPaL?Qp5N); zmRXY(p1;L>QT-8_q4HX%OZi}d-Q;Y3fG+a*=hg7h0otM9>JM3?f2@2MPi}Ek8HzKjf?F zcl6^{{xtutFyqk|QNdPk<>MX)e=yfBcV5~@r#SZl)L9T zj3~V1T>Lv`^N-N&8<*?~?tI8Q zU0yIXJYZgzZGBUUT5pX}{+4HMa(~LOE$fVVrPgyZi>og?`l;0 zSI_MIw0KKtq-C|HPs>iP=7vwZy5tC5-nMP^;9mW&ew46bUP|ncnRmDCtvS6`KlOCZ z*yb@CMxQ!yW6bU|4_nl7O{+V_8uSUxZ-ha%ix^hcn3|jw*=cuon1{b}t_UfZW`8}PD z1`9v_aq6`b3)s+OpN9_Y!BM<*yAW*wD=T z=d+u~f2aNRSg&!0&HcaAA0KD^{=Hw5kMx;6XZr2OA2wgTHFWAaZQ>rkQ(f1Y%wH6K zS^Dmsj|1L5C~I=z^p6#H2lW18eAN64k9`xnRXvM59G-Olp#15I%J;*C4J}U(_fM#M bl<3i=!z*rvFw3vKKWJ_45%+LV%)I{x45ILM diff --git a/src/lib/netstandard2.0/System.Memory.Data.dll b/src/lib/netstandard2.0/System.Memory.Data.dll index 6f2a3e0ad07f3da4c6be0fff96acfdbe69d06af1..ed4f7b3998135101186ba0309a25397c33b67dfb 100644 GIT binary patch literal 29800 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 E2hVL04*&oF delta 10390 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 Xl(w3Jq@@$)PV0I3INO^1&j|ky<^SuU diff --git a/src/lib/netstandard2.0/System.Memory.dll b/src/lib/netstandard2.0/System.Memory.dll index bdfc501e9647719549793297acb072d33067d4e5..cce60a028f52c4a82ade22d8e950bfb3a770a521 100644 GIT binary patch delta 7046 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 Ye!H3!cHyGNU4IgzSE{G0LMMg)2g(xNa{vGU delta 7938 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 diff --git a/src/lib/netstandard2.0/System.Text.Json.dll b/src/lib/netstandard2.0/System.Text.Json.dll index fe2154a3bf3a7658f106424bf00f672620b14e67..c1df9f92f2ca38ab82ee9d5ba3396688d5d84019 100644 GIT binary patch literal 510728 zcmdqK3!GdL5U3J-YHT=KdQ+4~^?&(Pa z8}|4A{qjlAty^`f>eQ)Ir%s(ZRrjndueBV@vRwS0eA2Q$jwk=ElfMW5b0d;F3ZLw- zK9c;#;*YnT`HjV!pTBc@=$fh86;qd9HT1koufDqW!lBD{3{72k_0Z0%hn{uL`9oLL zw(l5eZ}*p(qR&0evd(OCtYc~y|2(MeF>A?Cs%@oZy)JH9X&w8k4%q9_N1j$~7b)ffZ%NjK4g|1b7CfK*-*7t!1 z>4X9uN`5H->D$tte5~*L2Rf6}XQRZdn{oYI%Ff1eS+6wI9m^O5vhhsZi#visyl*0v z0UlW|<8{Y0Cf`QYIaXc6*zk*&lfYe;U06B6zvHW7_CkgpDDG-b@$AA;I!X7HZ`yA= z-InS^i%lD+5RWkny5v&1bgsR0GN^+-Iv4ewp)g>*G|3gdwkML82%Se3cecfc^AjoQ z#N@zbiAx^bMX@y<4N9_e^bLIA5Ssq1>1gPaH2atGR^ep~t_Mjlc*)a3&?cEO6S z;MLYWRg{uUo96UC`N5P+nl;v3KP?m@K)h1NC zsCpFPul5&PdlA3)-Y31Cg|*u*OL>KLyC&1|#J1e7Q9D=67i}SpAf;P#fv)hllwCM^ za`1q|7UqkQSYQyuo^r!;9LpWz*qJ^b)fNZ#f*sxB;7Z$CgnA(fGAa+e%C=qX@zoLp z?HZ(>@9%e(@0Y%7L)TbV%IfI1oFTAa7I~3H^4hA8w6s0-9OS9QP>xr0ig)WW`=?Ov zHGQ{&iWvX)-NSk3Zgm0CupMn(2E6nU=H+fe=N)q zQvzaMjutu8_I^riSS zd?OQzBU9+=Yoxaju0+BppdNomB>cHZxW6rg*%1l-a<%o{fax7YRQc31^Za{7I4Ub&>E} zBjK+^!as?G{~QVT`eB)sNO(ged}$;+6A6Dd68>`}d_pQLb0!jgLnM4pB>aa+xR4I> zJ~tA+BNF~tB>e42_{m6kVS89kH4=VRB>e42cxgunKN$(nM#A5Sgj1a%JZ8drpWYb> z|1c8n?+RfqjD+753I9A2{&OVUp9%Ax9|^xT68>f++}Rz%Ulj>|HWL0rBz#gfgugBl z{_9BiCy{V}PYAyv65bFAZ;OOq5()oZB>ZS3d_r$n=2emKyCdPpBjFXf5PoMQd`~3o z9BH`~w!r28O{EA5U1(EOvBH_m);Z+O6ythWe{}>6!7lkm>k?^M@;h#ssM;Ai) z^CRIGMZ#~7gufjL|2Y!w9}3GkArihJ68=Oa{O3scq{U(0=}7nuk??(y@Dq{n;F2)! zUq-^8j)eaZ373|J@Xv{aZ;FH;sE463t)HY2Hc2Jct{xWy&5Gb;fkKr7b~5(tZh_8l#juP7F( zrdynWRn0Au$>8cY=aKD2Z&Uvv)iGLS1a09?@m;BsA+t!%8KXVKxlots5B`^ER@6eqVb z-7|F|hSfCs*WYbBw}LK%4WO6VGt8N@XP8rA;a*bcbHCV>fYokEp{r>d5zyjto%6Px z#Z!WiPMM_bz_GCYq8%pFSOLr7dKFAkNB56TZUqp1QHZG25R~dnu4)g$3S8pbx*lgj zxAtHew< zgUWr!Q|M$rpc6Gd%&G)0Kw_qNZh?ey;Y(=T92M#^xmMm_u$Q`&EoIuOUbCY*_V;k&|!Q< zPx4hkq?Q!c)O)5WY{a2dPk6Q*;sc>m#olYU%ecEV67rCB_p6UY3AwsQJV%HPaVxp!dy0e6B~xu zv+A*nY~fvYWeHH=qGiHGb>>pz%)Et0rYO$^&{*BijUG|35qKJ8M4ieoOWDnNdp+pM zf5xac^q$3!Cs!?y;!RY@*s9FB73+YR3r+Ex)3h$|^vit3;gm_BCOli^drEjd#WGvf zr^gYxQvNx@Y}+7zhJN8#*65HL1=$=Sn8aw(!4T!CF(E5^bRLqw%QmH1Qi_%}ElUC4 zNY{!^)&opBIHpA+`QFr>kd3uhf_xqs>;&?_N9#q~ga|=4cwv|v`8nuOU zJ(|sU5#YM58*TMz8}Ra1ox!4ygNS3C+Q_#lnrD%(f_#qrjTE|7C(en7q0xnb8~JyO zot^yB$v$HAml3Vb!5`mNzd=1SgKd_ZGT{XXr@g6RG%kJ%_7vI@@>dLz>Mzi#z86nS ze-hb%XJKd*R`44RKzHFhZd*%HPZ#S^XQBK`W@?s1y5+r`ouGWe0LuCNRSXIIpKJi* zzpKtBK2xs&c*;5LXcU7<*?I_eRAjTDz*(2!2T^Ff2EV)Tn?~A)@O(L*pU3kd{CKMR-=7ix z2mFplcx(;+C^Q-~IVqX$w$*+-+q)h0eLO?Kl^SDyg>{DKN$;n|Y)0%vL~85_l&5w{ z@Lw1_R)Rlb5VqQSj{6w_^KL!jvy6Zh7e#!8!Q&!nf6a*FBN4YV;)F=VK1Q4riMWOl zYa$Wb7_k-+sjawLKix!Qn;faT%({T*YmGbPzt?hzD3mN8e-BM06~s;QIFM0@c-@+ zs?(mTY=&Jml$_CRYA@e+%z69Rb|AOfh-CF2eMW{(N=%=OV#rE z0Q4*|qJ{yW!=nmg8(lqt<`zd)i7(T)p%^U>deL5)OPpzpbI6+LWP&vA87|@zG!a>L z5ygfsI~5OsQd*R%1Deqb|+x&wGqEf_?0f8`s(?mvlV7zJlCt6_%35j{Trmq4Pi$B8clR0F;q-si&?b-q)| zT+Riz)VV{RId!=_I~1CQcu#=`TGu%`^(IbmMx9XL5wPcg8ctAa03y04z>UNY~+^Q}?*mi1n;7#-aJy_Rsaf{)Fe$kM- z*Q@C{F>h>&*{a^fm}qINW%p&=WeZBX1#){hUwbVcyEm%;B^h+huOsYw_1+K`0*up--RvbwVbff*PaCi zpdA`I?gcLJa%!L^MbW##DSfrS!b>`l8$Eu|m;~dwL=7bILBgpo00d<8K*p(uBs>sL z)G$%`caw?zRH-{IK$`E=+Zh)}!*0i@b84^S-|1Iz1e!K=8pS# z0kSJ&)(??BfOO|tC@*%_?RG4b6}+T<#TNz>CCH<$#9{16Z$M0%f!qe?KdDKZva9nXJaB`GFqc+ceQ|VYp+2i z<>BPi_d%tECrc2$91-^hS%|c|$=aI$#<_>GKNHZxF|_a$5E4=#-L)=2I)(-M?Mmr4 zPg>$gOHy&&k~~c=k*PD~XoMV%Q2*TCapD0Ilp}#0aI_q88|8?WNJfsl6cxdLBpj$4 zX|HS?99Qe8`ytc^Deoz!hy(!o~FR}UR;EXj%j8nt})Zik>s*=PdZuimtJfp^^$Xv z4c5iG)6hhGy_TgCwvap>wCCd}W#%gp#v<=U+amz?0pP#U9#6)l<{g<7WN`Wzj~X*Q zj~ol!^gII9!Y_BI8TOHog<2R!r8jjJsHP1A6f82IYw2>C>nPAT5T_J9I$?{tjnScg zs9s2Ev|eHMH_$p}i^5zy7chvfKnCb8lKhuBEhHfe9#N><(?wq20toAiAXPI9>~s*J zMwmh~GpTx9o(7sMVt+|(>JkjT@}PckMe5KbaK2-Cv#&uHmAYG0hd(hBmKP zV2Fko)W`7-CC(~vyi2{V`W0kFrOQ=6#xvEeF)qRB=+}7X!o3~ps!RtOE3V;*m9MZ8 zf&9lGJtv63ax@(|dNrLstgGqK6N+RJLQsR61H4|{jOb`zoUPu&7{{GEZ=H#D3~~Hw zAuAJ97NWCu1=zfH117t2f*D_duCvuAh_csLP1vq_Gdt7km+%`Iw!vXV8Wo=cEJJ18DphoBWt?H}u#DB46{Cf3e#tXTp zp(^-dPhJI@EGAEh*sgRqxf;|1pK5?#v7Mq*134*{pr`uk{b;f`{ayt1T;YfjX$kVf zS9R9QSG(wdxe@7SND1ZZ;Z6w!;eCiX;HJFX0Xx2}Jg(g~L$JzGk(k0zbzM+O@H|7k zA0?b$4BmsMiKovdZLzFo?e*9xpt>fOyhe&J;z5>%MwgNwZ*c&B0dc*VJ+1RhW z8b@!q7%v0C%MQE@1}_&yQ?^C(Y{knW4R+iO&&5k28DzR3Od7pmB7C{scCO_lRQmwX zs`QvQ_gaXz!5UU7ex4RUj=MIo0WRgZ(<3f!%ZS5H4+k2@ItLn;Jy^!rL)P~!>(U`^ z>SKl6WvP4F{!!bRbe&1<%{l+eYJfcmxCal|bOs&O4x&1j#s$TSzkscN$I6Qvxx}I! zh2pCA_r$>(#Jqhn;Fgh}rayu>->zXL2W@OHUi&BlX%FH7i#8t*Xy<+ngU6586#iCz zxZjVLF+(1Omq$bwq2H(tE5=dB$}-v7WUEgS64us#z>}EfiipHmlSqs(6S;;~^2f0Y zXsazG1KZ$OW#Bdp+zN{yJJ4BJJpCEKrxU(sLx$Z1VcKow;#^+(Tygs9Av9F><_?zc zkUm$|-NA2aLlibJJWyf2i zp=m>0LHW73t^@S{0IpwZ!1aLuSJp1LYBW~c1%K#IKvjKCcdPX4<%|ICHipE5jWqUV zrZ_CORFhubQQu`I6IB}VO{h{`+HHXazTKGBK@{Y%Z|LRaOn%bK7TXLAaE*0pB!fCf zdRkPK?6w@Ksffw!JGv2^V}D?a?I#27_zAea)5>XUBwW1V)Sj=uw0By4^_MIbU;W`* zECDa_OcH<68Hl1|y-ci-JPtnKPC_=Hwj>MNw@e_($KTk*>`suT(;6@ZRH~56gMFNB zd}q%tq$%tgc;%&?*1|eSuG3l+fV?08sh|ol^O?w4@T+#d{?fHVQeb9%Hqtf}HdjyV zvgZTD}&<7IP_5H2%@hFqNBBR=~@b1x+uSpf!llK*tAzDjVwcGq)@7Q zh1DY~J#_uiPGQR|*&wjfLT)&o#5kQ+Tw%KO)eqSfVKcI$L?RO)adj&svIdE4fJ6_F zC{3Q`f*rA}wMNWyC7w?gk6uy`2QlJ>F3zJQv6!s0@zT6#V0oB_56bA#wsDdGjk1_ z-EmyfJ=Eu&6oh|*A1z%#KNg=W&Op)Lr`U0ZbWuEL4CwoDA&`1&^@3d+{K zKKS49cKBlD_!5ZkO@A4Gr@w+f`&jG#^zxwo)P8V&oO8E6?@+S_US*}BU*WuiBg}w# zBx7I8;hlq|qA-%#Kx5DK>bDxB&}5lYNwW&`_RY;^Vd3-D2sV%(QeJ?K#--QlSQ_Bs zTF0ORz?}3E0tqUliJl7J#e<0aWFdWgG?D{7k5f{G1;-b>t9337s_sM8yGEnH9L9yb z^g&Q4hp_3EAc_O3DT=tLuc5q3eD6O(Su4f%ejSgLt}j0cXP>Kp_?E=LMH7j__KPMH zLog*-7fr+iv|l%2&k)y%{A7D_*JA75okiehZGof64AGLl-eS)PJ|}JgG|`yA9P4Ic zyG*xFaDIiO9a457j2CAb=mgUM`w}()+QPAKqHd-E#OobN+7RbIpbW7U_Cl#Q#ALH$ z1>kzX;4*X_bqnBA@u7LAdz`1r#!5Zno)Q_- zw?ItgJ)SNrsc#@P4yAtBN4yEFeoMUgnL_)m&?no5@4pb;qy7nCHz5hB-a~;> z&zZ+kW99)?`cL{%>ylZ9N^v`{egytN3W4(zvy$iY^*mkmJVAzB zs|;wDYi&oHFxg-ne-nX9+U^tT%)M@i zDw$6d3fnHbq`l;u;N{!k0LUEiYVtTi6{SHnZ-T147@Zh_8l8!+RT;Z3>IAU z&dp6%sk~~v@KnI^pK%*>W*-C)Tz((IBUbLR^RwS(L~Qn3c$BgoZn+b2-(_5fJNq4Z z#%85t;oX;_EXaS@URaPqOE7L=rcl2C!RYq4hb60TVy3bcSj^WI&ajqp#oohedUyb^ zl!}*6i0AYOqm||c0Bbp8yx{B^qEXJ-dx%Dl${4a@3KT$|;na~}UOFM=1M0;t>O~9~|)R7wH zq!Nsf^Q+9+o-Cvh{u07lCfd2}j|ey@8sguF_|Z@5%E&Kc!1egnxSA5nF;-o~pL($= zw+yW(4V?`>zPY^mw}9rZ_)wzERx}IBJIyUCgh{=H)kT_F@cucx=O+;$Df=cAxB;F+ z!b&F9q?r^ar+$NaQzj9Pv*fP0riRX!FlmXPSW_z6OqulNR{c~+Pu2;lQA!1@5v6l^ zq!FnJQb#w*CDAnk@kD&G5#9FYPGcR&%0|!4rRRj}fhXppd1%T?v7$~@?H-u=;=+)+ zc7=iEWB4>;s=k2OcEpj<%DE)g;@ucM*;o?$F<%2WV-253s{18WpO^0e4y)@p#43(c za={Xleov~?Hnst1J@YCHe#Xxxjk1u?%0fyj3&~8f-Bnql00k!5?RCf1>!CGJi^#9S z$?imH0H>>+Tqa`hh~?G4qw}+gc)1WJW&Lh{j;zQe^xW#w=wzMHstvkNJn8q8jm9l3 zwGCoPT_500^lTGm<(eBL)bs=qs3$<<;bUb_hg<1xj2pq~2w6z=4tHC5V`J)qi@18K zcZLhyDF+8R_Lb@ZZ8+n1JBZ;5u+ugH^>y@8G3lyafY5-39vM`>*TYd{GVKi~*4x~` z$@W6Svdt_5J9!J1A%hFcbSDhU;K;hG?jr^XNOeB-xY~g_PnxIBMNh5HM7PuJ=F|_+ z=yF%a#Z*A@R%32*Q@-ftHW~Y)Yq8EXN3_m|53A0#N3_mI=GJ*W+j)LNJJ%i2I)8Xr zbz(8pO8(eSuRr(CtrLr8muqPBBV{xD^OPf6=c9+LlVb%s(GhItV{_|#4%@lwIczA~ z$vU5PMC<&~A?v&fb)I%a>-@3QX+~$p<@mf1?OckA+K2KoOF}>&@z~SVWVKc)a_WWMBS&)Q}B^l}XSJpqu+#b>d|gwhvJJoI5>piHS>Q>X-|o3HUb zDb;nLI=xu()~@1yZ=KiAL3lSxy_U%RPGQT;${ZPEx#Fj+92lwVOb{{c%sV zSulG$8R;HgWG>6RJN?XuM3w5d_%qgrboj*aOahMG zx$0*K?8Nm@v3zxk<3rD!_b=Xdes9UeRmvdx?c4Nf-x*Z9>p`49{VarQzq6| z-QnidcM+9MFdJ8YZYGgX-$E4hV%-q+fAg$wn|O?)lq|f}hm&9tlU5E+ek$HDOK&>0Q7otaL-HkCx+Mxxz5_HJ}&CN@}I6IKhH^Ajxz zk#T3La0Mz~=jzJ25GN|7?LltS_)KhJ^*BN75G9qGOB$HJIY8+b=o=qTIt{FT8krtKh6kid)EKv7)VXsN=wqeAiTSHoa2tb%&j&+67Mc<#aQ?*^7d8JbSr_A*b4;e z6dT6eQ6%*AsAYKIJ}OuINjHHyCW%(}U$cBTrKo>Jpbm`p$MOELRAi`Qmo>r5l1jYd zsFZ*wK!PuOnJ=L$Y2QDzoC!%Jh(N2G&=PvA9vDalz$??`w)_Z|n8vqpp zO4*uHoO5H=^MKE0;-drul=W|@Pn+X|g5%t#Vzl}lsc;Ak#Ai_x%+#1u!|WQ=r~Sgy z>>F+Smx|CqUMNt-C#+Te<81W@)bFT8ENyEO1?lJ|wXj__^-=3Ns0Wz;J2K6_9HXY& zvS)9Sr!)IXdAhT&kZ14g%jCI7gVBey)NRR|`VVC1o}+8+LYWt6-2W4ipu_{Hv4MHK zgl-6(GTIZEGV07@Xkl0=>qdD9=aWOzN}Y$qKBW6{&?;{TcqnFF2Rtr3C?4%F*2)Y; zJZSn6I;WGl1PveT#r=zt0S7nKp44pgNP_-ht$G1<>v?6+TDnG#4p~>TD?SlnX5CE- z*&R5G1taDX24!xh-Y@~&;cJuE@qV0RWe~i0v?B@xQ4LQ28$GHzreFBaqtulUt)s@;esiNF+7N+`Kx2NHGfgy&09p49opY8OVm&?X~ z_)*MPrhr5yVHBSj5W)!&IlaVZ@WXQ6f^(5|Q{*@HJOJ1-&t;Rg`gh=Ycr~9WHUAXw zndD>^zD$oHDD&4J(LZH0>qm@$qLN8|EaQJnw2$=IN>taK$|N(s`Y*t>kKwq#6{G$@ zcg%8Hdxf=+B?K+biRrOF0bkswz)4vx#h>%?X!)lEpfMBFWVA(R`ig`FsdRT*2~w+c zqU<%&SkyO>Z8vy!ba!Yf?8G$p1*E0NNT$ABSs3G_mRtrQx~yfpy1PX1PGmbvy^NKq zn<^O##dd3FH`+nfA=9Z_SvnDS*oAP$XCRBMn9fY*pdI{eAhF+HZhHN|0F+#i!>=UG z@}$J2lgt8HY|LCEGXa#$S-@nwGu<37BImOvV>ty=VOA!G63RgE8vu1QWPP+7-pzDt z$$j4bbC!2!!!Zu%+KtFoM~9_~8(+4ErHVIQw#Uiz$lAn|W_pmq^t^mABje`eW6(bQ zTY(=YKNT~YJ|6le6(j@1=;7#@GorL$&peV-aBXR zeHhwurC)s%Lx$7Mn@}$BD53HjnI!4Oy+6=U_q2dwlB5^+eqTdHV{}BS zEv+yRd4rwPgq@?YBZnEBdU^t!uu8Pi+V;s1kAC#nbAd+=hJW=D(#o#=8I3QmKs#k* z*tG+Aw`))0@1#Nx`*}Ji7^eN0aBT|5CiftHhzn62W5>B|$`ZWES{rgxVwuc7Xh_h1uJmPuI;dQH5%FxZsj3M(8c@nEE6XaYArHNN%B-)Y^3yiESy zD!i<0G;a3QGMC%4x5(3(y;YvQvp36gk4~mrIOll2DO?OBb9~Ht3Ho3g%4)SQnFs%K zfgJ2havv~XO~wxNme85G;$9reb|KAP0m{^3C^E%`cCfWqNPo}yPJ4Wa<8sAXc{I9s zV*bfurQ(T4Cy3w$yE0kNP9zb3FUpOnA{f4CYRS6TfSk<6#y$)Zz(dsRL}Ih4VLuJK zPXboTFo0GF<`Y|xQyTyx8Ms!?xTDXN4%DtE*!oEw=)DSq#l@@>>J{mXpUb4Rcud&| zcpRoDGN}lf+4lVvtjBHu-kKlGTJ{lxPbTJ^v>wa$It4TBK_A;zuC01TTQAxrdg?iN z!rt(-`o%O@Isn!mUL-=aq@VcB{uA~IlZ|FkDlE~uCu+X-+@wuF#bmH^xz zF2@rDD0Sk2wN5}}vwK8U5s zB2S&p-s0`oEvU4xCcC*UQk>dM zCBZD$>#+{6oS4%CAAY#sQkdY938spya(VWM%XcFe0NVwzrtJW5eFL~QOzdD5%C4n= zug!(O21<{od;_m*xVn|Niq+^dGmj|4?M7blZOyK7bA`6A8$j7H41Ba)6EGv)`bQG| zo;Hcv*K$6b{%6c=y3ON&iS%|3T6Q8q-`kTXwCCjkcVr(}`EaW(9M|U;^%!;v+fTiI(hR zl(>-ogws8giJ$UGHGmON1LU3f^aEF!d({h3<#45Qxvi#IIp(CTc*-4T90uwoe8aq@ z+pqH&NCzf2;dnitXX<6v(;LPR>DQD$7v{HR4~yxIjLnNXfkN#DY)92`H2$Ehw@ql< zP_DYv;OxkqH;rlR9fiJ; zxi>s}(803@-^WPOc%vNJZ1l_R_6&(o@f~@J*p!fduXTY4qO*|CrrD?0tw06kPUoF` z^1B>2kq9|nH_MWSE8cQFl5voN5wJYUvxY0;e89cUb~<9J8!w>z?*U-P)Ey`S?#)WB zzi<`ry(qpO^vxa;>J;vjM+)N@iDtvtQ9Zg1u7$Z*{xMIl6g_o5IOP79V6>@AK$994 z>i#?BRZw!KcFvbBs5(=xL3%BZT!OUiOueZdAvb1V=>7q1ly!gvIR4PNbv*iz*AX;q zbvxR93u}*H1lteNiH5CSH*Y%8uoY~2-u)khEkrj)XC*?mT;R}@M6rS`5RIDz5b;D1 zApt~SmqSBHV7)DucnnwK5HoKE#iU{EMf9t}yo64zV50{}<6<4$MB&daz#n^hA%lzX zr+D|l;M{3gtqmY5mkhVt^e^|zF?9uaxOu(cs>Lkz<^~{c{w+Z?9!v31%LuZi5d=Ii z%;6yJioLw3loZfhH!ptWeXlxCkuM?(I7h!wWWhlYhkPzc4)izV z2iBx>V2BHb>{i{+%)&FU|Y4WNBwSYg+FxaTzo)vCed6NNNnLjQZ~lTvS_-1vuROTFgCBgl8Bx0OqS+rButv`m z4Z&KSn_dObVS9EI4-QpqM$7XUK7}qX2VO6t+-Y1VO5c<_bRRix?O0}Lz?Qz^f~}?# zPwR#hf>*1iZ(*?zgBalBmyd>6NuIFQJ-C)?G@8{*QaJAP33#cU$h_DcV?z=k6B*m7orJ%>C*0&}o{9oFY7NqH^lJ3^rn*j( z(XFjTN~x;rh}YKPjb@xWZ_X{vr20+x#RCLSW`QG-R6X>Zaqr2koaxd*CjH(lnPTzAY%NIXmvM$$&H4gVe za#bGZg(#*pm#HCi!z|0A?#*vtt;G{|60SE8TRRnh{8GPHgUSrz3fUb^{OG8Cbk3;N zyqC6yR|R9%mUhla*;-~SGcqG8CrshV`1G?-b$b6IBNx6Et${nHw*cQ{qkLF-d{CE` zPaKDu3T2%9Vk@26Y4~gCRnuZ(@xcZj8(9|--)SCe4f1KRHFAy~XYA7xLB~C)ANPnT zO>s{c563?#1{;SrhMQdZ5$USYuk{v}lV8>oVa+G6L7CXkYaDl`ff(D;KrLD{Q|K0N zKmqu`T!ZexhF z(6&j~Co{eB?L2;0&|G(lJwGqu6J0t$C5#q2`e@vnJ`3fO&zb);Jo(SAFBCnzwd3cS zC&T=4f!O>jrE%d={dTC7d}1T)Ts+2K2|0_X^APUavi2o-LwBLfof4Iw+?Mqu z1gm%uWAcxIqL>>Osq>{cJE@i;--c`q4s0hZK-Fw3B)D9Kc55{sg_8 zaKFcsaQ}j*o$Q+fhfQyRgY8$~;Hv?+{yA`8HE{PDxQ`3mz#O>u8@P8FxVH)1;2b!p zms0O71`ewd)Vp8~+-?ImW#D!R+`>6nE?m$aAe*}F%`n?xV((iBBfi39#IsS$x3Q6x0jB|z!9+(S9m7Z0kS)=g@$bzWP{e{9y<1Onlr!4M4`ye4)?_S@Ydm) z_ka~I-)49b-#btjf_B~TJC|oNCeP9i!Q^5u*F4)Md~>>gO@oCW@x7bo8;e)UjTH4WBy7den{O(6_xs z6I%?riXFeR7%;whGh{b!hKbFaVO8^H7}C5Mw$pE*TOiB!fsbt7_FM9EyLf?fS2rZu zHdLL8SJEQN6gt)){Y7HYmbm(Yv`zAB{Y~t`IQ=_$sqZaLcrn+p+pH~x@$Eac&UOi4 zU&=bn_M5(Th8wqkLW;hd2mV#Kh=&{K-$L=-^{aR=Kc5G2Tqv&WJLK&45%|aW3`WVQGU11kW zQ$J`~>{;_TNTl3BIEIB+izY^hHenL_NL8^c!yo(+f!ge6kLZ6aW^$fH|B( z9)V6K|LXM)MC-l4S*nx&<4K&Usn-pdu zZ*&_A?|>MxAUFc9N~op^Z(s`Jx2)+WN(%)q zJHT$wdAJ7%HwNj$%JfS6I=BtKaLg04-i|ys3$4tsnZLD~v*#aU;BSa@9+1s*#fj5F zxM8#Byw*btNI~d>8lMF=b+(%a7|7BNv<|qwTJt_862F`fW2(QuLJ7HDYJ4mu4n@Ho zOtl>(!~S&cvGgN2SAdz&+wF;O8+V$AMnwTfsqi>I&Pp6>(cfIJr?BMXc)uL^%Wlrp zaYb_-kP3e7`3-eI?Fj4Wu!cs$Iz~sW#BowbjC(A+$iJbEGuV!x4j8X?qF{2&W9{`u zvBD&hI7il?l%a9i++$hy5w?)-yi|9jeoXJ&0V$p;9=Qm2SgTJDaXIr$%O@^eA5?(L zZ4tV9+DL7PnuOZ~wYdxWR~&+!8!SSz9(Iej{uP9);q8FM#};b;@u0}?~E6gY#RGI)x^TpEfW1rV;_*jsTPUto5pUJ z#EV-bUc71SI!Rp7B5}p0F)Fh0!V6m@CO3`2V1&fWs`+MY7i|)k;&|cm78%o<#-JY| z<8|x)2uh>j`H2DXKI(R%1H4$lE5_&P9#AFY4)I!mp(h`O$L780%JDZN3u7O_Jt{mz zwHc9azYtLNJluha(M2e;Z&FjaaB;PhRRpisjl`&~qVuqH_yTI`j)#?I;!RBFRmO^@No(0==F5Xjg2B_0eQvc>+y@cOL3Egu`K&h>Y2n+6? zTkyc<;&HkB^pzmnjX5|#a=)RU&#g}1s+4xDf)P!8rX(KeeL9`r{cG^4l6a&KFrDUB z2~dwa8z}RijSG3O-+=G#?c$aLzrTk)2R>k(;{zKDd<^LaHVya&V+}U|VVA+t#AWz< zpqDa*s4@3aN+0p1 z%op|)U$6_{N`LVMmVH-xjW2A^Ec=cxFgLo=gM3-R7xo!nNTykKr}o#$LNf6mh|XTX z_Bor6?q~Dtn0%FMmWU!u>}H84!epRXqKPnZnlK=5t}872$QpB zi6O#7YnBMwd-zvASXIHLG<+$n6CXc75#L#24#da};AHjB=wouU@QCg;?v)UP{AjDI z(GBV+gxbSy(cNM1IW7`r-*#NA$V-n)pvF>RI8;yIDPvLF#b3wr z^`+-QH2`KY<+2$vVLg2f^^|cFny%<^6zs{Vpj`14I+uD9Mc^tmL7h7jlwazPtejty zOOUev#kY@|(=E6$T*2~35kQvV4dUw0e1|{8kMWd+uBQ8!K$kn~bZJ!+v?6Lp%0fTD z>%NGa19eRQ_l)wts#n&B`nn&SM0**)Q>DHkOch+kXA|9R8LjQB&mak#hbF<)YC zlPiFrjL8*1@lqa2HeH9QzG}6d?aanK-2YQg$R@j!a~75Q3<~@DTD0l)!b|nm9}sHP zFR6YUrK1&R;<1bO_2hWF)HR@Ey0j9S{Iv*icj?Bfel)P}43}l}qP%D->Isb;te+`OzGDvOI-$faHI1^^Xs924nfIstD*|8w zoO(vU5%k+jtFV9e4Unh3bX1TZ-7W;qCCuq7oL6v#xT`1OnV*D>esCmaFT^}!Xl={A zW^a=A{|bc(r?-JoF*r$kehGj*g)cdbX0WqNeyBM8rM3kZIje9rsaZp62}hnh1n)F zWQHp*H`qRmR#ToXX~s6EXPG`->3j$)j|2w}q{)i|TtXb8G|AYx=1Mf+V^5nT{TjQR zCJAw9q(`L%J)V15^jO@Cs-efg;n3qV*ra6-&eM^mkA941H}vHi$V`k$>^b663C%hQ zJ=v-R$UF|M76(2;&Z#c}hgL4LRSF=s2Bh-e0?=S(rg>3r#=i*Acwt4g9anG;q6B{o z4n0Qm$yc8rFU(dk9Xd#nPu|4~OGdyg5QB9Dg}0@-*rcT8Yb)zlDqaP=s(Y-(2J?Y4T9g5%=Ipedtu{mp%^)hK=L9~;0#WkD6< zR0jt}u<^>cK9Z)H$LaGAT*#ZF2f+!)Yy}rMaWvJg3t)cKA#;mUn5k|tIRA`e$51ue ze7q!f&??b7g1sb*G*QcYeiw_ zIMMSj%;tk?3Zp0x}B}ceJ@0FAO)a0Zi`k~_K1{vBr^y#tQLOCxB zBfqqjdb`y9Y{>f!u%ir(bjAzqBR)=@j_|(k>PDVF?Z==YGgAtS$`0+AOkV0l0t0pN z+&JW=Y%|-B-l6ra=cE7LN*uH-aSBVQigu&XxOsDi{NiU5Ag2t9TOMKKOx$_z^cTi;#%S$!3YA8*h>u zI5JST^fV2QEGT z4GD^GWT4&p<;W-cR73BOSYYJVW7BJ(L>-?NLbq%fWtqJ&T6|zrYt?tqqpiEb@uG){ zFhwDwk|0rQ20=rIRt}p9@lcSfDYH}9ERC{`VX%3o??Dkx($B8-cfj!-#4*BOxTZ&Q zn7WrbC0yDjx`S^Xq!SqR>w+Hdn+SR^RQ*K}%<1+1!Uj3mH=(J`RbpIag=O`qQ>H*8 zaPswHp@hQMip%7r^fXyS<|3H1t-Fc02r*v^xs)jeii^PuHz0i&IXc^nVHr0MFR8XC z#$jHykoHnMaGz;4o`3-;UAjI|zDRuv43*T^&0=ZSTZIzZgG;G27BHrh;gW^xsufdN zU4Zg7WCf=doL_|jw#zQj8I^pG;7Qm~?@JbjR-iPj02@ndD#(~bb>6inWA%V#oE|_} z8id;_=y# zpf<4E%Ib2Ro<};jJ_I7;j%QIs2w0k6JsPr)kl6UpkTE$696}}vBO|3m;k1$EiNcPN z#Rl8@*k6bhoat7g|k)v4dlIC&?$>xH?G6%w@ zhmmYWds3=NmXB^OZehJaP3VFIxRqSix$J4zWH`73qY%+3(vYNQ)%5#2DJ-)zF$4>nN zh8k`OfZ-xH+5wi<%n$x(s2SaPf(No6=Yj0244p!(@g0}KxP0G;cP85fH3uQiceIP| z06y@S>207;?rI{@{s7xi7`9|U3Qi69A|{|abvJ42GeqM4rWR>z>AXo6(&OzD zM+gUet|msVIjxB#&pg+Vhi%?ZVZ9Umq}3V7ed@4S(@?jCQz_MGEaPZk#xf3{Smt1b zB&a|v@$S53wx<_zNj)>gwP_-uWha((%o*q*4mJ@)=ML9T<>MpDXJ2(Ol+G%6fEp*O z0FRp06;z&uBtCE$l4odBsATK~kwcW6Pn<$|-3uVjz`O@pcel_=#tr|i2y#v~nqDS# z`wHz%i!uo5$b=tA_Nd;`ZZwpZkft`X5)aAKSMB3sJd4$f*!UX=Qvzwr=WqqShRgD! zA{HEefPrgt>cMj?Ib5wbTB2lGuIbJ7c5_Kwe6yrEHW0lW*BKq4U}`NDoXDyj`V{;X z8Y(n%)@hDqy-RqH8x`s^kgnw(kb(^p%bZ@vmePom%@%T_F=@cM(ZZx5s$Qe*1E#-L zfRQDBrC&1{cG(s*jr@jw@xWAflc@xm{3?tYVuiD>dVtVW(9ybpc{Ils47gS^;5hCx zs&nuBJlLS6jy*x-=CGmAWO<|^zWJk%3o*J?&odJJ-rQWA2J zQWA1ekDr&=i3X!qQp*YmL4uVo*0uHn6OC`>^wQ}%ZZM2HrgV%R0OiH=;UKk@+i}&b zE{7X2oEjm|9r1ZV&?=n?e|5C2j36 zH_5{?x@6)Stnw5$xpVbBO!+WDBU4w7Q&$6uW48i?^VcLnpTYU7q1INjlD5D!Ne&A8 zxs24+hCafF6ASDm8DSdnpqE5gY+|RJ%${l<+jVoY2#W^9AS{{)WJa542keDbvsLNY zA|)D23e1CKutUsN4H@;(5O6%#S=6)tmOL4ev%&h_thRHj&cN!ut^=$93v}ZHf;0hO ze{cy%RE!sjjj_Xwh0Ut4qLCYnI)YX1oFwj7xz>At4;UApgu?+i6oS>CyRmm znt|pI3+Bb{MzdthPp*Jfi)$2(B8-}AxkxG*-KVmuzA_jN7Rp%7_~1oKJ$RAH+BvWY zlon#gk}E}H2n86$UEMya8KKXs+bT32Hvn&K4};~Y&_48IysM)jw^H%ms@+@k;uC0q zF^Ng)h&fe-SVM4douiha(WQTozBwIb+yz<~4Et8JVc~1O+=#+Vmkiwqu<8Mhnwapp)dBHY184lTIk7MEUb_#7a-HrI%pP_WI z>O;-PZJzMm(xC~2-fc$t06?`thqi@{ddc}I%%{UM*Kr$l=6d|4Nrv?0@|sWV$adQ9 z#`q*mG&0|mx=ly1IJ43;Ys8z;7Vyi#dH38#-tDdPuI@;6RKUM;Qk3T5rA<~0!@?l& zGWZ*7X^gX7(9(l-!8+hY9+vZ}93NuG(<2Nvl*r;+PnQcus1Z^SYY&$N#sJ6h&`=gf z)zd8NZBw6$UQ!A8pjbFNAYOOrCO`Rvt3#WF-^PH(`<+)*M zMxJY@Zj$HmQ+LR7#nk)cdDPSwh*{4^7Do4>*9 zDgS?&*HgsB$(a>Dv^ic(Xs-A-s0PO;#J(7Go`qIRm#>K1RFMP<)3iq$PjJIQi@UiZ zUtvJS7x8e&lksq?&}Dby6BI8&sbvLalO@A5<(nWezS3uWRD{^j4RyZKmr<9=YQ<5e z;Al$X*Rycme=*hWipV*S=%!SM3kaZkxgDqAe z+)(4L^f5A?1TfPY(AHy2`<}@t7kgu{DZL&A_+wzJU{iYC%?L;LrK!lzyDz;8G~vkvmMM*n9h9Y6xL1;SR3VS_!@jJ5~c8Dk!XcF!X1jP8zu>|7tq z5*v4}brg55rB(Hv>#BhMp7MYDq42YA!h^v+meL94S|8(?);!FE!Mp!np|`DyKP;3IMcS=5a)gs zwFWq8aD9FCLtCQj^YpyCX$ifa>xE=vvd@$i7@3ThN*DgqnJNAR=x{bVlHml zPd^bgH0-By4Hn%`r%fl?6fo{;ohQ1Vew>bq?x&lm=zh9HMNFF5PltlQ{q!Z=PhW;` zz?JGuHa*}jjuJxHb%-=2`dNS(|Jgiaa>k6fiWxh@S}7X94zf_QZv^WG_@BW2wua#V zpG9h2hG=V^US=)kutJEef3$Y1my4ySh)3%V1|OC5V;it-A3}5Yz7cIRUiN_&9};;O z@q40D4h3K4%~Y_D4wFz^|K zbL(LJcq%S2&?6tFBFdn4gPhs8Ujfb)8To9Zt8;H*3>X@H-9YQvX(v`YuSNs2F)RzP zU&@^*9_I4o1P~6SiIKi z+Jk$s3B<1j=w@edS$^O&&PAiVGhmo+5juj?W-PZEo?xVqCdg`d#9Q31l=2`+c?Jug zQvnbkiOUWTbtjJ=39PktmMqF$03VzzojAv$o2)_0B~7hwRNmwx+bGJMi2! z)Hh_w`eS$M!O}!R@fpB^6~4UimHj%q4MW9O z&CMH~wh2@da$Y??`qKneeUY_Xvb-JTpilJhhnaa^pOP~nb|jzvM##KAB?p}@^l)y} zN}i$Lwy7ucC_ z<2sm{ek9u({YW+#4vf$5N22xk!*C~A13Cmd#E0!pVylyw&CvNR*rWM-wn1$|tZxQm zWCqt=I*AQGna58uQZaCNNEmS_CWy5tf?gVpz66xxib)XZ;>o8^|AIW+rOd6p58}BS z$Nn^r(#-(=DwEw<615ulkfkCQ3>k54#zfuo#Yi^dq!s>Hu&JYoId&_miewCM*N!2$ z<6I285nOP58Mt(265~Ih&;!7Qcp~!RYC1#z8N{5%n8Y}hMDe4+)fuoS$mJTn)rBEl z3OyNoM7hDs0tH>S?uY0JgHzyElgp;CaXXPsmo5P^X+xNHd>rMopjstbXm6&yxzH4H zQlX|S4@%6W2H;JQO=QwYjE!MO&yrv|LzjI{45N3N9v(40JQ$*W&@R=pi76$Zyy@p0 zn($UsTUv^y4y}kHo}ELDW|T<*Fo-F6?GDOQ&4fo5#aQXhO;uw-88D7+UBFR?V#*Tt zq{(_sdkIX*Djo@>WPm*8_Y2Kj{% z$OqzMg(E z=Am?=4;zu;tW@8_fT!fj>Z$ai5wZ)D-ElKJ=;M)q#9xMFcZq*(2_*hA*jG^lsq4}#EI`jMDcWz4_|ocQa_4(*tl8$y5fU7!&je=hu@fn;Ni&1BYm{-uBy0{_eZe=+bp?wgH+j}{k7)nKi1 z9{T+*^n0By|7Y6-x6lOKLf7#~?m>s#=>J(f4=p^<0Q#Bk#SGPNWYY>X%Elht zuR|wTGVb`_BG=eEgo47nhj4;@5g`xD36}gjzLBN#$mhIHu+;fmI>C~S$9?8^B!B1< z`8!BomKQj|{siw@+KLk__nXHbK-}2Z>IwPk74tcuiU^0$rbugX#+%Jpy^jSQ^pLmN z0%-J$m66!w7b|gx;}^?{jbAMD%SgFJS z9+qD$?KN;l5*g_hw9jx`ljH0V6Z9VN>K=s0GIdDpILmHa{YP^26ZjLAb$L3@ zHnw2w0l?66mOEEZdB)vsB-Y9x=lt@fv05|bu70}tTg{|(*W0MLI=JiYMl!-f9Cgu2 zSl7T% zk+++702|5>I{@zmq#1xW*O+ zTshrvtMpF_`yN3^GLz#$%lg&YK4P2z@G{`-J z%5w|?1E?-RpC`DFHWZ41qqT))fH1)Mc_8cfCdw(NZ!=C#oCj9LxoJn8&4BD_!bQ)5 zwMN$dSYmtSqwBky1%KU>V3+z*ETYYi{WBShAAmRqCBZ3pWN!l)jK_8RC)Iwuo4uj> zPHVwG;TFfhYI`*@^<4%+KpHc#E4Xmlk}+M4%EJlRV0jD5MG?$GAUY=&krud=*O z%fNdJkr|HFU{8JQUuj5g?c*KzcU=K2xwq_Y#JxjUU!MzlAPjHroZsx_4f<+F@4CHC zJ9)cs{N~3gusyD?nd)lu5)*Wm#+lkkp&#hgefC1sc^B$L%l-teDYq2?Sskf&oc8t} zpdUB~Kv$bCDFBZZfe5nnRae!s_)V_ikV@LzxUOeQ_y1QujNy5B!mS{4G|? zd05hgU6O|XO55k@P#m9_r>9e;V17I_dx__4SDPXA_Gi%*MT=-5;S#F!0T$D-5*{xrZkqtvkkhe!@y3e!HqRM ztE0odTu-E{U&rcMW)@|pi62Dnbr`Fa_<-8VM3IL&eTPZEUea^?M1x6ptU=@#JBlhH z6_-@umVp;V;o=;lx}5E%oEJ-aeoi@XTLGQIa$XXJiC4FE{IiG7P=Y}X;q#Vdj!RJOvADmOp=bOse z7ln(IgJT6!&PyeI!JKlw&{WRLqHvLNcA9ctF6j&BlmlVfK%bkUaFKFeV9I%gq%Vq; z<60+xe_%@v%E4Jn^%V@FvK=oX+zqF5tW*7RkI@JcRqO!X2mT{~DM|Q?M<~ABx|{$^ z;NYcY?K1ehlK3QWDUxAm>QpBp{VR>-;2Sqle11F!pRXExf|AJZ92Z}0T}}X2$LC6e z&tGVK{16|}XK1fQU{Bgb$; zdAz7DkJnPB9hTU4w15-&?pljMckUJ8&R^U|svahDbQ*uUI6eaHZGum4ZWGPUN3MPf z#z_5N3+w;E|4985sFC{rF|7ZQIrX2<_Md-b+fP9pssC+Z{rl(Ck9}ELs~k!CQ-GWL zm!RCQhxI=;r~c=#{$0<}`wmBl|0wt)?f*ttKb*aq`0tsZKPQYx{r?o!|LC0hp9%VN zqKVKSM>K-*_oF%WH_%_7rNJIO<{QeH!y5m*`M14(04_Q!b=GI4m=kaQzK?5N2Ht>0 z^}k)0%s35owfc_F5#lXQE{3*81OEp@+WwTZ&DLdG(((4K$8kvT_kmspa>eU4RTtK! zs+Qi4;*6u^@2^oNEL0gT<1wG$3bK1qEcOCvsaSP#C)*@d6jx}S;9+cVk(+LmoEi$fl*e|g^)rQon>CSP(vVHT#NhyE7`pKvJCw4J-`I~az)t5Vx1$u z#CNSCpKNHPN09Sr@yU`VK8Z(bm_vv!lMqH$6qZ%<;Fa!V_))S%^GC_>y~*c+`S5WB z{Y3kyQyzuqcR&jp-y!}T&hzT8#5?y-VH~MTkU{-D=*I7%V*r;(KU!TGfF>vW>Oh zf@yg7Hf^N1n3Km&??6Kn3TkXgbl!ebZz~E^gaVpw%L2Go7=^7KVU{iY$a6zGbxBcL zI<3l?uVqrI*8LWnwsl(S5^%))jRPF(J6QWxJoWaiY~4Ox($j9Al!|^q-(3y7F%~mU ztuqNe^lA%S%bV_JKgPY;CPiA3!`W0tqS$4+>)*LVo|iL#f_AL)+Q29PDV zZ(q)UvEyNTXU}J2`(ZQl;u`QexpyT&}7w8VtWXXpH zPfo`-%i;=aWsH=N-h=~l|CW5|M&PQ1+uFz+oj5XhOg+D24Wk?=;2F1p7lP98VIWWV zT^(!kkY<=5=vQ}0n(>nj$01(>p}gAZpr^`Hyr3NYedZwuj_{kwPo@0hpJMrkqU~6n zHky~`qwP51TF`cNBtK;z^S7q0p{(>MEDGpR(snEIU_tWqXxqSqhS1l5&{?;E|M=~l zfd2xzlmFJ77xuwZ!DCJz93eao)mJA*Xx(pU9dK@R9Go;yU#*GcKm5L0Tkk9Af)*Ap zN2IULprqN$GkiEcivGdZzSOHBWLk)hmVI~DC1Kw^6}%4BcSj1Zm)e#1UYx3MyDYo5 z7LBcVcI{+5ZKw7uJOX)^1x;n{cWOt)DUkV%`gcRN^3&V7g`(JMSl1f2Eenh1jI(DS z3Z8i#{?xLN;h@u0aN*xYE`{e?1dU z76zH70bC9;y{(>UP-i+ik%##Z-@JiyfLA&gg1W95Vm^qwD4m76y$c%JJHV6$tthdu z3eOU4$AVtUfOH zUUbwO@t50wqOboJd;}xFe~*ve9pR(2V|d^$q2Pa)an5-kY6VN|tQ^>7>Q3#)>3^sk2t^1t3OQP@fPo5UTJAYibyw&{9!gK76_|u6)QO`y( z8wxwu{e`^unfLA0nLd0dI!KZu{%rPbp?z$>dq zcUl7`*LBqeomgnfOr*X{15P}e8dcOy&r+&I1mCaE~&IE@(j zI28-;AL(t5Qs^EJ9^@3W(X_Py7pZ$*p11HlftpwE#*v5p9avoE{so<+7Zsd9wJyEP zy7~S1pez2dZA57M^@l>qv`_#Maj>6$)wef{Xu;H)#aUm z7HoN$4mY>S4d+=$hr8Qqzvo=5-}XSNy2EmbxIo7Bw7B;n+j6TLBDrf0W@+4AQ%%%f zg6!r0kG(H}ldGuKzjN>H+dVx?(zA5W5;8-`3`H-KWduXm!=`{NVKE8Fs%V06VLCx& z(jn}E0T%@Q$DPFm6;VMJ755!A;__TDio3Y$d+PIP_`l5cWiRcD1 ze=^0P_g3VF{N-H#1>gsaiWzY6r7XEuTIu+&gUkO1eoB*$|6+PBg(f$3IIIThWbnE; z%MqQ#_0Pw6mM+ZISZWOj7oa{?XKfO3 z79VazI-IyS*WuQ2&SYB5X#q;?2nJt_D5Qp)ECfwXeN|ih(|@G7pA6V zLPHTJa-*vUlZ$Hi#kFe>Lma{shc}|_c26CJ6nhiN>1!Zoi;rd!z1~(lSE;@T(vM_N zC_OG5YK^^!k0oon5zF{1UB+vX$;zELEzB~$Prgp&F8R8Z_sh4x@?QC_*Ju=vEF*mi zxkMRxrx1sG>I^uPdadGhD!Bqw9${b`+k5u8lK! zkE7+8XRU6tER1$Ihecd_8h0$ai?}nB-U@wLEN@(mZ}D*4k3xqnxllReRox9qOZi?X z?g@hyJRH#BPvZhulX?w!B~P6)dzuI?+G9H9>yi0x*G(uCwb0>CqvqXvI|B--l_%*) zOFv3Zn4Ie351e-BRRW}!N5z=s-h@0ls?)e(^(e;mgBBE`m_0(~ovt4_-AenN&&JjmHPFMwU)g*O1lM>rD zvMV&=Bx@Wj!ZRWAc8aP<;cA7hBm zF_CE>=9SNU#<_$|tmE09w7FIxZSL0NtQR-zbmUeZ-T{^+@P95uZt$g>|6c?6MRos| zV6_BY|EHt?1IwRHB6~I_@)HDQI#>3hP5hA9-96p%;yXlH;B^(mCB zYe_#S_jG4Eam&yD0D!lC9Z5@;*+E6t#@!`oc*p=R0Pb4yBXJA)Sv|8f`9)^s6XZqc z53J~&ZBoqiV5GlR7+BMb*_I@e&A=rI_4f42`s|9{ooKWPW=%@^y+k!-oeaZ&w!q8K)xSK(nFb{-r=ny<0hxuhHA#6 zpzCIa(RUBQV9Y;sFbhu$TZ_;yxbG3`PH>c^LV z+gmp{G1Bi_ts9&~yqGl}OzEm}V^5^_9rWK?85voH;A*j~@th*DI44K?*6%5kwzK9K zyM9((TfyuO9io0=CvIJ5@`!M4U`Nt!zBaJqX>;y%AS;hp`_v`Y#99$+`*Ah7{AJ-Pme5f*0Vg>{)pC;YpCfGjd1~E678xLAUF}s*+CQNSEVYG=))O6MqP=fTd~2zY7Hm@Y89ii>Nnr+NN#K$9RI2}nbK)_Oj+oiBtz$N+~ONuaF7*3jGqzKhOmSfx`iu_X+V4cwV zGtvs@+-Yxv%el)<=tISMcF2ihzxH6<-IgV5#8zhRoZlC8xK_@2@U_()AvWG1*H|$4 z;#RSAi8dq5S3D<@2p)kja~ap7?SL|)cIFC8<03Gqx`J;z$%J|?S;oFI!#F&Zv_i*m zE$)SDOa~PqI|UMErvTD{V!pCkH_g&&h{v>6G1}(Zf>0DjccWmsB*kcr#=F=g=d3eV z`T%)dOFB`bO$9l!9h8M~wx%4eg?$cEUo)aHtIZJ6Wn#O5&Tah#dBAXn#i(=z)^xE0 zVBrK`r-Jn{d|g`B@l8}<{=~Px0)sHV>ovMM6)ZA7F2)#pz(&yiD`@L>i+v~DYJye3 z>h_b)R8n@HVD4{vi0kI0hro>Nru;c*VCT&{_uO+2TD7|JadgB?0=pYA-k*l_dOZkE zTr`aBDbU(zzk6tFUwhGO*T&*--%4JO7xS!VpQpzN8xK32x=y>dH;z89+Gbksl{lSv zvAlrmu&Hb$y+k7$c9& zmuvf97^O)c4*TEPLEg%!Z~hI+?ls zk~_<~^fW}_uE#>@RMn1tyzx{31UmQnwHVySvgP}*aC6I8u6((C2g)bPcd-0R3~9HF z4V6DH-{JB>7`|>9n^V48{JZ7Kf1^V^U-QJa_J(f!H<3vr17$4Sq$}THNi$e3pw^AV zRd2-I6LI%N-2D-EHsT(LxN{NrV8lHXaSun_b3%9dr6``sPkCMFR`Ws}H9z9sBjO&5 zxW^;zJtJ-vaqksz=OgYy==P?`CG1U|KAp8|>TeofOeP&bN zYBspJmVPK89d^of5~>>@ST9q!Afrp1>((J0>Q#Hvwf!5YL%IH~sFva$p4ME4UG*F6 z<1rfo=sXMWLVF6vV<=kJg*Jnag&KuQfi~t4Oahsu{TQv*!rTt_PaOP$4s7|iF%_s4 zc2y1QW$345)77t+JRBN}FpG&<^Fz2F1G?J&I0gl|aP zP{N7i#0{&l%OsKAymkPr6eWL?R5p6r+2DA7p6yh`!7+as=<&}kzaObp*pTh=2k3;g z+OF;t8Y_G8E+A62}1jjp!0`j+m^r$|3FYIj2^b0_^ z!XGSLoJ%)<;C><9{DJ#Lbn^#p==N@fKX79S*RAje?(^v858N-Nn?G=$Pd9(yX7O|x zooSzL{s4X<-TZ-jif;bEU8b8qaIdACKX9+3n?G=)g}W90z>TKmR`_FMV;wvD+82}I zr78m*A2sW#Mfd?a7r!g~F^t_uDXc)-ef|egE%~q5svmexZgL3k2uTVGRp)7@=N z0F(6`$*Fh&W|c?4;suzs9|4OOU^XbM1?#M47wDvv0{h7;-Q0?fgBQ>bmR3N{v9n2E z6$b!p^%2_Q1(;1B0v0d8>=*g#0`4rDEu|APb@?j8NI?NAyFrA4cmZaMjex}qFgqER z&ZR8KyzX-)CtL8aSrAP|nr?oLEnT?OVV9R-#M50_Kr9>H&(LKP2Z+hw+PBR+4vne& zA&Q^p0|i%<9t?nPzj}`TEw`B3=%dqKe1n4nbab(zSB zj2#tvAFCd!nG%P@w~Lgtr|HK?b{~72*ecj>Bwf`D>KJOAz5^>nR>uE4SSdXLJ zw99}Ou*=wL2&pI-WTDa7Y9D$^#xp_B0$PKEexE~pt4+tp{8{2ZgIKSo5~Rz>G@#^5 z8sJ%&28_F58sCnlft$j@G{~bilg7~|{#>T<2K+FOOX+!&cyj73_e>J6muKTL}g%4oal3kC0gy#md8|fjpG0D}j{V=H&luPh-K~Ep^#L z*JEI_xl6!B_!ao%R_eeTR%7cacLKNr0brHFtWoAij+H?7Gvax2r=HUNiLg3cDnnk{QOnpaVH zZe^I|LaBjD%MzNxP)5PLXSrxgQ~#j4@E~}Z))~^pQZK<+!KZw(rV3N9B%{RLA=jYPH2=(f?1wz2Oey=@V4 zW>%}NLH8RgVTEy;{5A7lksSfX$-uz;yfdkH=6)9P9>etoIznINa7459aRPL|P4Gb{ z?9=_;fcs=8stLvCbwoN4NX$_X>2y0hexCRWwM=L#6z?!$;}1`-U_dLTIh zZL~rk!ZA$CKtit`Na(^qq5-Sa3$;xsejMRa3aSb9S9KnrtdI-tsAq0JZLkQZq8I{D+AbkzDo7WxUD8mIVGCa(aJsmQrmUUrXgObTW zAVgY~40WmZ*mg)=LRzAu%^J7M=u7FbbcFz@x!|qQVY%Mc30xQeKM!E#dysWd%P!(N zU*!?;^jE$s-}O37!Ia8H68h8^Nr-7;<;3a&9moS|Cesi~Af(QhR>6F0rdJ0JJe^2J zq+ZEdiDFlWkF7jvrM`p|{D*4t+a1a8qtX2S$mI8jI=?zht=9RaFU)W3_!g5*j&ET; zm5<_7Gx!r-q!PzBR-}ZQ@og9~cMv?8#d=s*(y|(sMXaTyw|X5;@`SA-%W2c%Ur&$a zLBGa6e!Zu4wl3qBStmc&Wvu){zE0(r@^veZ$+y4qGx@I9XbK|}tA{@I)hge{kVcZa ziS(U7;NC@@4R^9R)4;@y`JTEE1=O-=*Nz$U&}C22MlNabN@aH&d-Xh%__R(t=XR3N07SPLGT(uk(7&;;lHyl6CYZx1P3Sog_X@NH{(2_Hg4tCB{r<#{f{@8Jv_Ip!u1I5hS`{AD)i8F2QK$@kCN`? zs;ePesC)rL}1^UC9K4liJ@io9XA#k7y+${tSR)KRv;7}Df z5(0;-z)=Hqyg4hFADx4dRm&YDd{TbdrDtQT8MVO8GPbNyAJF%4Ccs;D4eAs-ENtB` zVYJZmC$3jC2|vOaD|zGU>!?la9;38nJA#fefo~t$6Bu+Zz`XPq&KI)QlRr#{vDi~7 zgZytY@;qmb?W|n2g6Vp4KC2%zXeGq;k2(Kaz`-=CYnG+&0#?h>XA+5{QYe|E>+-#C zxq}n~fh+q?Q65KjTw-PEq{P10BAlz~=YbUNqD9O8G*ZXmd4~%~*Kq z>mGYU52e+Az|Cj5*f20HzjT|;#vHoXMm=jBY^rHr-`4G`o9*j()XTHgiO~keIS1QU zPTDov*LR4|_VryjYTMWM0MYI15xPwKdQH&2ggV;St4;g5Hf&$7t#4mPv3;Ew+rAo8 z3EG#W#P-F`W!e{ID97Gt)sgtfX(!qbcOJC_#y2scv+l$O(hFwZ@d&S&E}75a5{H}A>yT?~0!XOW!=ax}Pi5Rp>gxlmRt)23B{m1Rnf5~_9Yk=S z-HU~AY~;rq?IV{S0JE8uNo3LwFPBGxv5{f*z#03p6VziqLRbWI$twiuC?UtBj_U2q z;1t4{qZ=RJ`1l#6%7(4z7^S@#XJqy{Isr+@9U?k1kQi8z=`>-3a1v(-@AMWX!-Rs! zwULO)7$!0!v51Gg7)QXC*eH`u98Wop%zi$`d*tD3(Q+@$gel+&<1H*odh~Hj$`*Ey zd_0q$bIzH)9ZUY72J@b)(Z_#)Cv0J}@k*T|KLpuMViZnetnXRY0e>bR!CRaJ8Rb1h zA^yJT!w3?NcOYW=>=mQd{I~vn1@e;^`8^;#=bRa^e`KSO9y#a?P)8O!5YRrr3dAGA zy$J@-IVV0;q9PtiAu-L5E?k<s%zxZg`;dhD|4r= z$*wtY8N(Bqt{_uO{zg7@Y4+?EAm-K_I0!^=tBc&~Uh;s(s^ivhfIqP2z+VCb%jUC&gGi6;BqAQ&>WOPJbK$5bXMZ0knB zx`Tp&WypIyoKV6djPwqB2#my0Y2CSj*TR-_ybrXb4c?1 z-1E6?Ce-sAMvfbO93?IP09|P#_4JVyL)yb(kgK$KMn|vGies@o-3vfYY^B#Z#aXb1 z3E<2MKeS)*JF@Kz?Kk)X_4osI`2R5YSPNzRfo*LZZ;|{Sq{_`I;s5|rNdv?Iz&rx* z5Z5~)oCa1g&Ilo(v^&0XX7dbgCy*U0&>K6)r}pN=@L|Z?ODaRaft6H%WkB=>!iWs|c%M{fU`+|Hw{ z9Q&}B)G%)Q6bu zL8_)YnN$hy4m+XbX&-T`E!%oVKYoxfmS&*|_&sz_ZlA&xm|8GQG97@riH^YNIsP4xXC3#qX9>53n zT?=F>t2Pqh)igU%aZrn@;fVz!!`ZC%2){sq(yWxzu;Q$dIkn*+LY~}%?{3nM-VSt5 z_&Sn;LX(@M-LAd{ z>>!p*oIJG-AoL5;@id75A%-kCd^%=bY6G^9prL(~aZN)D;nNy!+S`Lrk#Q7_=aoJo zNk!y)T(kKRYUSAy0SSD31~GyRL?TYlEMm|jSSNd-PN+CLrk!j?%IZ4&q`m$L9Kgax z&QHQ8TQXS=9MW;sG0bPAk)e~|NIrmq_8dC6ubpCXF6tX+xwU0Cp*Dd;M^fxD3y0(b z^P4u$Jc#P!Heg%|(mc5y>X@QQQD>HXh1o5AU(o?DmSCLc^R5 zg_zd^%J-|s8RYD``V5QIEby}oBzvC~)XV3X-gX2)v|dcaX*HvW+pU*ZAo;LfzQF8} z^Pi`qX}ugD)XQgD(NP)t8hJw)uGs@$$rkW@@}DjlTkHk;Y$UH1$pSrToFR zY$J(RYDvuYeJF|$FNbpwGP!yoBi2C5gnID{3Gkz6lb>TeB3C&!e3kid)E0bDDS?-H z6j_SVPyV#>p)eQpvWqb0QZE^voHdfm;-V0GM56LhK!{rryQ(g%05QveQhg*WWK*%B z*5--Y6X-9mL&~F+yOKa|!X!I5$%Da?LtANyTy(twEC>&-z$TS?p_~N2lJ)%Rgq#-P zYD8&s;c5`NY^;Kd#BLXXt;a5X2MFcR23+Xt4onWuYSXeA>wX5`*ao{`oof=5UY@_x z899}Eyo3?ZexVg=Ru~W_4j%RlkbfLA9l2ue%}6&=UhFDx)Hhghqt( zHA4oBSy*7EG@!zq66qNT@|fL)W8Iy%$I1 zWo@>4O+LJ6K4wJwSkq}n(MUF)sXNXGrp|{FthLWg_gj`>_$CbCaI&w7lZQQN04E>k zBRXy7W{^a8e<{#x&s9IyGf#1-KcU}Hz2Go5xXN2GX9q-ARpo9Xo2YU(3!1mw z#tESlP_`B*O@o%UB#f(+)L&aumN5moRV*)#0WbcUoS22hDlHa8{LAW-0T{*4DA>)J z84#!+9!8!xr*z-;!K=vJBiejAylVSdkzBFc3K@d_m!>7fT`?OOVdHDpjjzR2Xx{P` zGa53sMcmPrp-A6tPwF<>g2+6Xm%7&V+u=Ri>;DO=hWK2LKX0G|qsu?|Q z&#fD`Ib#17(sqU;_RlGpryMoSC>WZ5*$@?h7n{Jx8UkC4yS3x>uMkzn>)+5Z^YQxE zK|Ge}Ngl76^{3K!O_t1by#7PL$KTP>Y`p$sfc1MiWW4T1-`}0%budJa?2a)S8!_vr z7apb;Uj6g}cH+P+W^~Yo0Rm%mvmlDeq!yFSQJThvfZTp8kpZ|pQ(cJ?o8c{GM!V** z(GaO`E(34oY2Hu-f-}R|6~oV9Hd}3TE5O=dT;J8qty&p(a3UOE61z^RjK>NX z78lx@*%;SbR8&}vPoyfOZNC+Du?KAq# zYSJ}!Y^;x^QXT7KLL*vOOlU+4iwO<&J5yV3wBux4({lnnB$k5ABd`OUd(Z0kLgL-A zHcb)x9+RPkRb5R(qKv_g6{kP^gR*dDGyXqwpor)Xe{F~w(I5W1A#ld}!{3+=6_mfz zF?0Rle}Z@{laBYK&G(u0r;`3amdsRtfNe?g}J*349S`lVGtv@s@k%kQWC+H75Q58??4_x)f{zX~P4o7)B;@hC{>|*^P zQd_%7e-Mg0s6TXK7%=+7-0iFwBsgM3^oL|a)QJ9&Y6zUM{?N{Js6TYjF?0PP9mHdq zo@D)jS$`_&4`j(q^@mvjAG_#ira#OMu)66GIr2Ny)%+U!1GWtAxcy;nU<-&7nV|_H zF0|1K5s%d>g{8}}O)O$!?{Rt(+xlOQ?xD2irpK!m$Hy5}o~+D^>>W2sc<|1qJF@jE7z+>aU{dJ;WJ)3B4$ zupvowzt1G}Y+vT{OCa<11n);ic(!pw&Ng~7k zK7Kv_Wt^d4bzm5>b%vvJAI0!>dUe26LI6W(wt)apxJD47hiUFELcB zU!aur12o%n2V~@4;rOge{O>YE3s)KkX7c3-! z#^a!yJv}7jNnM$6@92;$TyGqR&DgUPUmP&QU0fXggxlQlOyL$CmxW0DXiQx-Zhze+ zW<1VAy3BAq-h<+{IvxuF43%RI1ghh4fHK~IGQ;tBPo~K6crQ8(Ph$7y)$Tc0K|Gf3 zNgj`x^{3K!OqR@aJT3)%EYQ(xJe~-!igf(TkH^17DW4vX>!!?#TzPst4!9CGk>1g% zaub$5Js#Ih+ao6Km`U&skH>7tO~>PBnDMyzNX+Q*Bk?W4O!g%*S-pY-Fow2CM5rBr zfvD%RwTRDXM8qBbAua5Y-~lsNEonfMHWNE;*3N(TMobxRpGn8e$J>2^cue|99&efT zr_y*!mdtd#eL=v-v*~Cy-kuv^okNG{cX9hDmLb$MtnHng*pGxF>mUa-M2)P29M}*z z<8_dOm<}8LA#}{VeH|RcW0{`h_Qk9}mD(3sGSl{Tc)-U)>1fuzjtH<0qeEl|FS)2) z2bsS!`!JvMb&y~gBz_I0#VW~vHLjAhrltADJF227|#`;TZPPSP1+No-hdU+4(C3fwG zBI9X8(M%0R!O~4{j8e-E)pTWtHP@iP2I%qBYS(?{bKPft)V>s1_aXHr`mNb8E!Vg% z#AOjY>8Y>C=)~z{?!;I7^E~P;W;bsu#C?c(Zj^@E%&(rwkO!jYr$^0E=g4{Jk=h$1 zz7<8^b9?AGzsn0Q0{!H-&{O2hpuU9w%l|vG$$mKKiE&2|%raa<(2g&E$B<~6a5y2Y zkLBX%mGtFR=*y9FZ#?QI$E}8UO-F8V1IJEm!j7S~6N|91RI1%4CNwg`j0ufw!fp($ z^7$dOv0`-n3P(8_k8#ZKkPA-Ln<;WC*w`NEDh)x6+e>0ln#M-a&AyWQSST6CXp95; z?tpL~zu6-(XJoyqyEP&PWhXiomR*{~s7X~K*gcNA8Pci4K!Yti7X%l~sCywG)k#p@?U4?>|4sL0T)}Hia1AGNntIP!Z8_7Y z2UqF~U~!D9k%E9acpmEcB&>Jm2jmarjP9%|yy=A~r^s{ya>cRsKwfy>Uzx>E2m%uH#BWXNvW>T(=FBYDd_>mGd#BXxnPOS~+bY_+{a;D_E#oWAh&E$+A9&7SR zo?|oXPo+6FSu)c(_D$z@(j&_ra5(5pT0STEIq(lqwc z<+JP{P()SDL4G`*$79-Zb&Jt0Tr)Np`4g0OCwDNk8Wx&~Toh+Vk1y`nFaVB3g?Dp~ zaIAbk>OZ1q2K?CN+U87)JmbtG-^@RB`zB+3P?VkCdC{tJ|1XUBGiD|EczzR|JK*9j z+5p+8jaF~J``6LE!T9Jrxp@aPZFnDix%Y7xQ{dqyGhkd!+++sKeh`1AaUBMb+C`qG zw-~MA@EftkU)T^eVvE11A&^7=8ucO)!9%NZ0c_o^bqJO;G-kwk9wW8T7i#s4DPmL4 zSgWIn42WH0s?{^fK|J#0N!Bx%^{0}aL6*!^&vdWTH1zF^ zit(h|@>^Kz|AH=BzePjJUVo;c@89uE1G!UgaX0hO;{^! zuj!cvcE6|X;xo02x3GMZ`wf+Ci#gL$hT zsc&e!9guf#UP%t%dj-G95q0Vh;9E1d-ibqePs*Iy$mPzabE|*bITh^7(Kb$dT1^{| zXq}$A25mvwcKncD4*sR4Sa34MD*=(&7i+EL3% zhw)R;Db$Vh9T*hJRj;LA+6vk&$7@%u2gT^HsDkktD=@fG{}#k3fUv9Xf@_AwuNG#5 z$?iKF;zly{dS(jwsm+&cHjNC|)tmlxzTQ^N*A7(6W~M|YS4_U%5tA<`sQEX>JD65gp`yNazZ zzKQc@%8_VKl^#*kUJ2>&k}F2GO|Z!(J@u}jLB6-z7Gr5iORu3tNG+{90$R)_?M?}6 zhO`><_3nTctDps~#xgeM>pcN2icU?d3*89!&3WkdoYvskQNB0QnUdLx znb)M`^$Ihu>5Axbi5@4D2lr*lZvE>xs!sUh?1pkZs4}ytVLz>v+=5BXmgXrK(A)`joZtM0W z?BvDDt(L8WjR7$m3TC=M--1Nbpyqo%xfx=H+ZCEp=au~!H(b8K8*NL2tI(R*A$R7` z$dh7sYtfd#rKT2u=r)%CE2cS0TdVR&s~g~vu^;^N`rAy687+#^G^qLBP;NAuVSik1 z`eWT0k5D%4{6UXao%8>~o{|=w&~~@Gch&UMcY(ig`@6&Lx=R+O{w?fO!A_I-vt={g ziPD-%Fjh~+_lv<*D}tKa=?m-sh5N;>8{ZoEAIR_(fe?SH^Z!XwGMevymr-G6aw~q1 z)n}p0&Tx;_hpF~P_E>$QA!=lg)h8PQX|=mR-A^LT_E=q@Bn^!jaejo6w2l{Ygus%RH zx04a}7h*)tv~kIG3$udnS9O*oPjA9_6S3{+w?B92vEu4$V$II$h8Ho!n00Jt1`l%@ zTO7|EN9JWlsgx{pon`Qezkk$XN;W*PusQ+W(Tk8{$nuEk%$|E(eCb&Zo^LLnNGp4= z!R>2xZ?1oxRl3=cMRI4u7*Cb|H`qnf3TTneK6&IRc?kJw`>`VnT^!d&NmWp`3vwrXhu;OX83SD5{ z(HzE{5y$GIZ))lCV*BY1Usley#&_Zt@|e2}z$Vk3;_fC0*wob?U}-jaJqck`gD48n z;)%5i1)r|Qv)JIhqrQgrp)Ra#QQwYjQQtK!>O0b+X#4ye+LN)P)8x4mt*OCc7&fJb zpgfPTHMK`ZcO(T^F(jG>1#JhiC@PPt_W*Do(+)qyCXd$dS{VZd1rL?QNFd=+({n&I zJZed$RT|*b-?lR_wL>g@AI(HIB0d5~?YPFa^DeX0W7HFP0U@R;gFE`8W7Lj5g%Cp)e25;@bg&UQ z@+9ZXUV)lP_5U!a{vR|{zwq%XQ2&ufeEzNLKf;GySN}f_>iASgSAp3tFRQ}HzDxb3d642rs2BT~Q|J&6s zH-;dGe*lDZ#cy)<{JL+-dk+AzCFl-|h z*aKA@Mmk-By(_p|GnbF;}bb(Y@*?e^DCfp+^_M5Nsw#jb_FV2&miC~v>@{t59#w-04Ag`>VM-p-Inl?QljjqCW@q^Iu{8nEQ%#{d^QW z5uIqyT|FoUDpCB3eG83=mmt;&q1Lp5b$grusnw_E?}~ZSuGOakbt=x%G;eteZHru~ z7i6u8i7s{s>X(1!TE;}lhsZEh3psJV)* zHxY*PCb1bip{@jyQAUHu0_&F=*Vy`cwf_lQdvK517oB3iEjNiN2{jjo6?$#CWy}Ee zWo25B?sFk_kbV9ZQ_r_S!L+Obg=JPGEiHclm` zV(_`-FM$uo1e!5nl&8ig)ACU`lPxFIY*IuWQ+K!?-+ig`>QgeKcieGDeo?3KNsK<~ zy|e+Z89n*rgtcZ-7c8GRV0Zm{pt=_H;Z=h%xGLI7&_UG0KxE%Y>8@cX<$$WIn1!u5 zuh`qurqImN(#6bf@kf|9>d3ZrlC}FfD+h0N&VjwR!M@wHS4yjWEoiwIm_4`HZtD@D zpn4p1%x(S81POG?KOzq>)%*#c(qDKp;xFNn6ZAWCMeE#F!m8NnsxVJqY-T#;xb3V_ zE^A^YCLs@qqMsz-h|^Cv9hC8}e^-xxEk-zAe^58V1+t^TCeZiPpBzS(k6E(%QA)<4 zs!d?W?}ez&)pkQ&@g4~D8lF^5<1)>juv(2;bGlPX+UmcJSe8SfX|@(Ddh+Ba#6w3z z9O)+xW|sPlXwB)XV9yZdYMz=!N+8k6?@We=ZWE!4U(Q!whcqJR00vj#M!sEnf;!NY z8rC6ZbQi7OU-JXxu})7mYgs#OcK%<{lmm$pV|cgg-rkKt(fgz>M_JAJ%b5E%BHGPH zAkO6cW$c|B*!rJs4-bk-`>Efyg$ByyF|@7>8jF!t5na7W`waG`N&DUmN(pc7H)2N7GP7BWwKCHMN0Va~V*~Do31=b(bvgLpgfF%WLNB zNWx-!uh|z^bEih6y@%R-B9rKKjW(}u+X%FIH{*6Tw09o<)9syFz343>rt5X}Q_#{I z#W#lc3)BEx<4lJ4At1`|J_tws@Lp^4|7VWx+*svY4_!gdtef~p~~}^w0a-(>8U@^iZ}#U8OsgnOK=d!Bwn6{yjI3Z z2x&79(6M=cNygbUg-qfmi#}B#A?;sxEHn}5>9e6k>S83zN#+$QkD%>itG$43PfOPLh9S@19Zmg9dBaq^g( z+172y$3biZ5^w42S-db4rBrz~lP|1~WTpf2sb?ZD<&5O4O}z-7F3fp;k;X)NG729t?x_cohI3IA!};d6DCPb zW0ICO(KL@9F{FD*qS|EoYJ9Bs{MnHP6f~E92Amt@A`2hpjgBOg%VSZ8ZF+a)|6uYx z(&*4!bPGhMX6t1e%r7-S*B>C+Bed5agl7}F{ct|u!YJ65PiONJWJI5T03(0MUcVO` z)DW;sgSs^qGblfsrO&#lFx;NzFOxb4L~KWZVLlIGKG!`*x>?ai2mTN{aC@Pq1EV}a zxt0n3@pbsSHN`(v@UiTLZXD8|ti_*ePb+2;Vyz+$-5-xbx`zoLS)`IT^^d)*3-je+ z6c{Y*lRhV~@`IG8o<9d6xs{!To}`!ZcZ0`=c_KZY0xXqX@L19ZMYNh;T&Tr4l&&Mv zhKOmm^PaEW@+tkn^k>`Z2kxV2Uz#^{c}D}<7Zew-&wb@Kf^B-$kGy)DA-Y!UXp z7GZa_2z!5vun)8d`(TT(yIX|a(<1CcEyC_?5q4jTu=`ttJJ2w zLy;+;`4gR`1{AY#ucnU!16QzuYvxNS|b@>1F!(R6!#_I2zuVvwr99u@zpM`bm=GW8nB<2jWvIoHA1ItP{KQ?u0sk?w2|iKE z(8UBFx>^nXFCgblecfpAiBi4+BMj>cS8deb9~;s~K7>9|%5UXJ1N=%I{&6Axy#}8s zW$3Shzo8EQ_z?d-gHMz)hRHP4gA%lG+lK|bz{ED{$U$4eCiS2!_nWxHC_^ETv|#hC zDGScQ2lx*de4>=|1|M_g8vGMO{0|#^qLd57mo{x%v+#Wed8#geCYi>rXDW<(?3){e z)h=AP>Y^G{87Dd32_08m7!Bok7p3!#P~UcyAH_rtq2ogdvQ9$2N3DZl#~Q@=iaZrl zj(;@N<^uMAZ|grA%1WyIF8Dj_q~pI5-Fj;}S@e=xd-ePw#G+38Gt{v{FG{P=0@CYl zg^GjWT6EkDW;ktgK*<`n(hIFLl7+j&I{FmtW?r}t^JMaH9rdH)e)c--VHoa67L!T8 zNFLhjJ_Ua!ZiFHy3lL`l}EF4K#wj>G8NpvIx8Xf-Zy=xM6vJ?}3*h2^cC zlREwc%GOaBPWlVr=!DTkp;kG6ScH#yBPt;2EAYAW{b)tVJ}BGDT6-R#(~p~*=45Vq z6GgM0n;u!Kde+ZP(RN*4=Ir{1u?M5gxYjF>@8=@l_47I6R_Al#sh!V7XL9$TB5ZXV z^3hS)(-f2&p;=J>QdsHr6wj2|%a9Pos&suD=)=;H+;F-%gXEw6|d+W}yCOAoTht z2Aruj&VQ%S04`Lkz!sVR7BbG%tz&?zmj@s-3Bjw3RHUo3Vy>4Tg7jA+{qp`D>~e19 zFF1tb*_FTI6U~t0O-sl&?*Jf{pF#GZ$-`QbRBr%LPLi1Y$VBLpn)t52575Jzo4(kS zY=$Yf+Me>9A3q;?TE+IbKCH7s>dvtiAfKn2_V@izzD24L<`Mq@;6nf< z4Wqn#T@nY9-tuS?Xygzc_30i=kX%1brm44)>9sjKq%qPmg6fGMN+4#fwXuc1$l`CJ zT&I!$(iDr}vX~Uu3T0C3WHFzwf(`>U3cyz(Lus#kIK0>$T&=l%uK+dUXE($h;I3K? z*(ieT4>VdN3J2go&+qBPP6|~xJI_iVkrop=GM=oXFrZOokD+k88^0Po+kC_fe z42=Wx+Oq-X7!T)BaK=ZfrQ2IW_vm=K$AomBL%Ok%YU%dX&^BdH?r8`tZ_sn>@XN7dnCf(RbwRDGT=$;c# z_xT~+7m#jjq*}UjYUrLDPZxIBpufF{bYmmc(w$#J7ZN9~AFm1No=3W|k!tDgQA78| z@pR7*=|aCwtJp}SI~2$rnK7ub8sgBCnd#c}_pCv=Fg|@~>H)u|n0{=eTDq!+E`)F# zzt)Cy*O6{)q*}Ur)zF3Pj-&gMknT%KH#QRKLfsTOUANrv4GccEnp>09%a|17?1wnd z!+3@`onbmgCk$6jpq!D6r^!^;HH1ucVTbgN2R)hd=(Q0}^~ANV!0E!Gi05`fU}R{L zh*K8gSfoh?d0lR3Q>PtH0 zM7wqjOm?Wds!K$oa;s^^pQ=@}vFfoNV3+$Q3;E4hO8P3OJDb*GP9e)f#q<uvg z2ZQ~X$e0UDB-5rZKv_>0J%fQANgWqvn&Dz^#B)0#X;^3^u0|40V;>FnTo&>Q77ggl zLImqkS!Th9l_0%^G1ZxHso`pow9TA4<{8zrJ5!Oghaw)Gw&Pt!N;#8-09!IKXt3## z>c)M_3M(juytA#Jv9i(z2e2^+oPbWnY)Wc1jiVzuxbkopnHqIu6Or{Yc=&(GNAMFC zWDBe-ZMsM|p&ULTW!w8J}r5s-pwF$J@jx4RpYSW^`y2s-pwt(c8o*4RpTUoDPjqb#$QTdYc%f zfzEfD)1lF+jt+=Im(c8o* z4Rp98A<=rEortZ%sol7JruZ& zG-ob$Ni(f5fhWy$D0~}f&RhhOW`}|ef;2lqLEK1l=Hi$%I~A+|q}dq?neMRn<)XcB<`SEwo24+#XEtVqa=S4bGnd|^ zIa^`oPnxqs8Qw^9=8~K=GwL)=GZV`5Mw&C1>gxke_GEgDTwm>Edg>*+BvHfOnalS< zSTt3wfH&l-+U_#jNyv=Bb}N@s>5l?75QXP zaAsFXCpBrVxRG?xwy{unH51Er7Um~Yo4eXIVqd%Dfm^x))b@NTx1uwJljn=SCF=){ zbu#EDxsInJ4cPuQpyj_DKT{`TNoB~t7S58L<*|UDBmZe{>Xlq-LBw=v$ea4Fs;A4F zdS20l6m8ixrEL#bW3jOPWk=FbAA>=*BRRVH#}jYZ`_Sa*)z^Gb?LCkj{hvF3nVPsz z`}g}X^1kHnEWl{j`pb&@eOjEC{^VCz?zc&tj6Jb#31k~k9^b6)+`B(H`ti4(bL+%1 z?Vot|5-iOjaNWyp`pU%W~L2)sssg;KzW zmlj^?Ot}d+hrXH<&R~1%yQwK~0$VV5B_NLxY_3mHT-<$eN)muU%nmTzwfIPP_ z*PFV(>YY`X435WiYWrBtDFstjuRsc-UE+Jw!vt?MhG zHKW@2H5r4eAA;KWGIKO4wSk5Tr_{!VC7z(f*2Zy5ekqtz8&jq>US?|J4WtiAQ&StH zyaWm&fYsVqioR+sd5ZwUI$68qdVz%1@}k0qXtk^?_|a-PzHnx=S`I0k5UrLag=Nud zSx}gaR7+{JFn{XMMP%z6x}KSeQoKuJ#*N=O*3u?B>q)-b5CMXZOh@GT!E1oTOF1r&R2PFnkp-iwU>y zgls;OOc%N`N&nRV-B5xq*pb10Prh%INkDpi607p|$b3V)HfmZ!4;8>?W9MTbYX$|4N4E5EIILspS*&q<|46E^ zmcbsN*X_jt0CZ~&5C;I5R%(Da0Dw-R0pb7v6GjaX2LM=9&;W4&a7F+S2LM<#&=}$X z0P6)BAdWDDI-^TDn@TWR+jz_1PpL4fJ=W6`l&t5Ib$isyvCS*8IoU$oh?C(d5rPi&_5r3owiTs z!5m)=@q8FW=OnDkk`ooe>6|>6WA&Pgmq3;yB|PUqxe10N0HbWRQ#_|gzg=eD*& zTZAcwaa^J0{oUuFb2-IfXPSJ*mfqX6WtuhMXy(gKXRHaiA~Ob2KGwUl?mQHzCU*Hv zK|E|!7Kr1&nPqshi*&NCOQ8Y@<5}x{#%HLe2|X+R(i0|znNNgnLXxVWaARM zA)fy>VxHa*;NL=cH50eex3rqpZS)>t(z+cUP9}##^tUry^4uzI*MA4`&;{#D|7LK1s)BkDRiQWukPMI*Tla+fJ%~}93&(rm;DFncadXw&`F8@E#{k&X z&e8APwpxSs%ZUc_v7wreL!vRU<0@C%z?y7aWf^WVoZ=sefp{iGG%Gf+0p*QRbF>kgOl6+0k`II?o4GIjPd zOaM0NbtJ=pEIM>n-Ni)HbMq5hpbcqjCB}F1tTwdj{yqqe>CfS(2B~+UXU%sk>paltcGq7=KTmxCza2^cMF=Y%Y)GwtBVwzMqL`(UqpM<9o#PjtIIj(-m@$8m2$5a~+^83A(J+IrofC^sSf z($OaCld}zYq`Sg^!eVS&+d~KDYRYBsavCjKV#GKuN_?by!9mDDf}7O}#e7Xr`{ev? zWK}cuMkIJUI^^(W{K@6Jv73^vY;Bxb3zpiXCrmYQ0}|DGk-DzD0u)Wq$SlcefXKp) z%-;WFs5MWiSUT^y6IB3sGxGR$YZ}DczViq75y`n%bLKW#SJ>{2*B( z4KKJUlc=jIPpT?P*6#64t(my$3=9HGo{L*S3}9q-V~H{gCW6pRP3Y^8a1nO!KcQ(w zlL;~={ODOQ8u$ZzHpPJnJa!5T#aq~%$@mYUSv9XV$||ZHFGhcHWf`>8<@me~A(vhP zW2=QUq^Erec`BV_e7Op}rhQJ1**a!7lKmCbL9CrlLJAn%WMvC*3pn}1Q+fs%Q2hde zq-*LX!0wC%a@4MWFR~3uwNHTg5Q0jqXXYkXp;w>b3lNyfz$B94#!oK~4d1jn>bUoT zTE2T^cGV4|5#-M!Xs|Nq)X1Vh4xL{ohcG!da>%o;g^Yp3fDUR`?g#N6D^YoXoUWHS zc*R!BoWE3MPHo?0_wYZAsP^8vU`6~2jm=;20KIK_N2pu1lD+Bv&fm|Uu ztnNIB$elV=)4(p%i_jUoY39=Z7=F6!R1db1>RkID2c&RUExnDk^m~eY*lm$F2%LOj3&{MM*$L9fneBG&ZrO_;=t6pE{t zAUhNhr4i%HiS%gRZHYXv;ACC?f&J!ThG1e2Xu0JT_i_}@=y|;*OSVs zqv1SqWd3A2lS082=GfT6QLSe@w%Z$I=v7GLb`Gn($pFM;2NxVc2y%LcQY7R zC?bIhNySUf;r;)qWw>z zc{LYg=v|a$x8R$CUBSpQ99R%p76_wh5o61diWVdEV&sLy2!vT*M3_AWVHOo-Cfam! zsr4!35mIaS0Fz>>#L9_EEiIsA^E~@KWzwhlr5*k%)n zFi@lT>!_gYiQ`iEZmC<#neC_(MIcL)NEb$R9LNGw3f;Fz1ojbB$YHMS|&S`GXQStsiE2u$1RC-`*OdU&QK zUv$9ERBpme4Ne|xt3M;0w;nu-FZWj`?^Up+BjT?C@XCL{?`8W^RIk4p85lbzx#Hw@ zSrQQOnnMZH3z$4uSZlOEZQvi*=8MSFMa&a6r(X+PWF9%X5viyOq=UC^9q1PW&<29) zXc@|&SDVIx95~hI&?rP501t+tQ~w3R3h(UUTD{}J_0oDiRwn>%9q_=T~S$UNqgWB4phXPGQ9`4C5@GM*jkmn!0JenQ3OXIomSh2`uxgm)FI9 zHDgakV#A`_EOxR!_SRF@Ekw2JglF|)lfHj5+M3M2O^PXnTJp9HQ8@dX(OjlJg|jI> z#3p8L+lG**b_Ky7Ezwr1J#QVd9vL%#o!~7055d1T(t}g}2s_Ha$MKEAQBJvQ1M5~b z@Q=XXiP%tAtAC{PdHgQ{f^LF)n-kV4aH9>N50=r|i%Z>-kqGKe%*Oik+Ff*FqviR) z2ciaN7wyKC%J%l2ui#3vr8(6QPSl!^_c#-fB z_B!=qL6873=c}~@@C*ifp(kPiZL0ERP_zB7;J4Uq=hRo}%_%6Myms?E#3|vjOi2b6 zLsdh|S+yF@{1FZ_7ul*+0P8tFA=8D+;mqZa>Q0F7Tkx6LE#i9?49nJ9whvvHgO5k0 zXk~7s1Ct>2AHXl|rgIBvEDRL0LZC%q!>Z;76_8q0zF4yLqWTyUuL=G($R_;n1esZK z1*^Xo*4(AL-EY7dRXjq)Ly@U$0>r=7YGnicG9Q9phNh|1+ zN9(#S9@?F_h&4)iCrw0ezb;07vcJbN;7BJ)|+nT}n7 ztt+rrXr5QldClZCNYE=TLOD2KLdj4Vx;P`(!(k-)G$Ur$z!*WcLfw`0#NOq}{Tu5< zCh7KsfvZghE+FbX*(Y$W8}v!Bfu4wVdNJZS{yUL$!iNguE$+}?1p$X!I?X67(b!}k zLCU3mS1M3_A08g{)tYk_dJARlQibNOF(lf)1Mmk@cA4oD6Z;xjOZ#dB+5a{ugfwfz zD3xyv^>>cObIi^c-lgGXgpn+{7lSrtwD5H$DGCZ83^TiP`H<8Sw z1||xHWf+FnFc-+8IvePvg^>)>cJXVrNSdN7xwHOewe60K7C>p7xRD;4!FMDYU-9dQ5r+Bh6 z?T*?CM_r=KwiJt9=UfyoS?Vzqbsj2T)a_H!V%~oMA~-YM%QngB$uto(Z4Om01dX~h zQrd>kMXQ&vO^Prpb=l4=I~Xu=7JD9qz*uQu++O#nxZLqRERX*XsYwtt)!Gd&Pc~ZE`TRQeNIdm!I57EMW5Z7fGH-X=O)XL zqnCztG2ir&9?PEv!9*1tUF?T zhLap1qY5B5}w>>W?yTy#R-oSBY|d$`06+Yg95 zA4D+aM^Axujw;9a*7P`>YXILiWZo*tTeJ4H(!(gb%%0Ux$+B^~FQ-0+>cbWYbq&7I zccw9d+iuCp71{=Qln1k3$Nw3zm+O6YShpsQtDcLEU%?D-u2cRD>0o}znLO6MWewcH zbyz9^K9!+6q$`jzZr(2cg6_-c#!?`^v)b^S{U%r+N?7%H6VP@2ITkpj_exDOD)ed} zhG_2n$Sp7AZP^Rx=2lc-O?2(`{8f)39QF%A_xxYM=Vq5z>2Zxm_J&BZq=$KPnyJEo zhG)!?mO|wBb5_FfsWuxyv0C zw3HYF$tmSe1GI4XlowOVTDGN-Lbr8Yi*D5RRks2H;4&+ZL>87OW$%qbM>5gA=!9>CKzZ zb|78vg+OET8cY($C@<{}BBwo$(Lnv0>q7NNZ%|jIQ?FM5-P4 zLeA+dc)N8L>};ouv97fj@`YV!naJsksS{DAkv?I?)C=KOH=yZYrSg^d1hO~r0v&Y~T%95AdycRO74F&+t#4+3FenRP1dZR(I zU8duCxt7wy=7BHwK%y$3SRk#?JqyARlBw_rA?XZQgd z?OSBe1lon{nYbL`lq~Gp61Pq6KjC;-JENzLqt8DxjJNsAZCq3iJV(Y=|4)FC)^E^y z@tyup`Z@g;2LS&S0K@^np96q60QgG)5C;H%4FKY(W|TIc0(grV7y9Og{|44rX>feQ z-{9Eh{SSW2ekQ&`Nxbeb9z*KlEd>uvdb5Ifvn5_8jK`3f=esAM(<^lPLOKko zOP_UU((e!AWhGuNjK`4X@dko;gA#8jjK`4X@rHwVb0pqwVLXO}@z`eO3NBj0h~VPT zZ_pAL60`(j?jB&y6U;qAOol`;u?1`M#oRN%RD!uzh{=!uv%VeVB^KIY zL1GodSPTivS0Aqw#G8Ty^x?e65T8l$k3;`|O z85UMMgYJ9{ePJ@7^9-T0cSwgJVV+Le@HPl!cChjY6x*?l^yW|5a7zH4Cs29;y)}UD zAy9e&y)A%F2$WtxZx5i80;LyFY?;%kEfFZafW9Mu?kiAw0exoxJy@Xh0{X51`aFTs z3+NpI^mKvJ3+TH8=nDi&FQC|lrt|P(fzk`;djsfJtZR&Iq!&=^Nz=G56{`bUA%3+M*|=rux@UO+z>Kwl|PdI7yVfWBOy^a6TM0NpH5 zdI9}V0DY4{=>_!O0QzQu(hKN)0rYl((hKPQ0rWirr5Df#0_cYYN-v-v4xkSTlwM4Y z_CX8FpFV(P6Nv3_4p@FB;T#i>h76OvAebW_Ty4pEhniL|vEc}dO6zXISP2bsnDYhC z3kUSbxmvHhgk;f=TqJjzCjEz$e*`n3^~M_*4K82LPWA0OA1PGXX#x0DLw8h$BM$ z^Fe?(fcb?0APxY&7y!fp0IUl-KjHuY%RU+)4gkI!0K@?R7I8F&IIt)Fa{ypZysb_I zPi=K7D_|K+6%_{PU@0=aR0X#L1jGRV7IHL2aiG21*6FBY{()0pC6$CaiNtg2bbee} zm{q4~_ci#aQ?#3XOC6)#m(smlyWdIo3hlmw?ql&II<8|~h;*((`zSvfwT64mB}JHy zxcKWc4Y-+x&oo>dSaJNj={+7lg(bGX4BrmNe+52xe$K~LAYQS(-Or*8b{0ByxcW7k zUMH^5ehgoUS+gDDsGz-w;|R7;bq46+YL=rJBs@6{`P8-!vcx|E;l%^&Y4JP@9*C16 z$7ktqw#Zh;Afgxx6f?@1B)_&N`nh@z$u?r4HJwH5pjELhdXX;sPx)BH!SS08%uxKR zfdvLKd{Gd7oP;O*O$@XBoB7H4Z{x@D&*#VWKgf^o^OtSmTS3)}gJZp8y%_Ycst-fc z6+kPdz=SC{@|bsDh_9^}8=i~Aa}$0k@G!f@bGn|N1B2BKVGuTM7jUCsse|{B-Ug|g zDs&`O53tI|BfqXH16O4C7mzMi=y~5eiOQC5_5P3&Y)DLG#PjmOx4qs7;?VZF$z%R#%bkKfrzUazbI@!$)pQ zHOcUti262YtLqS==lPE86XHH6S@Lv82F@s*ihCPRK;cVRWV{oYBeN%F8xlMMg5}c! zxG%-v(GU9DuvgoT4CPBDDF{gvUW40NL zBNo>A`Q8>YQe5Sv2RdMrTMkchTN_*ipMlEHsmn>$Ne{+_zs&ys?7exMRK?XleCOWo z+dVxC^vuvR49frl-b{B72#SCk?i((+f<|#SqHvV~MS2=>jVta(afzZtV~lZ)MonB| z+)XC#8@MJWYTUCKCBN_YoT}Tm2SoGyp1kk-$IFN5TXpKxsZ*y;Rh`-cDtrac4Q_#7 z3noC1NrogNJQ0HA+^G-lvsc;-Ynl6+wL(7`SV=Hr(r zm_pveupZoFhm^?&!85VCE#1ECz$$`0)F=GTBkS1o9Q;^#W+TOkNk%E+y$s=-XMJ#3 zF6I-xl_*;O=7I-oDL{#l9yD}{$NL_IikHaOq&Y1qzK$3b-1mWp<)b75RtD%WIq9^y z8S3E-1V}MAwI~%OI@4xA+E1KStg&Ym+4|~A754PTa$KnEXjAQ*iAMo~qsS&(M&ip> zQ_MhcZw62OAp^ZPVMat|cf^vJ%!=vvR$pZ?`3?d8sv7f$0(`L=c%}gFtO6Dn_`ScV zh8*T|mwhbV;vRnQ{nd~y{9agMah$P!FSb6%Aw&J%m#ZQ5u}u>=Z@7PKqAn-1M>>6j z=I}+^9Et;gmn=XWUqDqZg3Qn&vN=VsxRjs9MEQB(xmZGCo9j0E0h?L35l0f_n+ez? zv%P)U(h~;&uULRM0C?2`!~p=-d$o5K2LM>}Re(4Ez!IYZ!~p=73l$&^0N$_waiBan zHhdLdY;wVzO}GH;W&HW+8o8@^hAx(2r$lSYtbucrVN19N^l;*j5Y5$HC_hKEd6=!j zea=aN7=_*wcn$HWwGuTy$Ddz|BxrgTw(P}xgHDIZgSmkaI}pUUHp~@dtsHxS7S75h zVvJy$)!u;SJ5+=HSdfX82gNx@Z&(Yvpt6ak&@Uk?gUD<$$pf&O zY=yb70S&-B@`Y)a3Ruy2N$qs7Qe@m*XEJp*GX*M;`I}be;sD?+3lIkkx90#5!;P(g z8;HFlh8qJkSPVCMN%3t{v3;%5nzcD(>4JEu}+JQ0NL zf2dH=Q6n6ZHf10sghNN5Is;`PA`=Gy`&fWDsP|txrwZ(SEw(tC$JX(DnzKaei0)2l z^cz!+>Bibd?A-*%jmi0EqpgAE*9_;iaMqlw4SPHOBro{ zL~}d(2R}nlexE+1Q{m;7bSj()%pwzyQ;}2ihDy5<832@1n2=%9Mo4K-iuG`ICMXv< zm&M&4FiOe?kPi(CKE&~~;3p(eSz|Rpuo^Sv1BpwKhI4?VHdDfxk40v*Ib7>u(}@ws zLBJDhFcBUMC$_PvLyfl0Ju&!-jYyUTh(hyd+T>WQz{Kj405#?Mn15o;728%b_C__R zxfh%Px-bjYV)g-*h95XPgxp@Q?nCLmR^5luy`1ifG^8)V(KrNU65;posY`@M-~$VF z1HYp2^VgA39<1EKq4qwBp6>gqU{OB&>);%(mm;pcDKa z2}IF4xR0V+R0;bI;D!RLj^e=s;}xxedNU&_(Se`1{6T^;$S5(Lijz*fYmq&YJqh!)UyTMIJP)96@@E9QSVOx$yu&wEu?9Ov_o&P~t*ymGYbKBP>xD_wYBHG!=YeJPX|!K(PrieFhuFW49@+1xTZK-h zFwF=BhH9p`mF`?DZfskqk}`enBY6^!+?WJepG)p9Y?#XJH|t4TxQ)mrlCc$`+eH-d^U6zm8uZFXEP zS_37V#RxHv1|bw?;#Li+(Dvr2P@#xT{FSR}VLnQGg0rL-paUw7U_r8h2|{E&kB!Y7 zPV&r!0FM@VuqDGCgTkTAqxjBU;1UGzJbFydn;Wr+oY(jCNJZi6D0~v4(r#4<&me3uLt4Af#BT<@9?=5_4H?{L!Ch{|Uj6*IMQ6hu zi+>KhCO$(d@t43CoQogCKM$XB1D_JXO$UTuKzM~k7rN39Ny&tJzzKICUI-kWo@fKW zMpL(yDHt}t^a=g)#hCXkZJf*_-b z5k06^_r-9_ioxJb?218<)}TwOc#1KBmx!vE{{iVqF0q?bq=*5vt3)nk7$qZl(!0!Y zR4Chh8DQ9FSYC>+U*azw^z>Kxm&4V4D&AWOR#D|Kd6~!s?I6ZlFi^jxD}V&O@XBjnP+i8^;x zbEzJ=u1`<81ymBHOVOt`Cvjm02IRQ0il-Sl5>K_xz-H}K)*mwipKG!6hu5^@iod^s zN}(SP6t4p+)BMs1iV*125hDwQNr3uOWWdx5l412Z#6FQU>XH@@^Fx z$E#2hh0U~zgzIw-FF=13P1ptlP=tj{QbE)5Ba@hO!_X@;Ek7^<_FKdOX+sp0YfhvK zA`lG9I;M=-E>XG+GAi`P?1Z?&A0pN19I_#_Q(?urMEBJImxVTmdOB?iAapz@Y<+g zhK-pN3n=ziPxo~!BBGiinjl3K5%9z1QcgEwUS>G5G`<7+G8OtVWW8o=M5D&XvH;sP zhqs#D($LjWSq^Q_=a1Z8r+rSXcM;kX0R?lk%lP zw9W``03anE1x@dmGWJbe>-S^8(W~5u&#LA!TOXXE@Z)~3MJkR>oAdoB6r>#$jWEE9 zq72a0{ga3R7CacZ37?c`fv>vIF-#cvDd1q>W_-W^;|c>Yzoyh8y1{li;XDZ*P*+h- z?0@A(EbKUDR}B+czPPLh1V_~s8_-E-ffW20MrS831(Yb#9^od^?puJ>05#4ZjS0@B zJT?<9gXXin4SxhjaUkwf*cl#<^zq?pSAgw2etr^sTsdkVpUv`+hSKGIV7LV-8D57V ztP^3#kU;8Kf6FHE4qz}89^8v0EfjA;J;SXnv(;q2^sVqKSIZYo7+lF$;y1jtPquDk zw%k-}&;iP{EBlig*Vn}XK-L1p0YH-lhy#FT3lIkY11vxs&$y))0E(mBfHSw|-dHYo zQ~C*;sCi;L#|;>S#sh4V4wwv1Aul55C;H* zEI=IFxIr|D8J+;Eq4OlSG#DtjmCk4j7puzzX#kTQVrhuO+O#*TZHpO-CJIA#4#oDx z1pNtZ5$lj;oRYV?u*w4az-wv2kqNOsuwQjB5Vek_9cZ$1mFNNOW=k73nNU-G{toat z#Yg2%;?X-PjNmisr!hr&gNa&-l3gD6Ow^^e25o04CihzK#Yo&q4c%w}KOOxynvCzn zbMRxzRwhKfFpng}h-<0$Iwpj-nL1;U*tg?~O{q(w%pUrRWBHtyiWS!`6ZA)t|OLXw>RE!2X3QfjTSgRH(e&q(Y=Kk6KFfp^){=qQF zt+~m?wcFaB*dpe{c(S4giSQ&uE*w=wk&~FbC_@J-rafG9#PNM1#*ky$*6GP5ah-Y+ zN$ZC1aIF{T-?PcynVc~>0IC$+i;QCEfQbs6&h(In0%mhqF=9C9prK4Aa99}UbhWO0 zg1S=2$&^$u0=Q^JRkn>OX{NEz;BT7>&jA*$AUI$*Fu*n%`|_Quk-jHgLIxM2a8rU8 z-Ul9v`xtNdOZag9{b~eZeaqtf3efxnPr${llu+=4`vENsOYTZtZ_U^G!2Tod&l(#d(Kn7>9i`bYLN;lpru z{{}yGF+~a=0iZs=8*0v@aPdLJ$MB^YEj&^s;pF5^_c>59bdQPd3+PCtntU8jUWRH` z#2^EAH!vP5JCyk%Ab{c%fE1VGbwhVmZV-lQ;kqcY*SzN1TytjPFCb0ah?`m3T$im2 zryv1*xSdGTsZV9=n;OC=L87n^D%6D_SwKI;vbFdP;l+STDHx0ZCkTAF32$yhm2Ncp z7K}u^=6-&*QPKN_Pl0lNJ)<<=3BX?_TOTe#M1=`nSOl2YgHW{sY_j*W8B|4s&%sr?F7Hj>)y2K(-8&%G zsM_#pFcfaC?u*bGgj=fnw}fx4?%&b9t+;~^(58ml!`+-nrL&1;a>u$q?k0Ixm-@;x zE*!(+68I#J=!LzAEXQ_yDNos7keFG3DR>*Gz-m4g{mnYaC>LiaXD`4q5O*8VkYOL@ z%6jg#QU|CKnO?41OHK53{%_-6E;7dNS@)3T7=9r1fe^T*QNup4%X?A~Lovl1HNh)-fIJfW3m)j-e;+tG_dZq)XXXMz7N_Txs{it*?{)x`Zyo%E|N^1_4Pv}Y9O1fx9D5wv@~ z%WP1+pPG9WN-2B;p`5@<&Aq{T%Wnb(dT-&={WgAtr?KD(RVQ0vqjEGWm;#-{ZlQH- zZ42K)w0ZOjFO%02w{oT{*j%ZMtfoS*(ZLSTfd!WB{sYMKOfgNf@*m*=yYJ%D{U`ir znGpA<#Qn3urNvf$PjTNT?gtTWJ8-eLqG2u3UxQ3hy#Sb5+RDaoS~cn7Vf7{$e@4FSbzRp)DSHWXN%W-m~cHHt)NmNn5^QjoIh2 z&_ces{vn0NS@ew()xaa9u{}AtY3s?9bmA%>i0uY=-{=$rXZB7>&8DaXu26EA&$Y z9K8P*+3K|HHCD41V?^#$pxC~{)`9hJNAPkhc+oMH7jB5ot*)tNl)l`|mjfDtFF~D~ z`_4mHF%`6azL_J{NxvGtpW_09)vo&J<`DjRO|<3Som** zWb(tY@6bumFbej7`uTVcWasYxDL|0 z9sKKBRw;^`QGg#ND-pQ%c?Ixs<~u6m-y$)Tao_{Z-r9SdQGm*&8^uHN%_%S8UrUCP zVG7821_67pFj#pvzmo~5PvOORULuf2c(I?M;+L5Q-)%uM$5TJ-y?!7uDq}(;a<@y> zs|AJ5(_#XVjoPxhW~7oKhW2IKAy51ls}kW?&~#kPQmG^%4Hy|kC@>yGjbw25I!Ir->R%Q>gJ`U{%BbsYSG>p&^hq(BP58;SS9bF<@BJR8~ zP)`)H-d6HBAh7sxfPyVpD(rhX;(a!N`@CW|sz$|EDOeJhdyDUeqx3X>+Qw{X($Q@I ze%J`^&5zFo#l-SLK|4%sE@^kLZF&>>D7zN7EdJtOD!1= z#IMcKtrNM5U#a&kCPn{jW~y9Oibi{I$B^iSYEK__u(v?@!No-euN3J|440hXT^6H2 za&e6)(Av@$Ei#Nx-X3ZMx0VLZX@gGP71Jr)Eu1KB)(=~sOZUNP znuQKTu$A5~6UPs+ZCvi*(qKFSNTIW-2IO(a zZerg0$V@OC6ik#{nHY_UmNJ9$>86_200#`%tE_`hJ^D?YCCC(84StI-!{ycQq2|Io zh*}n0A>oG*a;71TJrz+;BH$|4Z^9kEHNhxQl{5|ER$+t}+yyu&pf>ZS$eQfI=+g#p zl~lS{Bdv82!Q7FU)%HR+JXQKy&-n>xp`|n7ay>ro@#A1mMunL7Q;&>Z)>DrwLrT>b z6OQ2?)kRZ@b?7+G!cMD#g~25nwy1NGwhK0p;TVTeGJKGL=~t1|>&=w$+hQzP$~uIt z>!pby+H5X1qTHn4wigZ*dc9d&3`C2 z9P0UIxk){ngnIUiSUqEdRcwp;-8=}{ez&E%)t>ibZbUX}Dc2sO$Hjt>_PElqUJui+ zOi)Gr*WR%nZOGYw#7bxT$+w}Je=RABVHFRXlv)%wD0XTXdjjjw2jldk-lF4r0X_1xB()Wn*0B> z4o*PQTF?GN9o!HR|F7yUjv202ccqs)C{|zRO+ZWS?HW#`SReV8?a`ztPf`a?Mmqo- zCK@mFsRP5%Slc?#ueuJf{l{BI7(_+wdtU|j!x4xd4I9>|T*k1yrxo|gF+bX3p{d%4 zxx$w>dv$KpyN8{ZG7pr2Z}yeYUFTl#-%{U#_Zc=uoWf`v&c?TOJw;MVnG2Z4#6$}Me3wJxonm}BHz@D>s(bm*gNb-fp@j)y}V;O#7%h&<&};jEIx zvel#Fq5(w35YQaa;wwOFih9%PQ5P_3E_j>V4eZ7AsA1o}4p%>MFCl)?*AQ>-MU%L? z#D+^GNMns0wfEwR-qj<0fOgsAdd}BGx_V8KU@##Prog|ZY}$DT{OW1pjv_=`yq0J` zTT`^{CE5?y5)GxWdTLD)4g7yCli0nxdbC%e>|QUr?5`0BrWsa`1fbJ1VvzYnr#_DNiF&XN{VX(|%$&?+JqjEYhxU1X7%D8+> zM6hk+n#bjn(Vkf|d9BUlRv;BMlYM4abQoou$=K*uY~Zy{Dt+5Np)%>z6|)+xxhOUs z*Ap<7h}*_t4JHugZNxkpV^^l9#EeC+gsTD2+0#DU0C6#Nh{uK8X!qh=`5GhH&Xg7#eR`h?(hOYGW|DpY| zEja#0`$ftHt-fMZ)3JMX7bwv z%A`0+hdV%nL=n|$NAZc#yw*lC#zLhXly++~==OuvJfPhYE;a!db((xC&IQNZ;f||u zA;a!(5XHA`tSfTr>a7eDY*yJOk?*f-lj3tCQ^Du|EA7%wNcev=uKK^86WJ8yw#GS; z_;g-u5;?X)qiq0Y&g7rbYSBxX*7+Z=^6w`yi|HBs(H4CI%3`oAqp%hp=U za(89mznT92Djqj@l~ac(-F$furn=T<$TowOHt05OSlkjLe^VoaG}+XdG;d^@c%7lo z>d3q;p#G-)?cNK);oiiFwSd#%H#3Vib&`pvP8#710Amepb&h|+)b}Cf|7ngHIiBX% zG^;W-Fcf=OzB6$me(WGP(|e~Kw8V!Zz79p|TF)6I!w^iw^B#+3^%HBVBIE899Tt7N z$Pa^!O3JscE%HQcevRSciI1;OC?6`(hT0rn`>k!oR`}lAY=rno3R}!ZwPlkgbGZDg zv>wJuql!(V@u2q?u>D6hr^^Io)4WB*Jh;^vJjz@0upKzFu)76j+`?2k*cauguM}es zz;~$`@i%UDyyZDNBNP1R%Kh$G;@=OLMx!xhkuUFG@nhm3U&dpi*cV+Qnw~``X#n`a zn>zZS4%-^vDSC@JgXK7;XWyNQr&lTOSaMjK z5Mn7);NM){f?g@_iV!+SC$Qo2T+9;6TBRrZG!Mr3SM?@?8^xNrB@;tAzk3mCf3O1e z2iv=;RROGKf1&pM{g99KCEgsqr{O2MN02DG@b5uDxRZ3Uv^B6S^lnyq0o}+#^>$Z! z0o~X_KVqx2m|j3Pu~5CSm0s0#?y-85bp-Dk%40sAiTS9P*cMr64Bi3>4^`s`vXPj- zE8x5gCwP-^NN^V6!5j1?=7Ex%438uTG%433@Qur(b;i~ifcoRFfWM*UOE>>8JzDjb z?^FgL`=cZwNfy4@v1F6s9QwL(e1qadx}MBKV68lhgKQfBT$gI?s!z3bHKm4(Z)?Gh zC)ew~7y{1Z@tUiMTCVgNiV>C9eLQQm$Uc;u&^EGdaW4fU7PFZO^o7CBUJ6FxW?D}q z)Y(gsRKqE&&fs~P5ny<~*~ zH@o3}sH2gAj5m+WVcOwpMC=$irZ$~O$*!)>Mt#Dt=MpsKTvWpb`+lRdiFEg#;BHiN za#}XoPz&U}$ZTBIMaC@SsmM?j(RGY8tgdGf?+Nhi1yZwL0`}Zos323M9bH=1oMyw zY)rsyV5w1ZS{Ki$Y=bbo@w;nzYdDk{_`qu2v(i; zu`{GDHzx^n`soVN@|!Sd_kz|0+Z4n&T1d`T56ia?|v@Wgdz0VT0 zGWQ|sl$y7F$kwNE0Uys!r732%J4bj}O#$7wZHR7MpD;fS1)$Zw`U!J0>xvD!a=HSx zXP+$}b*cG>gR6$xf?pdBLwfp|G4iE`IZi;&F7m9=@G@yKpls=_dd8UJ&2y+X{lmi3+&DKxAQ< zOUZcDc+At|c|2WOnO4L^vwF^Et_#Lj_3AkHCegGv#FBb(jO=YBxWt%kW41F``s}zV z1)Tk9+h_;|a+Ol3OJ$K}vZ>yb0$;HsnQVRe9DMSP#$V!)LEgBF5*aw=yLe#sDl|sL zv7S7LEc>R`!dn2#-JduR8!lMXwLuRG`kUfNeg)X!WVV(H6Q0NPH!?we zWnys7CC)dTTiSv7{cd`i;eSadOgBuiqY+ax1$|(Czh{@`2KbP4I-a{3Ucgj=q zVV9X|HiFHCo{;0o%H{-KBF^uJ2Rw1R2Sh7R%s<8ezA$_RSS(BilT19DD#L8#@KAjr z@31XDBOxNzW8sgUGz`!;qfNx=G5lg2*~jJt;kjM|}f`W}^yCCw3L zB{a?t4hT}bo9!jFq{63xPg#rx+DIPfd8&&cVzl~M=HpckHwJ%2U|4aPBN=x7d zOOhZ?4p~fn~OF>MluRki#{IK$ej<-V!(!NfsM(oo&{Q;$h$CIp2l!pyhUr zQ>H~^&b!sLy8@9ePJ6gGINIKrQK;_0_od&%zzPd|?DuF2pMVk+tA;iW4w*U6#`;?^ zG;M#oBP+bTBHw^bvFIBYBPv|ltegl>W!@P#?XruNEp#wTB(+p&E65_ZDG$M?N|?}0 z@C87L$NuLwQQ&8RcyqQIb~a&6)v$92 zYtA+o>v11Pwkf?RpsnWK96xJC21;TB-)q6?aGf_erK8L!(4e9~QN}C70S}%j0Gd0+Q z&6}yh^AT8>sKKdlKTs|s!(uE;-GK35r+T zXw6J|2gMm1SFwkanpNyVu~6k&O(^rO-OI!1W%W(U3lT2Lnco}HSUFAXB}a_kS`}8Q zEjglXpODz-R270zM|cqc#*1DX*JrJ+=oULUO31T{V5}%9rE3$x$EcYJdD_)*$;xS* ztZm&FBZ=$SEL4e0OtU30e`Idr0f^vvl!J-K_O_T)j~b(i;4`EnN3x})2QtxoiGKcAm2@3k?5Mg{p_5hKTgk zA3*{!znmfsmx6MaJ(q%Akp`nhIwnr(UJiuLXq)}9o2nobZg*xF z%#_d#VUo9)D&kJsX#nB@C#{H5S2hQK^L9axkkof(wgN_Kna+Xj4Vo`Azj_x|gqpEe zRuSUKnGxL~vMcED4JzG96dVPK;^KuX!KSR6)(2O?i5Fvjh>yH&>NzJOjaMqV&$7ZH zb~)o)b>cU?8gc4`Kq|Zj?r<4?@Oni)j~6trg&TKJCxh$gNZ_W3N^W5P?1D@!t8Ja$ zQ0s?OgmF*BM362s8g1IukTstK_vJf6~ds3ZOo{HMV%mBzX(Iqw&YH`}ytIl=wYNjyJsJ z>+%~bgh}%a89=1D@q5TdfHhG-+7yQ@1$PL<*E?tQ{s`Zh2HGpYS90Fo!icnD^ROQp zg^6|DeIYU5=#v-T1TyuFiCTS$)asO1o3Hal&hpg7iE|MdCCq$#&MJIYR`RW7EE-d6 z#Z5h%qCGQbhq2VGXNS9gie&0k5v1r*(i5)$o%Cvjjq+uuUMR;4o#W3)hB?F|FWk$P z-xUV&yy?hicr%hHQCOJypd&0yEdDS z9wnw=scHoq>IHkkpy(WdLChDp16tQ-)&*~`Q%1qBP-`+cpWWoWnp&rNfrebM1 zjmtSYbHV-yU&zRZGcwfnb|7``tTQ)wWrFuf1bZ=s{VR(-I7|hF$%IdvICn4(CRZ_m zkipZ`^Y|_T7~9)2=3(lTfaw;nkP)%%fNNSq#@DymU$=3EPK4b5LjQf_b$zA+)qws>!v zh;u9;OTcPEl3-l%POQBsq%>sn4pH$H8YqZ+tJ9ceN&dm4aij$dBVd^=h&EFY65OtZ zauiW<41}LEZF+xZw04vDdnR#1Tpx>vcv}*|eay3zS<*ofId4EGqrC~gB$J8qulVV{ zAHU@X=#=An!GmyG_d{@FiDW25&L(=gTOwlkYy9Bi(p}JEKMbb~SlRJQBN_Y#pys4s zyR_L?{A@CTYl*UcI(P&@`7~XNp?~3{@Q&6Rhr{~Il;4CC!j5`V>JYUw13ew*mdNwj zPoXhwmEYho_>28@=_6XcR@K5gD(LNpj>l6*QLMJL#ai?@i1DJNK{If7k>kw5A3HSe zOu^#5Y_jRVcX#|v!r#OP@q<%mK@ZAi653)1ZtRfBA2Sc_Whc&u1}8BDhj$#fand*n zN$^5xf6`)xB!atRA<1A7LJCKq_rrBlQ3O9&K=5u&esE6=oC=O5cq80ub#Dxu4i*wT zvMC*4$si(98!RTcp{X|bWd!akJJfHz>-R0{N=0-rflH2J#f<$FR0y)9A3Ib-lQ41f6rY@M*0l;1&{Kzi?o zcgL_*T1I#ufOl%xX1&l0coWw95WL$};{F=m?JHjFk;-pd@nUWvzm0meWH5i_I;Vq? zw^1I#e0|!m9soKHe;ebE77kgj#~+oHy<~o8cRBjtnpt)E9o*&6%$hlM`6=%5m*J|* zZ|E+EhQZP0F2`yeu|~SfZ&IvwclnD7>+ddqNnzH`z(V^at~Tl&n~!T-^jnr&KUcot z@8IFaHC}0}_5y{;z5;ejz;eP)2`N|GF3m*vJFMq(YaA@{oH zkf~8tiduzNRSLXq$VxE@O@Lzvhx$!Pc4&XAKj=Ycs%gO_*Y=tTE66s+om#nYzZ%{p zVC`v6dKg8JA;Twp(%^QYT1j_nVwhIi5*mT~@svQy!zzLjkXjC3H36+rn2z`#)F?4T zDmCg!>B^!S^_2B$jVf8M)~G11)~LvS^aX+G|S$d*P+w&I{aNI=*dY-=rt~3l?P)%VIkQmnqV~ z)saTECF6**dY?comc1u-+1S<9T^d8(XuQSF{G4(CV4ekRD*!imiOj9 zMtg}_+9o09cWq1&%W5``1bczR+us<1v#cR#s34hFs*~AowPf~RdomL2@f{&pw_l&k ztJTTOv_z$WMP?4L0MU=tG9$rWAkiX&%^J0q22OcGwphma0JV(e{Tf9H;@t1jIl3Qi z6g-?Rgsfo5EH_w5w!HG|@{wm0)$nHjIUd#dU1?|Hdl6v{%U(oA@hUo)4EYL5#_xWE zlrMqyzX?aQvkUL@5g*{U@J)t%kVe~1y<_kj(!t~b9uNHXgBoBZRs3v?}b zsY13knit`TXLcRZhZ>$#0uxe&UQ~OxJnk$h6dx1o=qp7G8 zX%CM?{#c#J;g;t6rjCEl0>%)q+DJiy%}4ocZm_x&(l_;Y@ghj9a{^&IetVZ9gx;_&U^kQV=cq0W>9T`E z%(?grz0!D@BPu33+Vja_oD-;PO060&8x}OSggijI5v$;+dW8d_llaQ&_D6tYVXJoN ztkkUFArLC22I^4Sk5S?^t#7RAm#yoD`6jF3&6%cjHWRd=qi@ROvb9IhlFMi^d1Ux4 zB*6RHrUE)N6+Bo)xv*)v?s zj&@<7p%yi>$pwi&gGBHie(JEj8h1fQEQI}~V6m5qYrC=Rmf zw`LueU@wq(wgr!73=9<{^Ox#m4vvx$lNoY9#3myKz-mpn1bczRTSGEJ1<8C^oy?(@ zs7>WC3lO_vwNxb73nW_9Q4A6*KB2}v^w|~b8Uws6-$RJKrze-12JO+wfkodCj-CXs zZlacurk(fpde?!OD+Yk+ds3Ixe$K&a{s>ZMyRXJo3tHqv_%UEQ7(+Hc zfd`EN^En9d-;c#d^iS6iox{Z_I%axITcYz$zvWn>uqCg`C&!ZLpAQaP{tNs?#W0abC&;b0H@taFNhFyf5D7o*6m+e21cg8pb~up76g zQ>o^{#UN{WmN-cVV@n5?6Xpw;ugN#UE6;f)3R}oKUkRRpAi10yJPu}Xc`)X(QTk7T zmWre*)A6J_HHyZ^>gm2?ca~rUOD5~n4S09RVvHGK(n{OZJ|oAHeuJBqSv6DneYriyjCh1JQ@X>tkfYZnA3d>AKXCCxF{G?VzfUdLl`1Y zVF0H`q;O;zm<1&4_&LKeuKEwiZIuAD?9gdBNDDHiAiehK0aMQSFbp4uL&~=cIDe6H z5S*bFM|!y6382-bh5_f}nTZ4HdEdFj)N(IW$BpRsjk`D&6Hj*pFCoVeq3F(T_|51Wu%Bp@sWm91zaR0VoQm7as?_KoXo;F z1wY35G^pY7!CdfnG)p_++DJ!g{E+c{DP;!6-C((WU+l*lfK4>MV2#=#o0zdj)*m>7 z>lnE)e@u5jMVW1i*5CvbC0YZ_%O!AWuavqcDqTL2A@Y13t}rcQB2n+8j@3^-ZHJ20 zqNq8+fdH#i=M{PHE-`crbofmq3W_8(bcSFnc?F4J@k-HekwMWV>chuUmcoj}i%I`? z6ssjST@yz<-#G^HRNs}qzWPomsu$U?=@Yc%2$mYQVu5*0}>rJW%=)lp1O=-8m33f<@3Bx99u7 z493wYbc6Q*X$eNcQ@3)H(dhtFb@^r=GrK2H*VsB3ByFBnwKu2Sj#bK)a0A2mE2Ocq zr5cnEIn8^S$7v*QK-CMM;TbUe>-J{5VL2_~_i zJE76dm6yN`)jAg+OjN%Kihk=xIm|G+!5y$&dH?2Aa9Tc(c%`%P8-4|UVH3AR&@2O6 z1(Az1(QWDhiw_sZBQC`_s&pdNTuVz&Y*B{B>8H|F`lKrHrZvGGFEo2 z&~24nCN4WP=^{H!uvytb)7K=sjLHrJw$)^}Nk*hau8!Mw)3;+X)=Wx~Q5o~hCp#Cewym?(KlMB@?VNh6Kp<|o5r&W+^==8h1|53$e+ z!>yWI5rxE6S}?CEsEff1n7D)=D=5O^g8Bjc=vQT_wQh;QVCPDJw(2V9KH5p{$s;a3`{24B~vu2uxUIH4C))&n*!_BdM(D z&yAt1qD)a%1dFWtFl}TdRFs&-j+2JyFw{Mmwc9J#QsuBL%5RvVC)3(FIoDkW=P0*a zPe^<4Jt*8l^O>N?Uicj}#PSZ$-r)UjkPSsT_s(^3*6SeP8=3`RW%8r_u#1&4fw9QA z%-j!oAnZUOd5KZ2)BEGxa4-UR%gha5&#XkJi#;amBFby_ZJBmw+*Bt+If1O$h2dp|DQB>Pq0^xQw$BFM8(yisY8X#&0g4 zX}ojr{kzlw#>1)Tap18&RY>Eo>{hwV%DJdb3~|$?p$G}P@KbIjpyMkE$d7h==nuvq zqyg{wwK1?&!df#c$5}jsH5ORKr3$qj zzvZEX_H^KP)qu@WpVh7LT7%tzXF$5)j(bt%_(6GCjNA?+w*u`>c{rdL(4dbU!SIrh zFRcT2@Ow-|(fZ5Lr245>=p7(J9J%sdjkB@4t<99N)j1#OAMeL%I~TH zbF96>c%amY4~tmyrN3m#=1bTXAq3BYX1&`(oYMEPduY*N|0z22Q|J?PW|3R^8C-79E%+^+ z46zvJDHSK7u%;A+a1{5gK#!ZF+{q~BD2q2{jxre*?`@LE&G=>UKF8v{9DKSZ2C#Vf zjhUm22TC+YIm{?FYVxgRmR!E5z8*3&YKJt=AXS(%PGx$^5V5?Nxw@4DVfLatgry#` zg0bruB%ouA3OE&@c43Tx`c7-;qrXMt3P$pR^{hO7XD>7eUx+-%0f>7QCX7d&8xOZu z!u8>DOZ??^V|dfbc%(uOq>Z!z!f^a;LKA}MPIY6Co?o6I;I;`{_yad;!QcfiW3L*p zwS3*uh6pU*hpL$_PlOXXDIZC6ai>!2B9L zIlbThL@98l>6SK=UuGnPPGYb+1x{%jHiv^FuPyK`ZYE<@$`*BeOMZH`!fz7}KfOR5 z!m1y1hye|54?n90U}#<=BUQ!%oo(<@(T3wY_pI zkUmUF6DC}3?sBvsTw$aYV+$iKVQY(sEsnI-#FsC8t@K7mJm7jp9IfP&I_Y3r@SI!a z7LGB(Jpx6_HKAOv9YUIGvAJn`Iyea20S>gKZ4pPQ@{Rx*L7@kGk%GE~rCwqHTDKm4 zR}JW{l2j^~%4j7Py&QZToK4PWJHp*!MXb&&#G=xZ=zYSc*dZAmDY3{W-SpMJ|GlzV z1-lcew2I~-ZzXCV*Qi>jT+HGZeF%>Hn*7u^)!Y0GjPg?-&kvr!ll;6Px+M8Qo4%&} z)SLW}pGrRPq9g%*^CCPHuMe6uIN1W^~qOFJ|M6nSOh9H5u`$iO$Y>f zRt{^1U9w7*rKK$Gfv7NqxiiDt*BBb?f-o3Tn_q-{;@@ld!`uwt{NlV*G*){AeiWlK z2@1zbZpUy}!u>tKk^nXvIK0kY_`}SP^D_Q8*UEo{Z-&2n0sA5bXBhjH7PN7L@HY%@ z)32}&dcm&b@d9I~2h-py?}i^3IJ@%`>_Nz$_)&Z17$o#BX)75Fd+^H{TPHzt0si9u z=yywd0jH2$fzHa2+AJj9(%t~a%$e!%y1@+mmiM8vq`$-pUV`4EU*8vQYwOUBGx=)f zD6NVu^IZgDUi-_9{ssp8!oIjq2@tm=X_WSdTWuQjOU9;Qr$?KH&6SumTS{{!tk#xi zGB)c!h0^32AIzYRFHz5!>vIr-h!dq&C!xI90W>zdv9+Buz%ug3{s}y>e4b>OlELAf-bQTxfFT8y*G^$PuOj z3Jw?N_wb8Xf{(yQt*8GmZZ4RGsGV*P3AL&R8RMJ>^_=x$0t(<+{7Lr?KmSqBv1g9! zJF-cVdaiR2o`XdX=gUZMJ64U)yCrJ1==b=c98Cz5u^NyoQ+-`*0Pgsz`$#x57;7Gd zZ<#6u_iVbUrEbq0{Bl?CSR|PWLih@`c<7M&mfx*kjawpuz>7`&YWiR{f)>LSeI1l9 zeb_=y7=?>)e!^o2AWfYsI2d{QDxN1y$F3SM9vYK2vJ2({*)@fO1%OwfXe!lU9zsyu zlyEATkKfkuP1buXyxk)>@#?0!kAsJUA!-_y4JC#b5T)W{{LXDm7`Lbd3kaDU#~%HS z=$!vx+qNpo(|~clj=tOyO9#a!QpQlX23MuEY5@sHYs{%8FInwAo(#1wdI`o~XIJ+^ z_!f&B>GAD497S^eE$O}j4A|5|px7(mgkAO;J|*_-VF}U7E8#`clAU-O;<`Qb20aMC zn`ecsQz2H-*p`@Hp7t+$d9D^oC$Gj36G7YXIzK(H;un@x;)rzgs#fXhentVPay*caZ8Mg6N>VU83nQYp1_ob zsl_cU8<_~p+;+)u>HJm;4NgQD#ynFYB>dY1f7mMH+=xH+eXN_T%K`qb#vkiv4uAF^ z>v99iqy>M&;5L00MTO1kLR!l0d4!`;!2HA;2tv7qnEju`h*0jg0MZKzu!{wPuK0fg ze=3+m3r2c^lR;5dSx$k2J;AB?8pD-@VYt4-PtTk9rQy1QWrZU-=mi*nUVxuf0~S!S zTw-A?&^Zls>eCo9NaCe?B0fs@!YLDg4EBV3w8nFz)z?2MO_QPa|2IiV_l#(2Ac@TyYc|+$Q$9w5kh+ATYT4!vw zJ~S~^z{cUo;Kb;ymVJq^AhN_IE22cr)nKDNX!8eyCH$j4Tmy06fIqBOS$$w}ROth4 zEGQQA0q>|nA4a269`2U@1kd~;f^cg}IxUqU-|d$E3~=E{{Yu4EZ4mpMb^&WHwLxm` z#$p$cEVSW$etPgot7yYYXv0b*Lnu^%pIEhJ6c91h*5|^`djQd}=9gnySvM2XLK9OD zrz2?{(^kN#;0!=Jb=@rEoO_v5&w4@WTz_*kz9my$a3(ReZ9}V%DG$oz0|dd6_>igk zh5b^cK^S`%8&aiqev>P%0cNVn(|)X$C%pO&>e!CS@JXdXf@sG+;-}{?_+>lxI;C-x zTOt&V7(cNQ9ixB?N(F2*MaTJ#&eat; zke!%rB)N9zcp`_75d=AWicg(C=~u`#T8*74$N(qt{8Y~nuz<=8`KgR1;e;XraRAhx z^df~+5?%!mVh%5p$^|$WiZhvnhwlJ_5B4!-x$G2nw;`uuzfpIiD29E2yr zX@;p(y3HXO8AO|5Di?amFlS&s=eOq*{Bj274K_j@;LI&CfHN@s#)Qpy=z&DosQ|}S zEr-~Po0&D8=TSV@k+Nl0EF zQ|HocA`$^-j)1`%cN21bcq~Zbj(f_Ft(^SLaKUed3;L7`)^XSQ9{5NK9}>db7|($v zNEYNFMR6y$yw7+35t*@azx-ugdPOS@N#Z)@$ z8+RCP@?Bk1!0tJiqZ#gg`8!w}Rdh#px}|@>8Ek`uWBEB7r9`RnTgeZ7njeT*Jm(Ov zt9uDPi_fLoCehw~o(7%IpbM&lF4Ull7<6%U&?Or50|s4M9fWGgv@T=N((0hg>Fw&i zfKV;C=)j`mA#=3?<%c_H}rMIj5ItDGT4*HP>UC*E!s)K&4K{qn!C)GhW zY0ys@baQpk&ot;32Hjd6G>ztcSNClUy1hE+4tl$~?_|)=tAp;+pt~9Li|U|zH0WLi z-B%s-OAY!JgYK^mLakw14>0J#>Y#_{?dtwDgRmAFCGIxTU4Q3Lgf( zo_^meT7BFYx{S4&P4MARhF*Tfzm2?d?FLI=zlXnJnylAjP@jC%CvV;$)*?4J7r}nW zU%i91S!4JikLP_u#2=OS&_Q;&Mc|U-C=3*O85TtrQhh1x;Ff+*tneB9Rucg6XBni2^1|of?%WiU3D3iUMei5r z-@(;qOR<;$Et591QnW7;L)v%D35s60CBpiw!@dO2*Q~=XK|J&}u>BYheL+1wW*v41 zERJ?#{gWYBhpojYwa_o?>J98LxPo4Og($6pfz{Ze#WuJY)n$s0 z;+Pk)T7;f1#J&oEEX3M%*i%mx)83h5`H;jo3oD7Tw?TQ7n4DdSwcd)DUSp{CgB3Xu z*hfw)n7Uo(uU@aN$cgcgd?P-6EM8+T| z##cGL0oT{csX~Bql0>bXm|RRw;;qQ(O@{WB6M=o?^cGWJvz#u3KGljoF&>i7;$!5r z3wU3Ea%2eP)DIukr?&}!oEU)l%M$$+IdS)b)U5J5#A_8aD=eX<5ky!I;cywTTFNA% z!ukVT6qePgGtaE(R3$!TB?((uF}0Yi#9NWo9~s(LRs{Bu)w@i5&9b6SsjL_e$+zIs zN2eH4C96LX09i4BIz@lAtjd2TN~>U4F$o#PwK_${AST9FF}(-Z*XmS-0Ocf!S~)Q} zD<>Fd^lJag{t8oZNQUhT&Do+qcQm%A!1AL{E_%n)X5ulXo(X~3%q!q?bH@VR4{5HR zeJ8q-U~g7*nqXj8qsI)-g2h|GFefpZ01Ie9)AgJBOQOPFGqCP*#SR&_xK9 zR~n2#9qbdsG^`DtdzxU0WgKI0dIi-mcw2;*3Ol2W2;N~;>niUoX{cxscFwyY%2RC4n+3PpoHupC`$N7qv0u1tSj>mT+e6dN%K@D}Fc1{z%q?N`W zz;eaO5dgdi_ip&Z)fiZ!CI;+xXTh;pC3=Fc9OiP=wHRd8)qva`i50VE=g=o50`T^k z?>N6h!{Iv*AjaU!=z8I7$GJnOd~%$1Jq*{&*GTAG-13C@zVkYEEhy}8q@k|mprWo! z6yq##rLY?!*9j5ciQq~@pSl{kd7hMi3p{mghtwWI{(PqnF3rc!keYIO3#R(ibtyvC z^&CV)SH?L!V_h?i%XfA}h~hP){ndOty4-kt`jduJS@KW&imk0Ip}|bb-ni^>$({{KmHlHtecv1h`k%y>DB3-#fs%KHo-Njm~Ve=C`9}_|92} zC@kYF!0fxGap{FN#;faF*A0cdEMDonBKb+MNp{dU)!^#C->NS}QW3qMG<;XlM2lQobuHg*PL)wBKx7nnxjB z)s56LE$N(doJk|&?1Bk>)y}KX9%z{#Hy3N|;L&$pjcUN>KeO~!{?xjb-)LPUAYE-m zXaCE>9x$cqJ8ws>r=ek5ZVyMUzoY9=*qP^B*JEkxdOwO=ztqA`itu`_v@muaDwh$T zS$+ONB$uI(n#u~QWn8tZEZ&yCwLCA5ax`v+mD=8rgtplqAg*$HGg=zLK8tB*0(!4C z>N`7Gyp8^8UF$8huFGy!SH{`+c?(NDZe1^)WnI6YZe1^-zG=GSUb0->kA6#GCpB8v zp^R1WWq2NC;yWiqEwFQ^jd2@bT5dnTOkrpRAW60YBb@m=Yko7%R^VQ# ztPftaF5GmKEtvvhCFSro?iF_+mfaCYurZXggb2ed;%7RG{!G(!Yn^pCEq#u z0}K0Yt99KPxlWAa_r~!y^ze(V>;2~}FXy2x(Hw1s)Kqh}L4MVBRiu+IzhL9eyxDT# zM|v=RTMb1+>inynzx*eb9)`mIJO;MivyO9M1lb)tv6d48+X*=TKrOZqPawm)D-f7z zz>vfw(OcnE_;9@S~8u9W+cejx+YR3OU}HPCF1dqmeJgIl@40 zi6BQhe-NCf=3AU&oR0EgcP18EY`CK3eN07PB-vn}b z6sw!3J`rn!<7}*X&KClC2YFXI^Bgpgz_~MuHJ|Se0kU628IGF8fLwr%19|5&GI!^W-y1U5N-Sa*(h$_}Y3s^gFAg{0r~0$i?hNhxP(0YM+^=4MMD+ znOq$2Tv>CFK)MWv$2+$ILOKH?I(Hk$zau&i*Bm3UzMN`Pf3{}6K#B)h$X5n3GJ@2) z^AnWw@<`780b#js7sK>Z>lThr;D=abIkZ`fFQ_X3IKmMx^{-sH1%4yaYgT&K%@-d_yLO&Nu3Rnz6Z zC^$PtIAh!uK65buX}y09Q(w=0LnyC{mSn=!Y$3OEKSk<}GaPm?A;$yqnLxTxD;2Vn zfqe0O3)xj5{T+_=i8H-sPlIzZa;mZRcK;#yny|p)>}w!DF{w|lImk_=YLJUXF-ST^ zX*`UcNGTueHV9;2v~?EJD3F8ZTF4>T_R3gaML37JO#->J+u|JRwg}|lD6PZXT#8cd zeL!&>_i(o@1wlD0#u^CrQg;Ys$k`RhFo8T7!x=7+Oblm4isk+`S_$$z8+6u5QCAap zDI{An%MB#;sh?S#Bi({Pw)?k2o~xPdZk%EX?u6D)>CASgq*(4>_E*ShSOwWeAZfHV z#35uifxO(TkTU_?^MX=HAlM#3(re_sgT*2?>tl>D-A!rH4EJD z3uI?Qhmebf@~h|_nEDc@R+TkW%nUT{kACe#Rl@H2Q-%B zE_Qz-61xyB04Zl{PIe!c)bBB|W;>_5PfD5gnAAV7Im`V$C_By*XrmbGc;_tlS&7yB zph9Ll=K{iVPhrk#{SKDSx$Y~Hi^p%rY?DB)aNiT0!$6skw0nj7p`P-;HTM=Zqw_z>$`P9Uk;*Rtt3goX%I8pF2jvF~6 zy)6auc|V1G0mwE2IS%{~XB8mZ3*>xg6d|VpGF2cGQSOAycGmUw5XhA#mRr;5O&7>b zS;g@I*;gPZpk6Rm29N_aRt$1TEhT?nv*I)Y=WxL})j)E9%o50^CRRHja|Cj4jLtlP zd}4SW4IIqwKpI^!I%R=;j`AWuoxnL!AccP`biTmIoMrJ`&8FVF0&y_nAY?Ki?+L_1 zt3}ABfP5^F9ZgzW0P>kYK8rZq%ELSBD4j=5S!`3YwYN&j^k4(o0gxp0w!gE#f$R(j zd+q*CznrE;NG?MT+tBth_1yp&B#^--UwZ*EOdyxtt2p}rvW`G*HnH{xq*EY649-D- zj1kCACZ~r1vc5omU~)POkVyi$!$@onAX5agso{Bvv$eOaK(34OzLSSJ0JOA6!XhHi z$2&WDGX!T#LuYQyt_JeSFBIokK=v1${S0IwAcqR%dIMPm$Wa1$%kX>>Al(8v&p=KC zsnF9GCSflM>^sw@b1sJfV_W}LXLM1^B&05L8FEbRYGmEJoO3%YWP$g%Ko&(fi@etavKee_{>#>!=&i_jpmRr?g`DiYC6N0(3pvAk zM<7QHw2(6a$spF}k66eB-X8_hFM?d`eI&8|x=e9qJC}O@5XdPJW`KMm1Ko&+gw|fHx@;d{W?fk|YRCg*UfA)ms z=Or%?oOVoe@L#s(Wv^2p`zipCR}5rGqk^(EZ+Hd4d3S_`{L$+Y$f*%OA9!O0vQH$j zkG*kqTsNCz%3`+jS8x43kiU5oC04VqlxI7C_crc>^G|P6!MQ2o@C$E?I%>=2+bZaI z=Su_mCE7avo8~4HTOgL>9R7?#j(3uYZR)(?{hebX`7{~GJoNAUHybAgw-=mW!Uj-C zE-_Ugk3^8R#4ZB)T?A=Q>?V+xBFNyxo&s4OQ68F@E|5E;)Q2VZ70AsI&WObR0=X-K zj7%ITkOLyf=)@rcnH52T#Nh%dN083MEP;GKf)o<71#*4_=}H_ekjo>;*hIHLeiCsw zE^(|teicF1PaH3h*HTtK6B0cF={0q5wlgttf|S=nQ=4Wx8zoMzOQI}pnWM3$xf>@= z703qzDv&cI*2!O3${Q!n5lB$BkWCX8^hs+<;u6u8-69>^B5|3-S`~4)W#V#yJZ93G z?QEU6QXm7Od~KWfp+E`|WV^&Q0@*TxY@fJRAp1m+9TLk0^2aEx9TV3JB;3>TJT>v- zx@P2k1EU++nw=6q5y&LNPX+QsRGTbLZ@bc|;5^sb7jk-3Pi?GEs&Lra>}Dv>c8EjB z)QIP4iQ5EH!PztMi#|9r5)VilRePCDeZRz`0y&ihi+|ag{S%K#totI$2P7V^8|`fW zjN{zeJ=#g0<~VoayUDYTv%LTAi_dr+v)TQ2UwpyN`dzV(em~wtzn6~G?*qH(cdK>v zd*!bB-E5S8Pc!)A4E|;Y|FO{;{;z5JJ>U2bF#dm;_u^nD7Tp zdPkb{jy3VyP55pm{Z~x<788E2!N1@54>0)OG4vlX{uw5GmBAln=>5#lyT{<~X8a3{ zzs2~^G4aP5de0mGeB*!F$UA4~|K8+hq48g1{8Nqp6_fscM*fEw|NADr%T4<08-I_X z|ClMyTa5n;<6matuWRU?YW#J^zlEW<((t>9;s0&nXFaC@db7NL)>-FH$GN+ExHEf0 zmhW)q$;}C`aZcNS{u<}QEfwB1S-&4|;W+mJzh;u-?AJBixyQuIPgMM?HjU%?{^vt5 zdzaj6@%{%g-d>C6J*MC5UeWJ0=9@$B%J63MJ@Ik%FEZaBKdt^BneShoRR4SC+p$9Z zgUz?w(8*j(xXoXU^X?|f-v?Xi_kNSl_YD8j1YYA@XW*?SKO1dCxeRyg_cN34=>|R< za(V#i*l_i)=lo=X<2>9wZSjcnD2Hi_2cE)jjgz|5ac;!7_iyx9*k(wlTaM7oFyd_k%-pU=7X#Ed?#=l4tgIIs7dd(Z84 z?%bt*pvYgS`$cK*Ew^(arKgE_ALaDhOK-VP-BkG=in-vx(r>xLSk~`O{l{DG>MZq( zitk)dvNAu9S*-X{T_wN9$VC26@`avj9A3Z6Dm^D;J|cf$kLp!cXC>FL{4G`S_7o+TVYYPucDDNz zCnYLb!161WJ6TrFRQiryCF`*~%knRlzq7qv%wMs5hM!+%JG)T7DV{(4q~uS9O5R|e z$L`y+e21mM{#*Qsn;#JWdR>%!jrk?!psC8<3oIW+EAGNvHb!wzj4l+9OERCDh`K>| z`!lJDD2*}gDC%c5Kj}l=^SFM#@)tcvJzb4okc7M^^Ia1OD8EzSM^%Nm0Qu%2RUex{ zQor%rTHKJ;UK4vDslBA2olrm1C>OsLF{z9w$I_58)SW29>*F3F!`H-zELWi%ufqPz z=x@kQ_%-q$ERNlwcm|7_ZEyoB_-om2Rr{g(G9d(ePLRjWD@pIjiRsNZ$>+aOa)VpR z788`bK7(Yjoy7>}D%?+BrsO=y&x@hR-{q5@7oWlZz|szJ>rIlHXn}r$(*JA+yirBG zcOqUS|7uJ6P`3l+MeV-Z6TH_)KRfys>LvVztPx^8_HB2L;tjz)S)MTEK^Mo~R!Ay%Q?m5uoSD^G_wv4YwqUL+x1Br}kn z1%VDhpEQyTNK^9gA4-mRm*R=9?OC?|0dLK~&9m{|H$wHN!4bj24W{}ssRv1o!@(;@ z8IC6Up?**~sPHrnPZP?%#`ZO#>}&tnzli?$0Ls(g_^9{=i?+Y3a8x`sQF#HrOh-9xF0ylp^;kZN-^aC_sY|)GA zV^fhmgz9lqah7Eg>J4$o^FoY_Xe!nxEBWSOlA-QJ=r=~&>H*cq2QR92M)G6SE0SOJ zQ!*6w;=zlm-cY}DDhGQ+s4sh}kt`!hqhAb%Y!4ZSe0m2m5i+GCZX`whS$c`m(NtVT zIfp)r^86leqLF_`pr2XEAx5D+E(9N_j$3gc>psLd5BUtz``b&J*noCHGK2e(eXE4n z3Vr%YA$CHJL;383tO@<0dYWiE4H6ulr0PdeKh$N9DyMt(mHZa@LG`ND0VN-^eg(_T zvi@qq@q*IVLAifzIOLm%toq8uOH zz^|jh{~M^^S0JDMQ^j+REPqXuM|od|yUM8F2PWbCYF!zQcxEeZ3B>b*pD8ZkRg&H* zJjU}@Xy^K5mspBrKGl<_WIb?+^V6xGxWr=QC)K+RSrnd2JSW?qO9aNL=kx|)W+j(c zhyK8X9onxi33&$n5!w5W>th?luMD17V*Um0o&^UX|Hr>j+`mx0GAF;~{{0grUqQb> z+>qth(TZ=NKGXAg%omv}usava#eO|^i$iL+oD!=|f`PPTO zFx0Qckksxd-~U^VX=tZZKELe1zBSxkL%VAanKw__*}~LVcUh_Uz?F?fOO^Avz)b?O#*!P&XxqpuN-cvdBM@uRN#Z$BUG# z&hBeYP&|zNeVC`X33GpTw}APLt4g25`~}L7?7Nub*C-x<`b*CnvW#Z=rbj(LcVEeq z9RDIm$$>!J-fPwGV3ri_FbJ#MBCPw|j^5q3-G|>km}C1^G?S z&+_xR%xjs?Fw_f#2P6ESEc ztM-o531>5P(_QBK4Y^GO!F>s(KWxhQW3>iJw-y?OHjjgx54Xh$R;ud7j+QXMr`1P7ASpnfweC8t@nx`hbM>1GU z<#^6*kM(|&U@^C&a(9ybEs=JDMRYsm{`g-sKf!$U2YlV~QgQy%$+SZ#7dk6M^O09E zzVAjndoM$JAsa#-LqAVvT$f{o%A3a9;|Q-g+9%0`14`cQN%>hujO~tdFq1>wakBmei=(n$1&a=-PiW=0zA=jHv8;~#p?#vE+m-v?EMH++4e{B9@;iron^`GXY-72B%k@3v^YMCRM7>Q| zZ%)QKaLoVEabrj@AJby^f!H$p0h*95SJp#E1xCQ+eIDeSh|g@u zGSDxCjD!8JA$LKpflPwC&5$v0x96i^QI!5muVDV$AXt0~>4O{vIScaN`A}TXC$?7k zsw2N>J-n`ss#lSaIaq&JK>sxp{cEq6P@iAc#Kv}{*F=&20oTjEsHfB}N;I255didkzLD(bijChm$33jR9C<;INWfhO2conthW^6YF{!ZHB70mG}ieD{mhh5MgkbRBQ zIf|u9pCQx%bkE9FssrleB14wLJfX#u zG9stD5dP-D;Jt?2o`0wpxXg#Q`M_2EIm>-)y5;9Sf^`?tDqdFG}SIwr1@A=E$mq#hJc@kB<@xo`v~9# zn6Hk8tONJtZ#2uy%6M~(=bBLNf5-C=!I$BmWC>GDZ0=#*@{U|4qSsXDdmUsIpw9Q%slb1p6)b6hFO3$!$?ehIUo*a-ovPPbuj>sN~X5 zXkWUIdvy{q#;e&%_GS5!lzrU4C(?72=S3y|kWv$++YzHZRa5=ki5jY38G?D&0_@Ky zyAJW5%wLD7enz=3+V`)Hah=BdF5yaU{0952NM9n_Ngmdb1&AN5C)b`pdq%rDj(p33 zek8_c?DPH0Um>1%DX{y~M8nc5yh&wM{N^KnDZXT9DeC{V3$*X5iT!uzIre2Z-T$xW zH2;o9Kc=L{;p2Wn%xiLS7uHXxZ_(6Gqh2JxTpM#aD*xKzw_!?l4WV#qi;MGVKkeV~ z&p$R&u65As#ShvHSIlBy3c zK~g`Pgmyvse*=;j)1`mPV;*<_()rzg;(q}=xC_p8cTo8}FbMnT=pSf2EPqUhL3keV zys|^}Boy)gMoO%!xE{qzsr^%*a%8>ILm}&%k{){Qb9GT!H-u z=m%+kKN5;`Q8*O8|CfC#7t+uBPrgz)Q+(6#T$OW?J5Ag{{{9KOB&#A^D*rTu zOYVv3`OQ}pzgI`KPvrYQ??(?e!LOd6zj}LtlATz7fbof*A4R((8HRC@YeBk0eJQnKSnC25{O&pUQjlD=Uk9ywmg!2^^mH9^Ub5r5Kuovq}HpOI`K zuA&}VA>{?ClK88h;`hLr-~l0ubHM3(F>e5OcNFt6Fz!wJ$Ne?%RA(_e>z5Z*jAE_; z?r!4{aHfshgXt!KqVW5I6VXnJcnr9SEq?LfM>fs@FSo^a5jfKpzfEBJrH3MWhrqag z@*h4AUS?z(0}?h zW$z&3N%3vasW);Lr^qX|*oBYX@ZbMGJnTO_+QwaQ5wF|E-NBhQCjF;24ubt<#9F@i zV3KM23x<8P&yl8@Dl@7uRfD$EYJJ)l&A!|LaCQ(b2|zj0V`LE7lJ-8jD3X z9&I!i#}!+pS78GnvX!{Qe6aT5ajy>iU!7Qp|0T-=wd^>|n0N{4RP+(l=oq zh>@DO9rHbm;>52pn;7+p`!Nq-d&8NZW1hhL6Z?;1zI#vkPi7wLRN?uV+j4wnGv}XE z?iVwE$LU?gJiDpVZ)I+SUW4LyfO&s6#XmCVVbmb~FU(cg{Y~cT9R6eG5X?5neLx+R zzhRg~5C<_2V*A0&@8>CfL*|C8Z_V77!|TjEhxMV%Ze}`Vh5BfH?pF53Fzc+J%sg|Z z(tDVr*C_Tf|NW=pkD2SCy;A%aF!y6#&fL?Z^qZJJV*MWGZ%-@zapq4)DL&6!BSG;s z=EqGG|HXXzzG9=UO5f{T{$-etarstd{*bvIvpYxmZ_b?6U-2u< zG?n@3#4LgIqnLZL`wy7MvimsZcR0K>=BF`RA^&;I?VeLShq+v1#Y>r&as1aYCwEc$ z9n4u%6(26rbAJBJd^b_)e`CIf{)@uD!~E=G#aca;zFxx=mtvlEQE??^o$E_2=AF%y zz6tYdR~5Ho-p28Ljk$oiA9MS+mHXk$!`@Onf%${AildktT~M6N+$CSJpE-r&Gn=_- zgwii&UOz(dD(1{W#ao%L{h{~(b6HN$kIa#rf4?wCarxb3Zm~o8f6Sc6^*ta&~+P#%ojO78Z!56s`Ray8=>5&{5mra;QAZN9Q%RN4`wbmL-82quQ)#@Gha+n zdJpq6(TcsyYbz-Jn0arM;swkzS-+flZUd#?#QbE1;yuh+T)xMP{C8FQ^UN>t_;HQ7 zb(qrs#r*KFVxzvw&j{o*SK?m^to6#XmEzU#|E!=CHYn?=V;9{L@fwG+xATeJjO0=VRr*5_2wxSBv=^hu4I; z61Ts0%nuJJ|F1D$e^+ro=CiSihcj>F_B?@k-QP+d#r!N*v6P?5%6UD*A=eDjjzqV-5C zan;6wqLp}P<86_xMH%D+)-Tq9p7>2)XB$z8`Q$bs)`>PEn7QTiN?(t;8#oa97nvtu zzI?~oR=mU<0}d2zMMuSQeH4gaSb5XNdm>*JqiuXRvV%yr@yW=J;u9O6kL)bgDz?Ur zr|`OoEzH%w$6Ln_}*N_>2GWivRF>8wcSw#660wl5teu`iR5-()SVP z{-y6LuGsW}qOZ8e`Vq1``-#78dYr)&CfZHW`aB3+Ua>_#`@Rmp@lu<8E>kGHWA^^Qnj_bNSu#PompA0)CRdpQ3FiJ6k~tv21!o}&hd zIg&4H`Dou|zzdmQd;_Pvnhz0QOD<~fL&XN=U-+`|7CLIEIL(~7jCiYFGPCI&M1!u<2;r@}-8bJk6~&3A^0Smr9&iy%&6uE$)USOhPp z{g5!RQ}ShPHqvK+4fMl8T-FXDyd%$z64jVDAiP!2yeryD_K1xu$^CocTgiU02k9y4 z8ZC}9w_JqXCf68oRkBK-A;yZ5==Z68QhI7fjT5z)Rs6?^hRiDd<3vkl75{Ofn_`at zIMG|ON2IQ%^o$d3$(Oao6BMszR_Pljb~01?8bys4=a?ydt)nK02a*%T$zYteje1`M zVjRc&c+nF5LC>ggQCD(N`ackd!4~#ovN1ntk>XkAlv~&}kBSm6GIxRhlCEg+ z8gshj7%_}_HQL$c$XGF+c|6ib9LY@fr$ohy{WeaHiWk*e6o;P^P4op*`gTLVE-F<-u>KOlFX>7Xu{M2p)O4|g^<;lb zRJt%)Df^A?;SP@|uY4;{`Lhq>*WM_fsK)wnD~K~i1LpTIU)vj%C0aB0N+b4*F3e39 z6K9K_%&q?*&JhE_RG#&6usa%+E8nsg#s5d}RH;|#*&CHF@+Iep>PX+ks2O6hjem^# zSgf(}|Drw-$87vCYPPrvru2M>^cvBhiThHYF9w3kN6!=F4v4og$U_^#{beL>}|=*C@Ysi#g1VF^?r)%KY|y#p{^6 zK32R1O!?mfJTH2;*w6X_m@h8|Ut&Is_PIQIuei(HuaJ13uwGH|_nsu)FDf$+g!{G8 z2gHlagQt@IpyJO$}1={hd9 zFgHPdkBj<29ArK{0_`FCgwS7A@hjh-!aF4@GP{}zaW49_=+B(@Hcn?npAiMj2KZj| zd9i`{=6T%q5`94&WiE;MK8e00?lGSMTQQeKKu3YUe33MR((|i$mU%hW$IGLyh=yRQ z4^4l>J#8_+2|8UuJTiscUlZ>#zfpj@WMi(2MCJ|{m#WA7PvkRyCi$jV!h8zpsT6Zd z{KUNB0OkK}@rd~?tQ+gb+!dWVsqlW!!1xjKm;8E%!YA$&^HAJ?p5njuQ@jn0c_L1C zE_Od6M$;aFi}Vv>9NMrhN(IqsxBbe;X zz zw2RC+>7=i$J+Sezm}j*zuPJ+r_v4gXOcgD}#+xIb(^@b;h4Nby^PEQexU#$s3ziz6m}UzO2oYTr_`duYD;wiRZ8FwQnTnTYrzoJ;kwj zoh|=%8p>XKZN1bN%~v~UJK6p7AJhAt4%$)XJu!;UF@MT@jrl$FKji)a^Vn#`Cg#OR zzg5w#xE%8n^k3w@2J;fMU*bm0drv5Ct5~GhMSG3ypoJ0ReHG2un#Fe1a+p6weszfL zqtp$?X0b}agW$;+727{iS4c(vGF^xJ+<@1D6bKhXuJ*8Zm@m>#)tP}-_)?g zllm#h|B11Ew2I6N(0(Fg`)ZNQ?}y`ko%NRHwQ;8Pwl! zpj~C|GYr2~8T*b_vzH2QQ&s$KW$Zxhkd0Tx4%VW3D|-n(dVe=m%OFPl$^Cb+!!#@j z|KWqNBedR<{o);jcRDsqYt zU`u#J^ZP;sL4TX|*~@5s8Ltg`N9niSQ=A1BaQ`9LfPSOo6cLR2poyv4G3JKMSBa5- zs|)b^0&!C{V<7oYv`Qf#)(MYRN^*+z*JYf-iSuX`C9C!2d*IQMi`FYC+I{6-GKNXMpSlmo4e7JH?d?ap`cFD#+#(k>wA5pA77gwn5xACuWbF~g5 zi}lyz=4&f$d?)U6t!`Mc{!!c_ZI+E4@n2|xql)!U#V^q^Y+NS(E6s^~rTn7!RgA}N zvo;QnU!j$IuUH=vzfxOd3ukUFd7YNaJPqaFHh#T!j(HZ! zH>2(bZT=YY?-A`#ei?N)X}Mz+Z%9LXh~KQW8b|CG%(Y_bXBV$Hni|I=-*$ov2Uscds^>`4i;x)cC#HILUso@;FXi#P8P(#6B^=1ulOIdEzHYeus)1GsWlEK_c?-iSNth$ zqK%KopVs0e=ZjIn_-ZHqj8-7oFA|WBv+?J(tE{K^+={=XMSM_f?^gV;n)M;EiqG-* z-?W;{OA($v^$)EvGll>3)N5J~$vJ}b6{lX;)=nn>e$g%$?PKbnTJMh(Q+SQ0-qN-+ zFMa{#G4-BCzji?G`*gwjXX*njDN=D0#DDnIhuR^@iDIA|Ums0sM`jYHDe{B-$C`CrJOx)IhyH^Lg-% zsb%zTHvVhsGx|syyWBy#oB5lMDSZ|6rOeb{-EmgXcQH3Fhy7)D1^p6pD{y6ZMO{Zf zN8z7}5~3Qo3iHq4TJB2vOUyM;PW8ZjnQMU?xhv}*GViW{^)@(zc^`OrhiCOKn7;(K zc0a3cXZ{M@-d#n%z#RKD>J#`8^HlIwXH~tjTg7iE_%(M`y&3Zea4+|B`kTxJNKYT| zc;-*QH3F*X)0tzy1Kid0`ONX)q3-JXcg)NC;}kadH1kUE7A7BZlD=FF1*L6!@l9Q=iMc3iAuEyQaR8c`Z24 zT}wa3e7uP<#@_o}pCUwe|XvQ$)yZ#hqAB<6G^h+WHXY=B%H> z?mZaKW|_710vj)O*U@*|c!j&JevkdHUXA|ET~B`|QH4*u)7?OSL2?R@*DvV(nX~TU zt1WjUJ%c&+98SrCw@BV8=)Bh*XCu9B64^@;BZt%cppiaCvPX35PW^Qw9b0Vp^H^nI zkKE6aoG<&+)3CQuvg%(iyBq5#ZTzSEMg6vog{PSwm`wJtpMw7HDNhT%o8%NL9`$>8 zTr0h|WRG=O=5H&#zvM*OKRoMcrH^L!VWc7Ud?x2)|;hJ{EG6Yz1~}LQTp5KKFKN8;)A$--qT+HMCoPxx<|Ix z>DCEK-}N`}^|Yshe%Qv%J+JCFB>TlK=$m^w>HVe^yYJ}fqDM;hi|Q!fj-GD%my*?f zf2ikm{gC9Hg7*LWd%Ej)m{oc9&|T=KDgN|6V5_r-URAPMpAGi(&^z1sLr_m#u+t4c2_ze)OG`W@w8rYA@Y*Q=r(6s6BzUpWkruS4Ve08y2 zDIKOyvT^sC@9O!?v_8CA`aOLqbMSI%KV$S0%=r(fy^qnaE4EtQr1BZ7KVp3d+T|>B ztlk*o2(`y8$MBmtHOJ}8n4`YH`C(XW^_GgQKhK~P!0nm49>#oH zdtdLy?rDBm0{SbgulJbBD_p<9+zK27e#A`U>w(4}=+(S3JZm@jbm3D11;*>WSAZn~J$eT}xla*)&ZYcF)JHRW zz;ke8w@VGfG16VC7bN$i`Ezy zR(q!FbPERY*h{otPuKeqWBnP6eB9*8(8HzPFTVX4t~|+3iP@t7job1GVI>+Mige7fQ|%Z{EcFr-ZL`C;A1NZw6vK9F_33 zp2gg$GPz%_?`OV)@n}-Q3O#TRxkvsX{z(a|^#GJ3nAhj)^a_%T=Bw-UYRqcBx=wG& ztmdoh_4dqazPet2n_10QH|Rr|)qHh>K3cJ?FIfp2_3v0e3+t72Q#a{*C3~!G$hUQ3 zlYUupqSd2^5Hk`s={K00K>xgFlU{iq#XrRgVy+?CV?7Tpg!}re|Fa&=r@qzOFelwr z+>zZEfNMkFgY{}ZVzVAAIng?V@p_%utWRUTnon=mGns23ex#ov*<-Z?2Z0M&KN0nI zo!Fu;Vt&${(z8Wh#_j{*eld6>>zB;Od?{$Few+E3aIDu8w(1#pj`Yg>TL=DfK{4-4 z*sgC>EQX-}TqkzwuFs`j&}~<^yGpM@ta(Hn>J#w@)=z_;+{a4x2)yc%e4O=OIlk}I z@7Z{kxl1<|Dtk14TI}AfHzP)WLGD+$_vqFlVviV3>2vSZQ<~}}IB;L;Y_kX4IAJPNAQu?6h6wkNuiG)M?C1Qks2ma3_ z9M-ENABi8nPWF!I^O*;uKR%OiM6b9)>F?&?{bIsVJ&UJQ-dg@{9D1S1DdU0bk)JoYd);WGFtZP7|Nf={p4Cs<2}w zp4P+GDvn0KQ#SF8euKFR;$1fJobFzy^v}b8*~AO_Y38jz5ns}WtylWN(*I?>?gqu* zqn|&Ma7E8$c0yl0@i%?`CZ%8Z3Hrmt-}U=j6eq)eJ@@bWpsmH+F!2w4JM(uTrMBOUU8?yhk7T;9GP(%`k3K{mf;3u8mJ5Jl1a$BYsEF->nl* z^hMt*Zv7kO{}cTn`gzj-1^=4(Tffab;0o#g)=wT*`orLh3Bob@h~lf@&_vx)5&bgx z@1245M55ss#{3QR6BA8G0rOUbw@z4&DnBUq<)A0t!u%m~(h1fhKS|#J^@!{@gZ^=X z<#_&#;wlrdUz+%oqd)Ucux}=obVQs}`ZRE2;?s`aX!qoQvE(w2Ru>dc_?_x!Ime)j zihF<)6U#dqUsC*mbYIDl^^4*RgnuTXilfS9#eJc#o>(%}T;?MdW(ANk+c&u0Z zFCmWotUn2TdxU?R^=f}5#8D3YK1yCphrSo|Z6&7&wSN-g7{vPJ&<}+^iS=rKB*ZbF z_0J%Elc2xK`~dZaxZDGk9<|>R;%Fv0QTz>iW1x>^{t51h=d*jYzY^lu&iWp(Kb7pW ze$+79UkP!Pe5m4o8}mNm29i^R+FuEA^k99-Piem;#4(=rYJUag#rkvbKM(pPtXKPK zi2oxMf3-hW-w{TvB?@Ca$}6#fBbW7Rf9(awCDz{=hg*mOnjPqu&pX`3k;l(shhw|sL@^WoKXJd|*yNOYIp5PnPsfh`Fs8 zV80;wGe@VA%6?hcFG!x_IL%yc32p^Qp63vyl%9Bb@&ZRS$vHxg#d zk-W$efg5{hJy{9;==S6<9UqhhV|~42BEH^F{>qU`4E^&%FkeVs?ud9s@qFah_2d0!Kx~!{k+tEXg_ejRX9?Xv!K#Cw$pU=iO+(w_?gBM}#QW);Z4(#ND6bPThxH|4Nn5%ct5 z><^_JcbvBAm!Nkq%&J1{7dqx)bEXA2moQWQE}K@; zd0(>1uf5aCIvZCd_ll2AE9dNQ;|tTuJ7?MW+O*2fb2ff7t*Y~>=ZgJ5m0I0d)5cX& zYdCRa=pXxaQfoWcO7;sX-xjGM&fe9E^_@~1I3sNwn)-rsk&TC@HgRsYad>J|=MBkz zx&Dn$ZRzaxys~!)<7;|qYiGEP^HbY6^K3jf^=0QW8!u1o;JhT+FXnGWdr9r+99EO; z`NcrAw@s;?ou?(|2*-Kc`jy(%*}oR)Q9g5tyE~n=6%W6F+cr~sIlD>ri$9S6ms8(# zW-yP~iuRKFw(|;eeb|4P`i`@29rEuNc_T62qz!h?V*Uy3>zTA6&P$T>MNBYmqevU( ztXP-a=ZnfH|3+zH&K}I9Z=3d>Gs&j!l{VhF)}|kv7VbQ2(@#o^a9Z`0J@TKFHpSV4 zne5L;R&T}r2>=E@&q1zIlJFDYHF^bRaAMyL2(?53(Z$zA8{Q~X+ z9xpjjbliaT6Zn?Wi?-k5eg5>t&Wer6eWKWrL;Qs^sR=Rm4<@5MPyf={=|!b~v>vyQ zP5;_CUNYWi4?rl>mpd~g=Sa?-zS8-nP5;^S)y{pAJyxZku%Fmqz4It@UGUe_*E>&3 zE_(m4!P%gxjK7>;yx(AhGZ8mNQ2OG#WB+CPMyFr0a=&T%Cg*O&A{6V8?bE+?issTk zzn}irX)&w)zHglsm^&rW{C=~u8uL3~Lu_`oWA2B2j6Ku0I6E^B2Ok9YWxj}c_Yc#z zItMX71fK?vW6s4ocAfanIf;2OI0#(8+aC2$b90kco)cR8Ce7fSsuXGdnW zpSs)GomuUt?siU*oM^Sc`f;msk8`SIkJSTgh&|3!cAqBmXRkAhd9KW#z0S{=r+O%U z`G?fLDOeGv7|ZdEe;=oWC)bME*Pm-)BDCknDf&6fIT$ z+yn=KOEZ743cqKTe$ZKgIR*R_xRqp_ufn>dO!^^bALg&nzOn!29LRhE90U$ijF%hK z9uGTHna`trR!BeW+{k=%0`UVjKjs|5e77$4`z!z8 z9MAkN)^E6D-sxs8a{})l(@!|JFrPXuL=*5OW_AAJgtKOAW&a(Fw=JO`#GLS!vKJ+} zXuti0Gg)$uXyg>49o&D+ya{HyrJr=pm7HR2{EYJBlyj+Mk9Y~O!(FS+t4c2>qJQn1 ze#%+$B^5sL(Da|3S&~ykVFrbN)*0BA^jObee=i7pn)w0rcbw;(9oj*!dBi=;_cU?N zd4c$!_XFpgk0j@a@dnOMrk`_0yiEEWF~`LFz4QytCCrzf#xDk@UvxfV4lRpbF8vqh zxb`aig=@(EW#=^JrC2u+FJX?we3E!0b1>F@>%hmD=k` z=a?grzftM8osB!I@Irs3@a{TWGpqc&>wKGe&exc)rr&jrXQm$%JON%QIbQ^$K3z<| z@BEt>@7D%mUD_l1f%DleiZ{g2_aqOUEtzW{B7WrT!|drV#I^Lt&JoOaz<;Jcaelx| z_U@(s?esE}y?gllXEF1|XyihaW_)ksq%ElMWGg1D{T~&;g z?Efp+YoGC)afS87Z)Vgm=J$}{i+H5(-HbZMlQ$HtyA=xF>UImJ@rcSl3(NBR^?jo%%Or|(ejd#navLv%6HSU;jM?H6`6{H&i0 zt__~adV1g3GQFEIm-S`P9=1BW8A~K5@_D&##!7at-UoIwzEdpcOUE+08CPt4KI3(x z`CBsmq9N)NT9nb(#yz8Y7#nT;N5&h*b;%yFYc;v=X*777{Ck8t-`UgXAvr~?ll^y3 zqhWv27o9KeX@oKN52pU6r?E(KiueS)?v;cer(&3$1)f1~ao72cWQjU?t* z(ciedgNo>??_{dWREz5@G5)5j62K}US;pQ zMwKCC-ydImy%P&JNGC*#u*!#@10eAfZe~|h4N>dVGULOT{3^i8*ejDlleQr z$YQQ4-M?>?9H!i_M0@EHInh`~ta(K6aIEjV;l@MecV+o~VALJ1+^>K=Lwsl)W8Q)B z(-4!4h9i{zJl1EpE7EvHF~84>Fv2C{{2ls_R^AAs(8is-9~s};xTiPLIBnxW-e}{I zWRDnw`1SP08qG$k@Q4R_oDGr^}3BmHjeTp8tGxmeKX{DPj8B`+{S~vsm4j> zn`qBHz0-|Lqm+B%LEa1_@IA#T$giGWpOG=Tmf9{=SR2iqjJBswJ@P2A6vGHc_9HY&6rGE|S zo9Ufz47c&;-p`Fx=J!xPW_lMH^Cu|x#GiY=FmAuExD(pjOz#rI9bU|zd%rRod`O%q z&y#luSZ0ittkS#RyWGgO@ekf_jAb@H<6UJOu<`HSHO5uRD!pgC>x`O{RCtvB-@O}* zLCloiyWUL({jwLe4`PRJixCr{n9_U3yUmzm6&=OciLzWtKvi4(|6X`z#M_}*7IF3&fB=T z?~-A~Dfih(Up?Pt!x>-9&3#vlno|`|Kzi%>emC6iVs7rcYCQ4~tMm@^T{k);5Uco) z@cqvSxA9otO~Ys7aNjLsxs9WJcZ_3_ReHmH_l%N>Dm+SmwC^vY6EmeR$@kDWX5&oX z6JunOa!=_E_i3&)8%O&bu4T-W-f*AcnxCxP6G!_@*TxjZl-_V(fGaSyn4^6qT&Zcq zD!ns(rCf(3tMq>6dm7hWl3wvbU!dzb8!z>hb-iNaHNJALFv%*tOMT^CvuwP^SJ8Eh znbNz}SJ@SouHr+y-&fUji<#29)K}eADMRUr*Z6922yN znXT+oc@FY6cXeW>^o;ekbRDyCl=mgq$Qy(Wz z`#QSr+xWV#vnwc<>?!vTd|h45B&+`9y6-jDcpE?Pb$88YrvAf~`G%`mo{A6gGnu_z z+nA|8x$f)Z`pw1=(pYRTI4YzS&!f@Ag=B3c%w{2YWnYST-iI3X2OXLVw$=NEr ziiqE%jFB$uQ^h+lUOmbfkhpsFe7bZ+{ZD!8> z80(kJ2-jaW-WK_htKvKrKIz+KM!NdjxNBy#t3a|xc!yJcigg{bG3Em7EqK2V7yFEBC~h54a*0f{|Y<=Mei`%@!$r zf0TbuZz0kvGv~R)5*0scze6(@xLVnGOy)vYI5V~9yv)V; zxi{sWxG-~xE0dYp^U%z%U8`(7CUd##G&A*2Lo>f|o%~AqCmxfz%60#1#nfL7&0OQ^ zyS$jkWUg}^T0yMx%Mcq}r)^w2V56)0H>6LI^N~9ln_P`0CyG&XsD6IyN|KE4|wdq%79(A3zadmOr_4I~f|C=&TxEk1a zkoQN|>o(q(`I9Tm#z!-Mc11|`2oLsO&SsuU&;WYwQ{^8V(UWaFORKU{tr-^;w_n$P}gpg#8W{?B#IrgvoBbeWrq(^o3% zmaC#wFmm7X}t ztD75{Y5uw?(=e?qN>4n7us z<~Or~%nsX&c|=wvbHEP8G=6Q$tZGiR@gQ$CbAgR}dV|eG>zk>271Q{)DYKz@WnVF4K4BIfDCVBtCT8`6#e6oi zsabf4SoMb=W;HkW+BiC^rFq51?yT0Pak$w1^sF{!4IAfXwKE&qcve<>vxkl6X1!v* zZQ~_b9nCPwYJP*Ch&E^0czRY>^B6Prf2*@zGsBLk_!Do<>S5kurvA{K)yu4OROyMQ zXN8&_n5qABXZ11L9#eYa=~?~ELB|zSf9TG7+g$rYF;CALU^Y8Rtopo;FuUi^9 z+?*ykMcj>-`y1wb8)JXN+$Y&1(qJF^8|GE!g-A~sZCKhXDq zX%;y)--qTo$%(>BC!S>1{H56cOkac6>gmVkZAHeIJ>JE|Yt|n1lW8 zAF`&HJ$@xt_GbE`%?##Bm&tvMd0KLcp!l8e#hMMSsQ6I)PWa-?mCR)SgfHGq{Y}{q z8h~GM%9?6Ae=oLw!k1unVkY}1e2Hc*GubapNHVWVR`D-PNH!z?P~nmN!h{sF`&Hr; z+^r!*^~`BzhGdn$)iYDg{@0XyDv#=!Y3BIriaW!-CZ?Mki8YUyg8An4tm)>E|0#Qu zrQT~sG3SDVgx6dm*&}GaR+!*3&oR?{tS}+d9DhUEr}W;EU`FAIy&>U{#K)m&evT+&jT(dy3THloM z&NKHhQ-5E^JKuc7O#O8k?*g;%t_q*}<1*gQ&5V1B$6~zpWG*x--!BfoFk!LTO0u$F znDB);j+yKiCVXkmVkY~A2}{hdzl!Y_CM-2$9~9e9&-}`K>LGEWD3tS`WoC8Bs{ZcJ zT5g8e_;A(=bG&4ge}}WaF&{Bg{vFO*X&!r|>`{9=oVCiV_?WopedlWPWy$J1!Q-se zW>*^r_}7?&Y+TO2&U8!mh_CMnQO>{KTq`+W{5b*dYy2C`tCH3CtPTB}Oy?5{FGYS| z*w(+<>?%1?et+1}zs2mQSRBUwXHW1*<{!cR{9DZ|$=h^?7w4_~+su=acgpX9$NG1e z!~Q1w9+AF}+Q%-ly13z2+un`kpbyzu!E`9DJ7Q_W{$;$o_e)$rpIP>Hpp=C;75Q z-!o?W51F-DzY9EA95$OO4mkga-nSe!TS)eZM^`Dnhs{?dr&#oUWVZi^87^7n@8hf^ zrd#R7?)&(@!hh6U#=Pdd5MP1MG5gW}R)S0E6hGYW0{iR1L6Q@#n=-tkW_6_(l;3xp z$MBYu{^}(kvEKiKxk&O(trW()+O>W#_ej1RK;KvPg#H9GeP7wnf5NHpbmD>>hK{SwZf_|KUAZTy4(tQleB3;uIvmW_Y& zpEsA-_>TXAx!cB%{1?qjHny@anZilotMJNX|6*3LakcErW-A-l&HmNwYvUH#SIlr5 zx6l5~%&_qr*}t2MY}_~d4|BVXhh<+i&)IlP_BHd7ji+Q^H!B*&@r%#?pV`dD)3a}w zy>0BzzG;rP@$BqB%~TuD&%R~OxAC&<+vXM>ubOF7S2TWtJCPC4rr8{f+bvToS;NltkyD4;mLPvusy zs@u3sZbhrJjjQHXvfi|D&D_e?ARE`ueb(~WxMgk?E5pVw=T^0r+xYd|=d6u34$ZA* zT~aLX(;1vw-NF?t)P5yT%&lQHu(2n%w$;tXGjc<$2+1j8=5&0olly`tN|67e`w<#h z0AeF|G1jmCM%FQ@PqC(YsK0Jvoo4IO|30hK*O`HnsYeRPm$na(`}f zD^+sQc-hjLEm?j4{c~<>Ymwxl@ve>4yA=6Pl;h-cuVu{k^ANMmnpzrs)SmhM+_}bN~%X;;F ze^+aykLvE_=dHW z`Q{P!1BfRJI+YAI@$Q` z8D49&jo+P-Y0a{6^bEgs$j0e2a;yp!$X)`s=RB*rWL010%*eN5ZM~SO4CMm0WZ`==WBVWL3Vs#P?Q)V(ZzVG`~J* zJ_&xa;F9$w^Dgj!g3Hzb z$*R6;;@5xruM61!v~!J&fAgXL=u5MHxUwhLuR{ucwNfP~TF0u<{He(P_EOnD;C^%H ze|&-BugdfN21WXv27NDAA^nQ=x74fnbuIYavKo>5qWhx$uo_BM_eq5nT(#P(|(Vo7N6ywZCx7I>M~(8@gp3S1jjO zNd>p8N6czIb=xY}nBsd`qy2{Tg4XuPe|4I=ra-{~AXAjeyb2PmdyY1!PIi z7cHWxe>DRRvA)62LhLTE0)CWy(Yl2B=D~u1fYXwiA^a0Kn)~WDMcuR*7KO4}xCFw5;eJh1mEufR+qW-5wKo6zo_}5_nI}GK&MnLa> zxv%|?eM--!I<*7(OMOxNLjvAmru0SBX%H|-a#4P~5HOnA!g%|P`9eU1>c@_I*Fkvma5h!Z0Q8 zil&B^NnQ%g6f27?3r&l>6qz2$vZx@@G|5YniER}SZ$+hsCoxPrlHIJd(6p#D(ey;6 zMMo>DZ>?Et*cTf$r2eV! zwg%K6dVAN9yr&7YPl@R5UB|d9;3j}KNxaQSmhq*JcQf-lw?O$m-ZvOu3AhR1_etJ< z?|%4I?L~dPpD;e=fbTnB)Q|1i=H4go?+>WO|9AoV%c5G`fa)K>)E)!8hq=7bFdj<8 z0PnYqCjo8(_ypruOObz-_jkr00d4{qoD2W9xjPtPe}XNN*xxJHFqMm^;#Y4P)wWqrBH4hWC&0 zcP@wJ-rEQIs z+iOXD&_nHWx3?iPF=5_SL`WzILe};FQ#M9*as<};{@V2-D z`O|s*GRM15Vin)#c)yl-n@;0ruJ>Ds4+`?nTRf(AAjbnZ>;3j}CXa1v7-+b>t zi4O|$=X~!tiMQD)UOnwiV@&ZZx3>N9`?dD8S?Zlh`oyh(e`r(St?5txqxM?mZ9M?- zd~wk;uu5(Bytj+Q)5LQSKXRKEdFKs8{xmVru0gzC>wV~InV;LU*gI3=Y2q5tpWLq4 z>m5Y$e#oEQuB6tU7XVL=dDR;&`P;P-u)g2Z<~47s#M|s^pndnWdEM)0{zTwUjw$o* zXZ}{;Z*BLcx8q=0zM%f{uD7qm+w4Ohhwp1|_ks6%#uET%wf@kXEb(FazV)6qySP| ztM@UEcvncg(9;#xM;WPKu z*-`I)iB)}%daEQ>^*dVIAE-V7O!fJ?mQVHh##=4(Z?n_-{#)-ajA=dpt=D!9)_0qo z*8AUiy%HfvZ}(9CU%aV=1?B(6 z`;^40eQUgn341;(gY{+S8gBvP?*L!8_*d`qjDLptF(LLh@5_u`u%5VR@o(Nz#?MOr z@7^-T&jY?_@$cUE7}NXELf_38--o_*vCuzf{MiQhevGD?ewgw1fcq`B>E99N`N6KA zlo)V0xUD{& zG3u{g+(Dlw@qDpc;!gTr=A*tZ7I)Db+$8mTA~(Z*foHqvtr?#O`T<_Rcmb>j69KPbympfiHv!(lxDVh_fOj+grUZVU z0Pxq0hXYOntldoZE(iQD;By%#fW0#ScVe6k<2a zxy=6pF#JBN-a_ITJRjVkw_|xM@2W*N=v|rrYFo57N$<(|_W^DK_zLFZ{f&`}Zqx@c zUJZCc?2Y;jj1PSP@gifGekz`fCzrdin!~?>E=ql6bp@ z`?p{Hx9V{tsQ>>H=1+aeNPVruYW^IpZ1&md3Am;R!@?6f#?M1rROdg ztEVwG0XGA@j^sTzNPpa|moQG1{N^lG z5Q`pw_|#^ys;|3vHGIG4lC)Yp`vS!G*WyQEf4=d`2lcHo|1?jlt*GxI{Vm4b05<`= zi*c^xr|bI|uaf+9{Y#0r$^H2~OCGM(KN{?RX367vOp2_Jhx+$yy}iV6o-X_MY`q)v z-;w*fZ2dCkAC>#NZ2d~+9|L_Q;z@llV;jt;a6eH`V!Y)Ed>%4KPiDLmaDQfm1mWShKp8g2qCiysi=IM_!rtvplpUarW-+X-$V>(}dO3!1w6#9!( zJf#;A7Ei){aMh9pwf?zwJqE0a`l`$rN6|?2NC;qa}4=!SqhH7WqKsz zb%3uG%k*Z9b7B7Y$C5m~wZxg8)qvju+?n|_zVr1P8PoXA*GDp@@m-*gVNBz@pw_;8 zuy0`8a{XTBznX>Zu|mI}@dtpL0M1}c@nEGslQG4EmHK?fmvzMatMpvP0|7SyT)_C3 zA;@2?KgYPqHOODBzs&eW=+7l$js7a*w*fZ+T*mn37RY~2-@!N)a1+408B;ubUjK|S z#lz?I!;GJl@w`a?mhmbX&x`aEjQ1}W@B^{BEb0^+Jia z=~P~^zD430o|dq_S>3K!f0O0A0&W&ttnVaw8^-&4mTb@mj<+={>e0x(rZvyF~`1X#T#F)m{dwS`; z#HaDKQ_q-4nELZadcMSJzSym=A?#TX@wPM4wA z{2kO&8RPhCy!4=cA7gDKj*m+HVaAOBZ}(T~GZ-J2{6qR2#;)6te@K6ZFt6VZ>&t@h zgxJG+aS$FA`<0&aH|akqe{qMS`nbu6GsVFcaGu}!Tiq`)tq-Pj{!U*Ngf($oe@S9k zpKrkZ^KtzZi68Ue`uE4q-|O#?yr=j$u2+B1Ka@Dr^Cn=Y_(89bc!B5*@4v+?t=1FM zuzdJFCV0Oke(BG82ICK5{=0Lj-6%o~-+zU_&-Lh1j}bqGaJ!AL-&$%ImG>i_FCKvY zwtT5&G8srlGt<0e)vAurRN%6#&-kW1Go|6xo{pcMVx0eWxN{jRg2CuS~9jzKz@|b zk#Q8@s}@BWag09&f9#sw)QFcj)AJ+X&9P05{>-<@_2>D<5XOz=`ty8a7~>XlJVhI` z8OH&B>4|6~hcTT`H#7W<2ad=2wVAPk@o<^{0^<|L<7NH}jDw8nyt}#aHRH&;Fn@ES znlY^(S{OBqY5mZ`aHf<08r_cbdyL_eIMZ`J;A=&UaSrnrL;LTVeW7sy9{cE&W{wKVP~%;Tk%F*yh)&2DAn1>q^3+Zts- z_~6p^#{Ngq{!H=dIyf(1+Q}G|5x`BB#Thk>8}EbZa@i$@|1spx7yVAc_w_96X~0j= zNE{9G{}szFGx|%MDaOEhX>)9EBZYATz)8#c7!@qPzvO)K=KLu}E5<`%Kc$HW zjBLU@-XAb>Bv$@>z<7o*`||-~E%WJl_=CpF5|_#MaSpY4(Adcs?-y)plWtTp-VfN* z_E95pHri7rUKj=6_nen$luE4HbGlK+e7wJKsLgca2xHRsxDlT%>%;awVI)Yb%74Nb z$C%`^jnWYLxkj19+jO#juJM+{Z%BKZww-I(=AeExeij(I#H4?7+XY4!#;8B7?K4J} z#43NTF=$?}eM^k%C06%AmKd25D|-u!<&4SRLSqBV)APwy#$M*5znZpv-l&-$tp6p$ z@f2dE?SFA+fS|pOGqYr5sPGdHamj zj4A)8MipbK|L4X-OR;>F|4SoFVk$p1?@MC`W6ED?WGzE^W&c-3&pgD+p0ABD5-WXQ z8xti~_4(Q;WlZ|MF(&5+=RaoTNv!f8GgeDX_1WC^nDM5>2R$_Ys*QJ;kNVQuRvQ(J zDPH``XkCE%mA;ckCy7blp*AOtK@ux{KN~}sPxk$6jABgsel?z#Sn2!Scv)hq-{!Wz z8y_+zd+erTd2s!lW`x8lztcQVV&xyFnZlULcbn%I2Itq!ffB3yx_O<%D!*=~F{b>c z`4(ep?*`_>D}w#e*qko$0{J|)W#7i;vl1(Pjm@o$NnaB)a%FJ-^UP?8mHc^TU&bWg z)XWKyZ)W<#aB)cfX6CMt{LRgSjQ1B{{J+qQSQT7;E3=)%RQ~3+t;|G;)p%=XUdw#6 zC#`Keb2MYp*TI}4vGQlExsv%bf5e*Gg7R-_)7jh|lE15ITODlA#ilN?iVqi??HE&h zh%+~?L3wrmrH8qdG0o>a%pDSM=lc*n%$*XGeN*##n6b~v{5+puViq%|cpq;@K9BtE zg6>!JH4_=reUvNBnG&n=2bl91Q~3i-Kgo0X1I#>$Rrv$V8j|PouQIcW$Q~*`(X5tO zm4BTX{{q=V<=ez${S{81@Y(S4L3_Ao*^#zL5TdkWbX4tUy}Ld`@=`_ zQp_79R{dj)nJlr2_hZbzGp752A<-!HxNQ8Ru$%9n{*ZH0K`(rM;R5@(8MoSOK#N0vE*@k6j* z{<+5tbA!Z6|4ehU#A^PVY5owzZzACBvX`m8K|>JKG#D zu^P{F%v8eM|K^yLub})vLH%!m`OPN4T8`+J0q2#MJY#lv75OC0w0<0XJyJ^yY-Y$N^&Xpgp+ zmYDY=7G)Z>PpO&CnA&f%=_^CNT2H)go+ojoAp2f7QyG(eW#&%CRG&A@5pQ6A<&QVb zaT1pal7G`IWlZ|sGLyEWJbXVa^w&n0y=xXrTqa202j**U2J72pZkKqwybsntf0y|_ zW9U!CEjMk`)K|1KQ@iGF#k3i-ai|e|A`qXv9j-TGg@NOcUS)BW*5e&Z)*Ml zb6|*krFmT#zAY&K^!!S5Y*79M`Cpk6B_?~O=l|1ufHB&$H2)hjlQG_ZdoKUDxs);9 zf7_T}ZElp9?Aw-q!aT+p?c0_Av-vyAV|};f|7z-Q2kKjqFMLrFtNJ>8F%px$Bl!+r zd&a2mWWL+ijq{_vBl)`TGRA1Hv%u%OQevgAp>Htf$9U7YprP*u#;C7lL8LF4^P|4T z1?T!w7^A)}1xv%PT49=Nl%mn%@(ABPFKtjoALa)FAxkWmoy4-$ngo&z?4e ze2aDvMtdg54Dq#lAMt!KI1;|UqStl4QpPvKdG8GOP+z6Q@cX9ea6hcq^*+Z3D4!`- zJpte6&@0I|QDXAno;JgLd5qD2TiXryJ-AEi=kuo#zUL)Y{u<$XSz=Y65x!R$Q#>B& zdqd&{ay~3880GtC5dNs(4qxLB$$rN;e4k>hud~Ed-$MoCeLWaseSa)S_4SdM>^)R) zukR|xXs>Pg-+b3etn8cOyEzPxm6-HLET7`Lmoe(UVEI(vREbG{#PW1sCS%m!e)*%m zCm3V6dl+MR$;-2S`#C@Mr)!qa^&Mf1 z<&9nbl(JxtK}Pf&j-n$SiaG>Aw>RF-{v6PEcR93-k|)B!cyP4l3@FKYl$H`{R4Q^CedG z`M}pwVygcwg&+6^Fvj|iEBw%xBr)}$TMBpkQW&FuFV5ZTTPU&8SK(V4hF_4F^iM9V z@NHm>`ZEi^@VzE6>7QKqrEfc9)Sq2=$oBzb^v9yYqrNJ}=#Q0!RX+P3te-0XJ6|J- zsl0WC-}#y{#`3lle(!53F_pKj@JC-q##r7vg(rP+jIq2ug*CnrjIq4R!ry%v5|jS# z3T@U*#;E_-LZ_9-^4K50EA&{a8KZvB3d7nbv9h;;Rmu5rzKLAXz`AsApg*))(a4%A zv663MWrpE-ERXrSu4rN{3d-MS#d%hN#8ls|E6%r`V~q9;T5*B(GGnaouoV|tI~ikr zQ&zOLj!3M^Z)cs5nCgG;igwoTjIsU?ujpub_o4k%-n}b2TMZdwc{5jZwVE=<@^V&m zw=Q9fB)Vfw;RbDS^q{LL-3oCkAV;Ez3ude8A-OKsW-!H7_XWh>j%iF#p!OCEa z<$btfptXcCmbZV!V5?YS(!Zz8HP#o5QUBzaq1NvbD|?bG&nMJAH2#vTiHvFd-Ds_n zSjpdHtz|y8&(|w%vi34Y{lBcZ#X1}!Kf*c|B=1={!aDcUKz}%I%sO|jA$_nS-j3C5MvNd9TY=lcogF*ZLZ z`4<`gdMA8;#iJ?KCc<+6)nR3dRnGju4`KeX)|ZT@Jc;?oTK|+d(~}9<3H%=j%lsFw z9A`DG!1~hj;K2{vZN*8vKuqlp)sCHs?UWdPfBG=usaEGNsQjES;Xd%n2d#mOyNrQSAAZP6 zW8CR$SkJFax3v9IUixFu%15k*5>tCSMTQk8v8r#TbtlQo-zyrkGSl)i#^2+)XXRs7 zxx}izk6B3vQ2zmKE1V~2;xQ}jOTzs|!}tfB#hCchthWvY^QT#RB&PP6yfVvj97g_O z@5y6u|Lx)FR=mVB1il};Gh@0nTw?Wp>vU@j;}*bwaOHGsGUeCS+=KQ^w=x;i?}1FW zo*;SeKF~h}_=}j2_LTtsU1DX=bSw6&fIZV!&alQwO!n-_m|;zqSlKhfdW!L6uxB>N zFQfcy&kXAY#$?Y7>+dAb_RO%#m{0c1ur51-%sTYXOlt~bd_URmo@r$<#`lvKuAF6^WQ_h_vU0ZNK1%IZ z{TRy6wk(O2ec4tsiIsg%S{)dZeNS4QI6u9g{G=66d}&{X`$_9c#$?|dYY=0!uSm?X zZf1=3P0;3AI~k*WsbaqMg~SK6ZD3y!;KLHD{{ED8lKBf||5#vk`6tzf{Jp@ckT_E` zu+TpXtbY;T+vPi0AFNzp{l@avLE<~Vmif8;7FdlWrt;Q-d{@H4y8`BymCsl=lRS@? zMOOMZR6dQDMOHRr8ZWulj&FncxmE>Z;xD$!e+cF;w!V~D)%RJ;Q%!u5_gkg^3YPa< zTNy8X1NJ}K5-aBf@jF}y&;PZhmi?r}-jAUEWdbg!5Y{>#g8Pdrms(MbXMP6vpR{FG zTgI=&!hK9F&+5teK9IjfE3^hO{!q%Vu!b?#As!FbR$Aj2_l<$`8|^vk9f=oue#?RR zVdZnyE{WCo*K^i>mZ$nXXU+UMxPH%Bix?CCd23NkF#maLHDlrzSw+7F^NXxf#>9WY zD*i2)|AJM#OFzz z>2X1S|77J_D~Z|Xh<^m+Zy?O}t+z%qCi~V~6Bs}8Aohp#FiKz_!11Ynw8Go9<4Lf-?orJA?OGM! zA69Ot#a{vzt2SB>Nqwq4H(8I9eztd$HCN(k&^O^eMTbq+!Z7)QF!|?Lei6v8Znw!= z7bd?sO#Tg)&w*w|`5j^Md&A`SvwRY`73IGQlm8)1{uh?7VR@S!+apk4OJeFDn%HEW zBk?pb6Yhhe{$^qF?Zf1|vV3bN$zK{KpAaUW$nr@ne?yr3ZDI0bS$+}APY9ELFiie2 zmak#?Sz+=|hsiHt`6t0ESl_}h`L$v48(F>=x9^rP`FF$QKVo?ox9=xm@`uCZzh(JX zS^mc`dCd_#o;F!tiKmHNZr=!r1MM3fCf|zXM{)ah43obkOui4xZ)EuaVe;39$=|~A zo7n%O!{qM?lfRGUkF)>N!{ld%$b0=^TWaMo-u&M6^;(SiqgTCAi!p!aRqt9GgY0|zfgRTS zggx|r)BDyQ#*J>r`+e_QpG&-5(D%u_ZyjU2@FRS`^nI(NGteJ4$9`a4M%c4I8RPj* z>k7u-1C9_ot-*}5U&8x=yQ~`|R{dp{bsORWoMB>BRhi}01wN(eK5h3zlS`&k?Q+#P!_1-}% zL*fJ88|D7spf!`QM(e$U)?DV({^6kYjKpfabE`>wVyGSS7~K?gUhS5R!e-q z+Zf7&`_tB1!dzaZ^$PQ;yh>|}#HzeXYbVQ7d50{Ij{0doRw52r8zoltJ7kp;pX+zX zs$hBRAg%`vSqGU<u5{9=L;!<=pf#QXA{D*Xlogx}&z7Kju4Y%L|uN{00pej`1ZZAq_6uZu=MOmd2* zu|1D*ddhm@TYH1$Y(k||KATYd-=QC4J({~-%3t_!Jx|8&-x+N6X#~-_f znZ)IiFfXx@|0b@c>IM^YF~}xNT7dx&T&Oi6=zz=beovB zh4d@_$8d&@ewoANE2`uaoebj^$DitNq}L|)jKlnP@yZKGH4!CoAZ{IItoYaEqMVK8 z?V<|CH|84yXX8kf-ea&9M*J+i!-Mh)@A-++sT@^aK#sbXg# z+r+*U(l><1={Clyym#1d{>>z(##LWA-`K_AiIh&%Cdy^J(`32^b}P9vNymBy%LU_- zsaTFpkUs`Azlb zU_Sg>E&C7N+hqN!->Q6wgXMzLk)!1ET9W@(%KjAScdES8*H`&5K&hVw`geW!5}q%= zmia?9 zuMk%DDf%~_mlRes0^%*s?{#67uRb}&zxV zT2x~`yU68!tJ07D5S;E1-;EB|Px*t}9rOLaj3`cu^@kT4q=kB30gm38vfG+_BY%Y zZj}2!N~h~=gLYPNgzO8S9|CyNH)w}V?B;b9m813_0eXzrM`TwZUWQ|oQ{&hM{zp6h z-4y*kp6hc$#-VU*<9KDSjY}l2(lt4*P><>ls-1)TC)P~i@P4NH&zP^MozV~2FV%eh z$Myxvr+J0^i22ogqx1!1v`1mg7c8&lC&ll(f$UQIY_(r$^(3a-#a_7{aR{4?+s;$= zHK&(T>wa69ye6!*sMl7zepmgou5`s$RP84!GEt8vh}vrR_1F(lzmi`K??j+ncsgN~ z4&QQ+i}^Hh#ZO3WJg*U7^<(5Ky`lL7)FF0CKf$deUdP?U zW3FDwzX9lNZ{p-T2e=EMi_jjOjmA=zq)T_p)iVF=m zj;MH|)|YfHWS8+1EZRN%kFTwaE$GT>)}8= zL0{uPN=Lm5;hY%fIf`4v4dy33uhLGh=_{s(;5QAC7Gd<+!* zL;S#bu(FfZ>FRttU_YHVhs!%yPhg*o{RR8m9mmm*y7%Xy<2p1y=A?gt^w9nv%2)j! z%RSxxT}dl@!p9$;Yf(NW8Cq^&{G7^H^{p#Ejn7l_1=pv(@>M@oT2wtwSMRr8MJb#3 zaW~RHJ;;tw|DYVD2jrH^`S(;gO4kHYo4B9l47omZ@N*nzZGTt$SXEEezaE$Q0_#e= zUx4d=;ybxNxx}YD?}neFgksE#{{rVP;r&YOmqXJjS8zV%2PGfgZYo{XhsOV@dP4aD zyOe&61FGGyd=(c$?F*!b+Yu}u=ojJg|Ni)_;)CZ=^oiOpIBL%~>f=+sK-^U4lqw&c zKdSTe@cu&Q82H?R<}G_|zovYl>4Ety5Jzb~2#f=o-zfeC#^>qz!Q)JoPxCI>iRb0P zaS6xW>EuqQ2iw1{^3l(#U#amHtQW@>_S5>xS8{cgkNjZ!Pv>XySKyqA?D+3ne^CD* zKL+BnI?t-xzrp!}{TH52{ek=!>=%ktf%r(zn{9%g%LblbbD0XDEjIOv|X=G_Gv5xX-7Q{vPa4u_YReB3yDKQI)RF z-!n*h9ZBce9i{nqr#Z@_S$q+t}0JqWk+cFn!K-vdhg`tY)VeG z=bW8XAB7bSmm{pkky?+QJyzu@eF{Ibp6sCcpY#TwU;R-!w*McUb7B3}`7_lofX|&r zelL;d&8ok{eJVIV!+1dX0_STgzvAb~d=4px>uPll7cLi?uF6sLzq`DEer3m;M5?zs zCu}FrCmpqZe3JY9`;uxR9IJj(AB}?NiNWg|oR`8e#wC)|YUhZwC^PVkM`c=QH53BO)lK*3VpkASJf%Ne5L*)YX zRpqPto+(yx;pNna!|e!{|6_ijexY)K^!oIjZ9T)~|5I;@&u8j~&~{SsDlk9)F+b3* zp>l!r|Fk#7-BADh_2XNugH$;REB}XM)jyQH!b+ZSpdCZy0_mahYW@uLpKyMCIJBJq z+xw&PhgQ43Q1MF5%YPQD`JMc!i9z|N?`MjyDEaqPzy9CeE>!zNK)Z&v%cr?(#?RBzcU`o;{C_Q<&V7Q<(auhP{rS~;G`zlbl|%l8_bTPN zhFyF*ht@kvK3tE&>N(#;c`irK(eNBeVRf#guzEhHuzDV%uqyAbqH3HgN_uUz@k`Ys zoGN)miGOOoGqE%HJ|CTT+eAb;`8S-N?!HU#xtuCb-OE<@z*Rck!?lU4`;&frUJ{&N z-ER%2O3&%j!|%hQZv030WrOQimmR0Km$aOEo)?IBbRS)v$Nq;Z|Nj3@)${qIyHy{e z{;1*+rsMO*R&~6mayIW|Ihvi9v7$c1NMA+z8ko|7TnL( zJye_@=)NY!|KR=>K3;;$QTdUo?~6eG>B?2<_N)Oac%F}Pzl=i)?=#+s zdew7qxbH5X_Y=na!ThtqrbYI4Yef1VcM;I9?rW;|q*n8N`%~;_ ziTMNT2IOO0z4kLq2Yr&S?pI(M{!{f;_cBkV>V87)x{c%X>DM!XxT)f?dXGrGU#rsV zTW={p5Dmmz>VL{^n;0wa#|AKcUxQsdof2BV(0ueBdEkDPy3ZB3pEh_R<`0ZZ!T~$3 zE+YMu9>_=bs(f_s6raDV_QLTRXs1v)Y>)c*>Rw&AeJUTm7ay=YaPO7glUM!Y)N;e? z7g~-c)^dGS`kB_VE_;-o@Op%%pE@3tA636p_kd~MSKoVZ>b*OaPf=A4=~4Fp1O5+h z*I>Ee_equCN$;tC{j>b$8r^?Z_G0-M*VKI?Wq-K;e)*aD7x4r23YAA0{HOdI=-1)n zP2~%&Kju4K`oGgJrz^iMyUt`>VLJui7o_?I#t-==5SLZE{Mq&m?_YmBo~X5g>lZ2? zXphkJQ{&I+{1)79!S(thf7DlRdT$QCH$lFyW*2ym2k&QgEJf<9eUJF@v zQ_;XU{b@Gw6;E{1QS${5HuwH2wth12b@e9%L`L*|bq3LU%Bm9b7ci9Ae zk5FJdsr*z9%HqEOKfL_9^@pAB9jp00p#Sv!p+3IqU*U2p{ohZk zczop9aQ+X(m+^M^zUO$Tes(t}~sC4oJy|0G* zQ&mn~>55+$RplQ%K^w++U?Kz zAAN}bRR1GXH&$|IPE|Zm{tJ({G+)}q#4f~|hsvVa!zQf;7aq#yfIys+<$G2PNi-_<@JrNP!+V~W%hvpH7pm-H{?@yf* zqEGO;S5fL8@cj+)ywWZ{ zUQPMyN>}A8{fa96iYonz;y4dJFQ^aWxX1RQ^MktfRj2MJ>)J1={VlzZqRH`s`c=OT zw&%Zc4yVeeb4ImZB0JAi@0rSBKUL*XJwnSvKE(x9&r|toKdAgupFSlYx_=C9hriPP zKeFd+%K5APa5nnR#?C*gFSaN7T~Rgf{c%4y)AG+$uD*WvKcVMr+5_!Z>scK4XJc=0 zKFoPG<(_FdXDatswZoZ~ccyaT{ykeih3EgTlv~$$+4UODb7vCI>hp8m{JQ2X_#UMH z;qp%(XX>^W{e<&3j+Z}EUwU2~$WQGOj@5ZgU|*!xx71E*J*B?yqOQ32$MwK@|IgMV zc%2a3Psu)-UvXXc37_|=c~!0Ndu5aVf-ydqpTX}@*VSKX-4(F=uj;pIe@J!)o>$R2 zmcIYyboEr7n`q z^MT`$C_Wi5M zseAmMsa^ja&qHt=oSlFFUH{r~IboM}J#k6qXwY~p{1zqH!#75cO7Lg&0{{d4O4NcB|vc|`;3yp8hyolW$X z_Y}}K_z%{}d@t|M+I430_J799zvG_8|K4@Qf8yT1dwl(O#l5=b?f>5TX`=ZT6tDWp z@8PwHvL%S^B5f|EtM$r?=7??LHu>BJe&66i;xCrzn#g{V_$r++-1lL<8(6RU{`>Iz zz@h0j(dl#2ujJz8a~@47s?rq={v8k8ucQ5V9-{O-Fpc!#@4?`B9y&Ude)}b1Ma%aS zrgH%GoKF*voWS(Z-#I{iN?yH}qUg9VdHQ~1O$?Ctg*8zr{Rua(q&@0;$Q|ORLbP8K zza1ny!tGU9=}}mHpP~9b2SraTBfDuo8u(qlba-xy_A5C>>yuaI)kjr*!)b-QZ(tLB z22uI@*$$%cdoFwrkmNL>($#wj;rU74CX{?#axORd;a@(ab`jkODfqiFQce6ZAHMHW z+T}W>9D05m_`Nc9e?XmEsBz@w_Y>6buc~q1=(95^Kj?SDz9M;5jyfk&<!&Xd!fQp|Id@gJ=(b7s3A$fhLOM+7K~P3=y}$ z-|g@>RJ%^xC9V@=;BNx_4b|?3U*Jv^55nIg@b?(}4b{>i?;-g63jU6WuG&B0?`zRW zd=0#>#W_H41iC>~iKg&3RI36jsvxZj(!LRG;I9Mx4b{FCJ;b--GWZ*+eJ8FE-+|0` zAafk_eGh*>z+bhvMpTRI;qN&7e;CkjfOgeRz~4#u`w9MjhQD9nuZ?zr)>-QezlnS! zP^hQY4gPM_E`tAef%Go$|1R+Vu3B&SyHV>3|Bury)Z(<`@HY(p{|(TtnpgCA6Z>pK zNu45!ag3z8=qhQ1=qYIvakZpP#ZXQk&UCb-EyQ@nlbB9rn#pt))A>wunXZwvjaVls zygS5nm!z@6tC5{COuI_jO$@bR`n6)Xq!D7Y4S%Uy14_Rjohj2bF^l>0ndaLLZx`^( zHLV2FRI$c(@)-UCdmQ5uDfhHEF6p(y<)FB0RmHTR(YHL{!%kt{G@8Q@M3Wi^q) zIF;qo8D}vaZYO(3OR5RKz+Xa-(h5ZZ%!ZwTlD;Cb;*b!%wIX4ISu6qQ&`v@O*7n&k z{T85Yu6V1iaG+W(5bls;6ZYhs7kT8{PD!TcR;XSw(u z%E{Nt#Z_<%_<5lEBSLJ@c5wa#8`+m2{ZuAi=k`gpZ-HOY%5$VKO_%f)N4k9q%;v8< zCOM1YS7tr~KHBvyT*dhN6Zp&ESuB^za#NkX!M~Btbe8)`JOsCmqn(+~`@yR*K)b{2 z-xjDJRvVp}#xd;$v;(AH$ymt^VtfPB5lqK9qqKuJ3-LGSPqH4@iuukFaN7E)b060$ z*V%0d{7$(u+kWYBtVgze{!`e_+4iU47DbsD?mPx|Ep+|_Z+{!~nJ&M*v>5NGQ@(~Sl5gQ6eGwqn z9;9D)s+(AK3UvOCED6V)KC6?(>2~n z?U^s-G?DM@3hmV0m9Kp>K!~GEk8wRtu$?Ddud_VS2=O-CzfZ)B7oxGdpX>(_Ffy?H zqujf+l;PNKc4^Z9w*bJ(_NyycMbA0otfZ|{_afY=g@zKFuegN_K%yH zj&$#k`ZEAmfW8?(aa{O;Qokj8PPn49*9PJE+2_P^wz?0ne?cCe3Vh-o@2vT|5MMyP zQs7s*)7XERQtl{V(l_4u4vgDsce#Bb+}0`*<@UE03E}djOZjs>N1cyF3DFWL_WSmp za%tc7o=Q8#rz$(eg=%{z$X_O^?T3LCdywz(5^e1D+M+)a;zIA+GJdr2YBC;n zWZD<_S@W>Hy|#0pKMw_r{co5zmD?qq`%$iQ8LVQ{y*2EQ8vBP}*BYfKyzFi0 zqJA4CsU~Wq9p8Zbkz64xo$NeUk8$0z6WSN>R48{0&|z?EYmDCBwGQI)Vy2sze!}!; zrcDi!yNu~AOdn*rnCT{_6-?WhHC&$>>9-qAhxA8*N#pc+z^$QvJ>50-e?q-VL|3kl z>B#sB`;X~Jhj~f(Ob7Od3%&cCIKFfrjrYzzhlAowPuFpX*Vl3S2&Q-YA|2mD{jz{g z`Cf=QK=(pC^82D4?U<@91i2D1RikpJYDI-uKE;tVYpOO9`p<(_ zE7sqN^|xaEN1YiE|2A3V=R;OMZXc?*twFjS$LEy|vY2MdxOi)Wt6kNzAnpLIkd)#R zyxS`MhU0D_^eex6pTIc#x}!vn{}V2v5XU$^5S`!PZJQ6~qi2EAyilSwX)Xk&zX#)B zd4mJCyah0>fF4an8t3Tn3fSEsp69(d$2jo+dyJhT&O!5HoCEV$G)QpJxJq!)xQcV& zxT*j>?*P9F@=?5wa}0#I{zHSrTD;Q%QQRHR?Faeb_PY@g=fH6r8*#vf^^A{*m-v>5 zBnOS-BnPfjVErKNa{~SJLud!c_kDp7(|~3I&DRngG!Mr)b|wh10@7z^2&w-Z@W)Gl z7s0L*Zco^cCm~Ic`dprPX@7=0(Sh^xPLS&Y^V7!>i4KZ8@iM&v>_Yq{q*EM8P_; z5O+RmIMn5f6=HA0Ea|sM=Wti25+M!(|GPZ!cf;YXcVIpBJ>ZR?zl!ty3i22yGTg&m zw{?KMSEHdW^lv24EijKFeG}qEWTPxcW5At&BL5Odzcmu(gGSk0?`$rY;$ne0+I0xx zeB;KWUEQ0)IBuM7Uk~=)(wO4$9gVYiJZ06UPljfzJt>#J|BWOgzZ&e`nmif$JbD9ZqstdXJBV((+UUnTbCzFy9nB?s_7a##<^dc zR!Vz}^DEh&N=F{_`&*k-vR##IS0&rE#!hi@jUD4+)AOrjc}`K~ctqBx%JDMH*FzzF zfvnGX7skC|=Z|;cx@XM!)hr*SjZVRFS;OPbq0#*7aPs`i={1hokpHdoqqJM!hw%e+ z!COKcIX}jM@$mceC%H0O$hhme75YQX`I)ZncS3)Sj*{yaT+fXDK!}FXHL_eym~y?K z!3vnh;VfPcO_lk(L`O@0|7g?s7?e90F#0VCFvSPcN#oRXQk<&h@!ZOp`!L!;>$3xeQ@#k7Lw)oP9-HBMS@)JXnxkHgjWAtAQ4G+mTWlX0_uw8KU7yu(H7 z5r>P`1!b%+(nWE};i7TxaA6$qyB#j_Gvt%&5r+%+H%2Rm3;V&jKxuvAaN)jxT7<)e z`~G~*;lg-gfIrC&hg|P95jC=2F0d2r7~CparjKlu#_=VM>)DFa(>Xnz(_=Y3i_^0> zJ&x0}IX#=x<2gNt({ngIfz$n*?&tJGPA}y2LQYTO^de3#;`C%rFXr@OPES$#xj*?; z|K;=@cIwwVHnq;YyF>nUYD>6~81>1CXr#p&5fAMa8o~`NhzfO0kUQOR@d15N#lR8_*uDi(NOsy#6707~OC zN}G5)#zmOV3UPlOrLDb#=)`y6oTGJ=*7p}U7igX7pmjv1+=so=I#Z7Sk0VAqaDV=G z>(P#uu%7y;^(5ExIjC>6qpQSG+AE*HeAqfh%E@_hAI$%4#ygrrzndcVxpKj7AK>L< zsoX;qSndH=gDFBZYE$Z>^OsWDpNmAPthWX<58`o#yGBsIFXMEgU1G{y6tBu$6tBv7 ze3Z%loZ&9x@l(cn%j7tjpq0sSa!W*+3-`&lfgXxSWiE=D6K#E?V2`G+Ew7E zyV^{0ZMYiiJ;_D(PjV~=JgH5l1J5@e0y(6QwTZJehxPI%prx+~@phXExh~lQ7{}Qm zz_$YZ0q}m1^R$h#y)X*aH*HPcA62<<-!Qgql?!hN4n03w>Pu@IZMz(96J!952fed^ z{sX2nf7@!-A1(E722A>+S%0KP`XgC?v@H|*$)2_qt~Ic3+tVgmqjh7nM)^v#6^Xc> zjMivf7p*-9aXz91&QDd@-YE_w#e@gUs~ zc4Y%y4HW$6Zn+887l2j0M%+gFw?aL)Li$9&lVhUU5754_ekc)<($4EW(QI#|o7P|J zcwHXp#&&Z7pVFhWw$SfId+NVw?I*c#-Imdw)_+g6&voQafPGQ>SU0YFUI2>wl~>xw zxtm`h#G63(_rY~|oO>J7SL0zn2kB$`3bDI=yc-_yiJyR0HHH4sAs$97tSdVtNc;Ln zCrWy8ha~r0NFNRq<;DVC1bB73WR^=|xm5RT8_K0hxdlLT0IzPB<{oUv^fa0ND$pdr ztJ|f!e~{_vGQGS*I-G!DdY1c92g+y3^lyO91iZRkwmaI1>De;f(J|ZI8u03NIqtzS zJx8XW+c5`L0+{Z1&z0$ZncktJ-@Qnt7rK9t>4h@APsc)cjZ80cPXl)k?@%PulR6f; zVL1hQirrmh{flM#_>RTyUb6nB?i!h1D$^h7Sn77k`j)xZNk5dy^aUNu+^@>?9qzfZ zzB^?4>W(|yxw5|H?qRaNFoxi!!}Jrtj=n;od0IE8T0Q{gpEPK*vh= zCTV|_`zvXGl}!J>W0m{3w7*)m51flhYQ#D`I9{5?njSg_H9a$m;5h+cZ6uCI(?k8+ z^sI;T2{?c9P#lhw`Cy;nIk;Ge>tm_iM=_lc8||Tf7wxI+2kQdBOM%V-dM8jnQ0jlt zp0Rzg|FvR$4)?-dxIc5a?}0eJIo9Fs2eeE$+&2M*eFn?LF>S@`q<9a_r}3T-D^b3c zlW2m6&MBhpH118NiJWfQDgM;B+9n7wyHkxT9_Z6RXMtT0wVovBmko%&6k-d|GNA8v zigLdED~{tDm(c>_N{#DXSYNJ)NMgSwd5%l}C3!M{Um}t`7hOZN@&cmd=Op%f68kyH zvwyjO2NOx2)mvcw1a#6?AbVOj#97a0py%z*>7Iivg!mNXW`W#c zpmYvUseQiz`YmAehy9{B_s=h4e~xoM%T%S4e4Lx~WpRJX@|*y@Z?@0!v~%G)qEc%$ zUB*Yr&v0jZXkDA*q4hxy=gaY6yv}g@nP15KLgp7Tf4E#HJa-Z0>k^aWp?N>YQ**r# zi0L^5$8|Hk zZ^OE*7tkv}U*B$#EH_Ec%eQrlW%*cd&T}Xi>zx5|^SZ^cTs-sRy#bl(f(2UgNpN06j zTct+hBH2slX@w4oqbahS>pdx6il-@FY{#oEPW56tjsQyS=8(^AG?Aszc*x>%voz}0 zXg3QvBh-(-1d-&^6Lbyk*_ z`cXCOi{|{<8rhpI&)=@PIGgRv_R{nBY_`9e?TO`laW-22<#_SAtTQf${Tyebbzi)V zp11qGBRXOK@=JdAIHDPDT8GcR*zc{X#QDhYJ@FLGd%if_{y zTlb^<+~lY{M{m+S+D`k%N-4K9qKav;^iz?jX1!S&?Z2`#ioZ491%u)FP4^mAKKGw8 z?l%toD2(@&-Az3O=s&tg>sWu6CsL<+M@kIe(X7*a8LMxW@_b&}BTlDr5vT8je!Hh_ zoZfIN+z){CL!jrH9`T$nfoUSkC$fB^l%Likk>!)+a~wF2lJbjsq_CgU`CKcFX$sSH z8?9T?n5HmI<$S3&TEC>#>Y?^c*54k1^Ki26VA=uZzp}2$`ZG@W=7%1Bj_1kxLvXJ1 za}RosCN9ZhJvp{+8A6P@B*&HjbkZedQobUhjN^GW%lU0TRlt3UOZ~Qc_rtlsrP+d> zGh~b38pFL4zy~6QxB}=E=Lj(XC_R5j)#+R_Rj2byzwJa@(lclo?2j+aVLdr4pTqjn zIA2;&-KV~a^I`vb(PI1Z4dWv+-jqBSY{kRXG z!xZV~HbOrY>DAz`D=saR<^0~YSjTp4bXk#u+P8@NX_-#z;T=rNnN~2R=hEvgD^%q% zEoNHE{il?18Pgq1%b8X%t(4`yd0C~Nu?OxY0Nwo)+{d`AitVY?4OnNMyzID``yQ;f zdL0+dKZJE^uPXM(a3?-*ZPL9`9}N8^l@9lmfKSgojtkoi=r@pl?htss*=x9~ zF|1Si0iX80mHN#Pe`mNW^;J*6`2)z!@ngTH^CG-waUaCjoxSK@&nHkmKEMBp=`oPc zk@iJtZ9soyd_(uEFbbNZR_@yt(Pn#eSX=`P22P|v*hU5?*p zVLg&LeV+sC|8jf^;}|)wy%QfJ&uhK{s>6D(@#PK!`)8iRG*n{Wg^nCbrqavTpsCo2{6phj((%zxfk3AXd5HMzb?k<$}p`lImNc;&-* zFD8l8lQ=z@pYJ6*8d!KflR*q=Mtk2~0pJJ^p|YU0tUg)B zTVVGrpk!Z`Q3UqS0el76zo&PWkp=s*mz-I~F`x@DT@cQLdEnM2Sw`C^-0x*^Jtt|{ ze-`%1v}6BS(r1>P`cIau-*U*0^)t?2W2gGflJ^cZ5y#I}^6i*^L!bFFe`%lG+Wf=8 z-~RxN{SVfY#${0Mf<9~Pxh%CVqqG1>>A@I9KfZlbzO`N9{x5ToK+?Fh&dzVszg^ zZtp^FZ_p?Ef3`u-owE&k?woDVbLUJA&-We%eLLXXGz+NqEbJ#h58WR2I0*|CiAj#`T82RfEB zE|=wf-?4&mD(|B!Oetl_lD2 zm~YartY&^S^GzS^vm<@9kB;`yez}#8_Qg?hy|MAi*jkLwJqO0c`Di@F`EWk@;L3Q8 z5Ag=g2k{2Z2j4-zY0FbiOYvraD)DO_?#$)U1NzfaW{NEAf{ex ziF7dsJ~PCi>nxEaZiCO6;uHAH7T>|=Jn`;OOXP_C@VQ7la=iuj;TOPXp19-&OB9Mk z_*^XtlPp*nl)&d&apFcx6bo~hB{qt!@L4K$!{=5p`X&o{>lFBWOH8@hg8S{W;d7^G zIouNE;!^nBE0)1$g(!y4{bJ!QmZ%iZ!{-rk|E(6hvyly-$3*l93*Niv3ZEy%KKQH= z-@>QR{x#AP4$ZjD5+3bk_%yY*;4?xi8wKs6?Ss$rwAV*NyJ&mhvxVlr-4d;|b@16v zE4jlXQndHsbDZ`Oe5Pu9;d7$)e<(W>_$Z34?N|3qGBa672#|z58zd}|%$9|9CNl}5 zASfsz0uzz|5lA45fS?YG3n~}AxS^thpnw}9;*Lx%K}9at1-*)bP6V%_q9SgHT)yX2 zooNE<`@SDP`uU%8YU%3g>gt}#EC->D+Go)D+85A8+BeXkb_}{q`x$z(b`p9UK2~5A zw`(!bJGD6IU9z@&wItZ9rTu``5q3!H4Ba9l+oT@WdLZ(ptmju5`CYa_=-G&yb!thn zev(F)o`*;`{TS>Fy`l>3*Jo74h&+8Zw7*^lEzsveU3vqwSZ{(3*5^Sz`U0q5UkE*4 zzZN=DzaBb9Ukn|mFNI#N-vGT*zX=-9mqV-cTcI;#&RO~j*mLxi&_?|Z=zM(@bdi1+ zG^pQ$wk<=OW5f-5ziRZ1zPc&}pX#7qy-j}*skh@O&_6o$+r9caL>|D=#o^nCH^N@8 zZ-H*qpMyT3zYKj^4?~}o_6zzh*sthsLc>y9WIb<4{ipsG;&1EkLEqE&LqF6%fgaEg zK_mK?(8Kys=$HBr&~J1)o8Rld!2VJH9r~-Tq0PTzFDAU$imf&Yv&javni8N1rX-{$ zn^K@1O=-|{Q#WWgQzkUS)Ek;(qO+f8qA}w#(FiFvWupfsn5YNlm}n$4B92d&nfg`7 z;PV3c(2!{WbiK(A-Dq+`pD?+hPn(LM&zef0ugLsinZE`3aV(}mh?~t+kJU`|B$%n5 zWHZ&%(MCEPtX$8G}f? z7-ufUey=ps*vpH#usQ+nzdAh)qbP>jFeZlDFfNALaCr>v<;ocIbX-$0@|udFYidzU zEF#~_$d5AeYYdI>-(xY`ID)iyttYF;GmU@XN~2{EdUd{qM&Ke#hv_NeT3IS+Nr$~y+RH56(Qh|f zzND*3MsBlYA$5hcZ@17$zSEM6Joj4qBfeV3AF$XF30dfRS#K$Xz0ooVshec#6BZ95 zPg}~M&sr{kzF-**eZ@joP1rIHc8g^K^bN~o=szv;`m)gM_nzetTJpZE=R->+>fA5w z1C|-c8L`kcc-S%<{rS0t=7BFQ^@x9CnFsyevIzRC%>O(3&5DH}>M^sGW;v^s`YORn zeU)sbzUpYDzDl=JUv;xmUu9USukx(a|NX60LxHTpC2J^_H4K(D_^pevuW>TZH$%U-9)s&lnr^VL-;KWPAqVI9}VUsCmDP|0?x&nOYD>`*Ow6UW(%==is=1&Bc>O-0=Do zaSW*`qEkHSF(}SRf;=M$G!nWc9K+R`pU|%wr4k;i$9$e}0ebb6Y2b(pGYHcWTLqN*B9a`Vu92fpf;@UlZFy)NPSYq zUxZ?0CZ?m*fke8iMiLLARI7|1Mx80*sI-5TcIS3fXD_K2OPvJO#j$qzxUPF8QEI-_ z5~-7^r31C3UUTN2G3%x=refQk$jj zmims={Zd<{9+T?Ll=Vx!Sn33+6;f-Y&Xu}A>SC$OrQRWRwbZpzH%Z+h^+l=8Qg=&z zN9um5tx}IjJtp;pR4t3zW0TrmYGg7smGwW|7KI$uI)uSJD2j$&84ejOFxQilN!@swjZjC z*8WuLu6&BDk@|?#&!slmDSiT~i%ds8#_EX@8t11<=xUub@L!d=SOL3V?2{ZQa_651 zKOR1@gZS_HEY8$qU64$+6-p=8en;n9oQ~6mLjY zibIk!McNZoe}kC*6mg+gD7jQTEqN=~KUTcNeMgm=mG{P~B#mr>v6(l42B(y4qX90T?hCG)eT|6I5iNadZ9uFXCfKN!XdMgD`~ zrIN?P>zF$wZO!|@EaBRGh<%fZ^7m}cmMm{}f|Tx)zOA`Z^2+80jxS|@9k^30Z9W9j zxL9Wv!hwD#Qo9a;6gS6UWgf)CH9q;TcwF4pO#Vr6ck@z^$`Pp?k@68K{Sf=6Sjy+x zOr(6-Al0)Ir2QNQX+J;8^wjy;7Q9mtK5=U7)6GP=KTz%ul=}mz{2>`fzi>PoH-?kK z_79(A=pXAO<96<3AGbW&9-^!Vr25x_H15`MI+4{Zk6y+_%kF_Z+i#fiQ zxelcMXlB2ac^IVr&5l>&(+ARih_oN#N(M31|PQIJhShU?6Awv@k)^DAyPd=Dz}uGnW*~1%k+VipD5c4()g|5 z^u^4jAoc%R_M4eILF$)Q_Gu-G`a6^9WnuwC#uqb}g0x>E?RPE5*KwRk@n(+i`+kL8{-w{#f<{><5`4<|Z&(du>OUeJmoX zdYLwm?mI-vm(6hxbA(KHZ4R(s!3;7NGnazYKdV4$Uzp<&CYCMbeof2_W;WBq^f5<( z)UL6T*gwZB!INUit_F?=Ilh$RA@;+}2=frr)I+s18>I8%V~z!>-IeS&u)mc3RqTh@ zU(4Le@n-gSG9%1Z<{_rmlly_$0i^wAu%FFza@@y$B{Rre3LeL*-ZD`3J4p4c<@9x& zzLn!UIUZpi;&kFkap$hXAk|~aQ0;SqRG)|a0JBEMQ|A+Dye#GTa*l`CU&q|U@ty1+ zVwy75elkFspR(EauAN;Zz<04ea-7p`y;OUNbRKg+D({qW z*X9vmU$Jf1Sn21^Z{T!;`eslH}Vjt7n(2W9>JxqfCJkji`5_kvVz1jhp$4>Ci{ zO`INPe>eLP_A~O;emu+oGsp}v!^{X%oX72BdYB`?zT)4z0_+Ew%R##SL+po{yTQJq zbytLad^wry7Y(H2%V6Kb^m07FevlbrhM5tjDByN7J z^9aY$NVOlPhZ$g2fzMb{=Lgwe4$?Rau^(nenD}$4s*mYm2ADx+h#6)^nD|4hEFWZM z6sq&Q38eiVVTSOD47%@ynTJ7|fBnUZ^vMj$zl{Cm?1w-q*HWU!+YylZ(>9Qp@mdZ@ z^9|Y<7eHlpod6>DlRHcVONw_PLrif2=VPt~slCn2iVL|vm}{BM%m_&R+seK+QsvKNdO+%5FZ&hD z#mu$LW@ZGW`aGi)wTrkurk5FDRxpFiwajK_1f>19vX8IrgP%KJ1Lb*PKa+hg6K_M1 z?FdWazRP~*#j2c_83w7n5%%#_imF~v9tZmYW{??ThM5tj7^})H2C02(na#{rrZ!Hc zn?X9SVX&Xpu-S8|iu*x|2iRZ6{^Ic}Jp|Hqyq5iDW-AkKy^!e|NbSgEdYKi>#mu$L zW~MfQ%Q3yo3g%+wT4pm-yMoIxz07821f=V%m3?iZ%AWyJJd=GdGr(~o9Y+N-$Xv`^ z%WP)0GPNtYJxmWs`yo<&US@zS9sX0By6Gh3P36qP>%r0Xh^eJ`_uxtO_@+01NZY5_h@ zrkANzsJI`b0o0MhYSu^*H^?oaH8*+0yF#!NNOnrEqcGC(O5wEd&K-LInu|tl*Ds8DC+^~?>b?S>L*gX z1*CBh;W&}vVxgi2(zwk4sT`5gb3iH=;CK~C^|#14#tp}bvc5&Cya35JgL1rZyo&uG zr_(1+sJ;;U=4(~{Dv;vl>y+;SslEU+$Xo`}>zEMxYe9OxTMtsZo7vC2Ud27&9`VAK zAV~Fvn4Tcl&y0WzwO_Xosb7fl_!cXAK>54@QhJbmVw`2hGyWxN{{c{@GndIY))_!5 z-y(hV_fqn6=jVXbUw+Bl`Bjps^Vf6Syo}P3Pcn7BU(&U?g?X6M58t5nFK*=X%JhTO zFIAG*&rNE7Rm{a8wRbIZJ;$5bk1$)A;%1fK49fEiQa^dY-(ug|Q3cXp32l@u^#h6pt_ubGrDOiknxede=vJJ0H&-DxSlvVzxx%e^>dcn1?~? z$DCD)9#GD6AniZEtm1U@ohn}jDEo^UUzMwBVOAY z0BM{O_lVP51NSOF$XtIPKMy~k;-LpQJ;dc6R`jfAZcq$8rkL?K^GS{~Tb`oh!hE$^ z#lu?^BTUaTh0lszDqrw*mCy5rVt^@jbDSAuhMD3`PG<(0VJ13V?%%@Kg>Rn ze7q@I=FebyK>6Imet`WTGsJPCtdAMtIFaHRdsV#wW{4SKX8eoOnIUF`nei50+WqnNXj;et#P6iT-+5U0+1HelnOrkj{JX zeImvSQ~X=`9wvSAQl>M-2b|6fGU=P7DIeaVF6n7QYF7Y0G05>q8&X{C=k|kCPX_xQ zW`N^FSr1cuMC0_>vmr@5Ux9rs?Vf7^X`aEG<>hl$MjQ6E-27Y)e7gQT91k#q%n&o< zpemmO%KYpHm_cTU8D>V9{!dgp0w5h%5Tx@EVuqO!rubB)n?ZTMVc)|HFoVnxGt7)I zMTE~c)58ofgUnDgy_MRB=WS5V!%X@{R`MfE&u7XHF(Xm`uqq#BiZ4~a5#uahKcB%q zk$ev`zzlMF2<&UQ=7q@DYCqzrVg@t73`YHLReF#aVuqQK@3@}txgMq`>i?+X9%g_U zWQLgLU)1|3i1a*`!#1Eg_~b5iB=fN_@XF9w;*I38j@ z%#1McVGfx;gXv)gn89fJfBCqW0cMaH0;wHDI=^A|iSm3i#cAbdFg;8^zLAN>XA9FG zqx>*P&v`BEn`2cx08+hGU|$j56=Xle3^OB4VNv-rm>#Adr2Pii4>Ff=Jj8yOiI2L- z{bn#d%m6dUTn19TA@2Kz+v1I#K=9w+-DW|$daia4%^ z>0t(#L1u^%pfzu#K(oyaWg&405ix8 zF~iIVQ?%#uOb;`_3^GH^a5Ozdl?yUM%rG;fgG$c<0t(#L1u`#9+dU4-@<-`ebI^QV|thYW{??ThM5tjNagZO4>Q0FGb2oq#`&2ZW{??T zu207|Zp7~0<-u3%$??hzGDFNTGr|;IxPGRG8DIvPA!e8vVT!J*ycwjw>t?X;VfsON zU9%r#hL~YygozKSsq@A3FayjWD4%cG53x_A<2H9!`>O)!JVro@iyn%ho{C{+go%&E zsr@oN%m6dU3^BvZj7(K72b8aO*bgzo%m`Ct@qU;dW`G%Fwt)2hya@Yvu_)UY0O@sS zka;*q?Kjek;$J^6dMj3eR6dxi{17vc$3EECa{9$E`=XEXJs{N|kbdJ!!MLk{SMe&4`k}?C($~9{A1I=H+h1G;(mFtd{a~?*ixR~Qke>5A%rM8p z168_b7!k)0QacpCeQ6o_`1|5|W{!va)?I#Pm6!aZyK>5izwcVc^p}&rZC90~^|kfP z7G}=*l>YBserAInLP+GexD!=V1nzA!e8vVd6ula(@|24>Q0F zGDFNTGr|o6#a7*!yui92s2Qx{2+4~ zNXH*y-`}YGj3y21Zo_v3Kx$8r8DSmSd1fTyG6y7dCKyZ<$cR{ zmUh+w);q0FTHmpLY5m1|%G%xLw3XO~+a}wtw%usE-FByKx9u(4`?gPPpW9B@a^l9t z&5OG^Ze!dVabLz+{oL;NcJWE=lR71JPU@bNnba$(Pf~u8 zJ*g;ZNYdD($w^g7i;`|licRj2T$+4a^2X$sl8+?+oLtzxwEgJzP3<3PUz$>#GB0I$ z$^$9Sr0h;PoMP#a(cz*FS9Q3y!-E|j?XauE`yGyU__@RH9ZVfFI*#mkX~$(9S9H9m zmQyEX0hv{2g9Y0sy9ly)jDGrfQM@brrGtJ3GBFG{~7{h9Qg>HE{aO8+kX zw{&aggw6vxU)Xtk=NX+}==`tFhdQ6=taWMEWph_;*-*hu|PwU>N`@rty-A8w? z>OQ-BefKThU+n(x?xKgSho{Hn9#{3ay2s5u?(FeckJo#A*5hc86Fp*k_U>8Ob9m1Q zJ*#`x_YC$7^?a=7^F2T7`F+p-_Dstt$QY5aB;&4(O&RZIe4lYLBRR8c=Ag`3nb&8o z&fJ*!ROYjpFJ@3Ta9hwS0mOR^uz zKAe3t+nm!Y=f|9$z54eW+UxvYxA$7zYe%n^Ui*9X?OodY^4=?YKh(QJZhmf2?%TPC zbAQbJEjKl9NZwU>bMo%YdnWItyuEqv=Y5~|TV7nB^gcKBY3&p0o7cao|AzkW_W!Pb zY<|c5to)Mv#{4Du59NQ5?>=wHdE?Hr4M-i3H{gN+mk+phz{3N!4R~X~#{=3GWEDJK zu)W}5!36sZd!2p0eX;!}`(5_U_K)n{9M?G>ax^rL0^t`jbcyNmmLcY`~na6(~yVW@CJ;nRgL7Va(lcj2dn-xYQ!>R(h`6f9~f z+Ea96@sGuwN`{n-E*W1kuVib<_ay@cUN~^W!1o4b4_Y{=dC=}bt%H6W)Nk;x!RHTN zJ@|>iuM9po_=my&9qbx1aLDUJa);&*bq@6oojdfwp{`+<5Bp-+9M9dJX3xJp|Mgt% zy~caD_aELjy_fnbeINNw`P%!t_=otf^xH5�y;{h)p6=nJmzwoUYABaBULp)P_gwKH; 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 literal 293240 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Ȗ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≤FdeO3=4~-se&ekj|z*XnS%1eCxpe)JVs??V)!dz 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

O zBl@G6-u7f_FqBaU%u+Cu3b-1Woj`^qz4Z6?Vw^LvFt@2A5zBOs3`M(QS4A(ZuMsO! zU@ztal0pdYfjG%T6DqXR(cKF5I!ui$vS&3358M&T#n+61uNwnj&v>2}HO!oPqIV?v zlGdcCQT#kSgc(vJP+v{fGO{t+2NcFQ8x@c&EVI2dI>KDJJ`_t?{Eu`_Jc1pAgTp+f z>^aD?3+&~HY>RQ$q11>Y(nf+5MTCb_DX^LgZSj{2o86rD5b^T}vdM0h9pgyjrlWd- zJ8Q&Hji_k}HZ`>d>T2q0S{oaJO;~dRtqnDGjde}+)m07kRkby34NbMRB3R#A+Y)SS z4z>mwYujssZ7sD8b?xmffx6oEx|(2BOLKi&V{KEdSkVtQZj1JXhU1y8*dT_(>dZ7r zIgpIan@CPQ5{(esaUcYtL7W^_7~)i{3>-aFD;ir{8iMUD%}p(V`sT)(KyyodRdZEa zYfZ4ey0JZ2UDsA!)7ny1$CIlylt?5qZP9Qt675J}qQ)XEp>(vNPGIIpv>itGwTxt< z>Go7|P+?tDkftS42GUZts30}op2IR{xRQWoat+7Ne-@w zCi*i2)PCUPqPZ%Xh^AuU?qEDhl1ocIEEUw>W0KhnCdsIBdV=uON@lFtRhKjIAf5*y z{c|JM*~u{QnN(0AqprRtAMkLcxZ=phK>qWXZ5*kT&C)a{@pthl2u8G~rV8UJ) zfgPJ=kRn^H0!oT7>ZW?pJ&;Q738eb5WF|7fz2WE(EnK~d1A4mKs~aSZ!gNB5f#^&o zY+91?E_#eu~Qfotd zsSZxkJY(M^pkGAVW2tnebs&_&8WBy=Od<~Hf%p(o#*swhAS&4%-J7w(lCnF=k;E}w zu|$773jGH%e2`{OTQnXUBmvAMPX&gi2C;S zU_JIkO|@0+RZRh`N)5GjO@Zd>hN?h&puM#z&=#nx!xdial>!ZIH7#}3&9&`~t?g|s z4UH|0Ep4?;fu^RamS9z|y|KQbu1!=2Y8z_sMMrvFXr1U9Nn^=e-qA@*g<_eGu1@;<7Tr?i>+Kc2P*~H^2sTwAu`U{o zti{%h15hz7zut0jCLGJD*hhW75gLCCv#BlCAIm_PwkL-Z5lF+%J|=;R5{sZmc})yt z>zhZkJ z?ENh?9IPL4Xs$AYwrJXou*HW=)t$svF&Y|_q$7d`#Cv;V zP>qqjh3rhwgqKsC1gX6S=z1^Qz7F-Z$gFppoJn|0)YYY(V)-fj}ryFy+f(!?rsuPs7)HH8&E8_tRU5kg_wm=&2=Lq zp+tW)l^jk}9lE06#}KqjH_c9xg;q9HatsM91lPq5g>{9fy*)5_#QGDcUQZ$t?L!$6 zF${6klZd9np&^7+!gb)Y?&Pj$q6cP!c%Toh4#d$o7Cq@eD%!OxHbnH?-;i+d_R5u> zG8u@5cVPx7mO|7(Xm^yhJ?WNcG$C~*nYJUnI+Tj+K?Z?vI2tF}g$$y5hcHLrVTECA z@vTQXnra<^bcQsO$(&q}9mgB-oq3Ljavhm4xrL#e+!$J^LoacR!J7V4N;Ld0&PlQb2CSF5J zMkww^${gG{HP&tIrEO;-kO4>T940>9O-rF1K(!*A7IAQJC^JH$y#qR<%;PjCyi{JWQU>?JSdzvL zL63{h$SDF|pIYkFK`8`R4WltG)txbvqufw(P$psT3OD~xd3P_@@5)0ie0f&?u&xw(+k&c#9%Q#R22 z@mNNr)pCqzvR>zpg608X%jWI;1Zr=cKQem*l%LAdf$g1Ae!?uPd48f+^nSb*){ES3 z;!({-cMT+m4VN*s}!t7L2#t8=3Q&>#{Kstg%9$l3}%%q7!2Ohmb{#I;f~ z=EligR4O;ZV$a+td&fKu5hg5af>5W%p|Z_7;}9XMRq~i5r{fU?nthr zIpJL)j9QrXH|c>SmIX~rm2Ab{GSeCg4@B+wKC;HxK@1}AH=&b=)v^A8F6^a}{TK>D ztV!;1g|+q~NbToc9xuRI{S3d7EN1hHw;6ZhdlNZYeT!D%0{3tWWlnISmb=!NZV5tZAV$U z^*BWK49g|j812XL9`P&n<>s~;YAo%=HxFQA*EK{$X;>-41JX}wsPwhQVeW51U7`Y3 z^@Q|wL3&2zb{*^+!}gULM=0)Y$N5E8OdEP*cNE4j*gE*|J1agrs88zbeONYy%^+DZ zs;DvJEk4Xc5s2*O=3t=L#}WzBp0P8HLc>HGfwTi_Lz(aZrU%sFbPQx#S?59Kscm7> z7&0giOZ8J;%Vf4OnwCkh_DD~9JVd@c*9eg5lg!uS zShls@QK`+#sbMkLbfD?(2BW2yOS6j-JLxoRfDrPSb<*2As5~&jv81t2cx}FMhz~p3 z9(rdq+N4j0I)@>lIZvxg^p2Q#Snh^960%f~43MB3%XDE$Q>@$F$>f?)3bZr;c_Vm7 ztLtHx&K%@Q?Z$92S}5%#yl}gc{=Kw9=l5+ATgtj3wcT3mgJ;lPtwg7#UwEVD-$``B+WE``#h zMY+*@VNc5(G|C;zd%Nsd=Ut`jIIB48^4pjcG^w#fX2-+op)SH@$5?sOt++8Gc{vy} zR#wYqyD1RZ*jZ?7;N_x@MbSc9 z&F2BkgVt9jP zg&M4I9H1lJLE8u8Q;I`av&mx4e#j1Xdv_@hDf(Kg;+UvBsc_*~A;I#FuGU9%W5ruX zLoNbkk5#5ME=Njk7ZvGgP-9#;I(SVD!V>Gka)n$N>WS=Q36{t?$e3l~<9ayS)-s~B z4Oh;P|E}{?1I#`KCKW1=#5FVg- zNLg1n?TlQP1O<#0Iv;r~D?3=`ELq%%QRk%!1+!IjZ)YE0zM|SgzvkH@-YfOnIWo|$|!`s8^KMaiO$`{9_n89AO|SBVfM3*ulx?98plZYNh&^~mH^xugeljF7-NU*Fs*G)CFT0TgD_?UZ-Y zgf*G2J91K4I(uVeUz12aLt-z!@JWrZkK3cx5DSrQOyCIW!n_fYtjoAoHV#hEYnGMM zSaC6ZZPR^Z%>$HWim~#_hfle`17ljfR&pRi(m=~RZGVKkQASED%7MZdtDEF>Z`W~Q zkb|`DvWLlR3M-O@hmE&`bTyR(IHr_5%H-D4CY`Ubw_Or%+k+`iiS<`dKc$FiEOAuOb}6(LafAePvHBix?JE zL`GOzi0Ia5D(Z@()En5^>5Re5$rl6Jk8<49lFmvj&u8qj8?KbH=2=9%84p8&vM?-S zapAEAp9Q4J0L6NNXbla~$jShOp?#BfBg7n^X^_ewQm&A?P$^T9s3y*X@mZ2O{5){- zBC3pBaZz<|Z<^^W+fN6K-STdrAhv0!lh$waFON1l(l(4sj4}!8(N<*i#RIQP*4GX$ zQEv%fNlsN8FJ9^Zl6J#z5`EBZnLXH`Vx3fzZem9T(&^~n&iDxC3STg`V}iIm7>Pt9 zHbz_RSxrGVJED4MZHV>7XsGCTz)ocOddRA8g&^PgqpvlwT@IuicFM#i%wYvPN>{!+ zmT{(_Ue)rGHVMuIxVX$it5i-qssruz7Z>68@_Lgh0#AGHthm(MsN%|s=bsy zcG@#4-cCMt(Kb!z&UBK#U$HT(?48r*SZ1In5yL8IM}t8ld_gP}w~O3~G77|Fp|l;_O&>}s zjfMEw5!D_K^*e%cX0i=>V>BMx%RWcEE(fzBf^%}a2#l8<&{VC-p%ENK4mhG(*K|=C zs9(Z?)q_TB5I#M(bHa*_%l-5Tu#M~B&veM}X5;JW=anjjjq_s07k@Cd|~gA>o&4N zG_T%TvRM(?SAJwZS@(VDV3@ND|SiYOH%HmCnUb z4!o149B5vgXqGq+q|^G04_}sGIqyy?fhdcnW;!Chg_uRGSl$$laU zX?@>l5fj$F<|NV50?QIYtMJ5OtiiK~?%%Lh3tbOa?VzwTu{5KtqdQ21>ach8mSWFz z>a>urW>LSua%B_X1_u;ZJ4{`nTSS$mO$RQz(A{+|h4v}q#amxiQB%m8E5a^}Ej6`bgiwUh<8eh4!N zrvOfGE!|i-*LmDr)Q*oQbsjJ?b6(V=9qFFLu0(Q=jd3Z@YJ}w1sLm>@wm2f#B0fCm zz)=3Gg$^u@Q!chQBEPbC5aOy!G`dUfX|R79R7GyYw9Qi!UPP^CW!(>F3r9ANs;3(p z)icXNFoVh@jtS_<$ca@|qd~(xA#%vdO=k!&qdM<|h#_SW!Tk`iK9g#T_4U!U15#7; z-5-bvY_%YIxeByOrqwNVF5QKoPk4D-MdUCGViC21#6EkWEs)mM&TlN>iW?-1+IHyz zl-y$>%ekOivT@W^v=_|A(^%%i_fiY8iKTwPV%I9HH!S6_g&3pKJP)XL*ksc247$uh z(buVVC}-g#`>C2na^aH()u_}ZY?NYkYx`;oX)XH{Z7)n~a%`bl*y%Cwd@sz#Kz7MX zAqoY_PUk)g!St9VL)3)}L80d%F-AI=y&VM8Ih=pA**u{ztsZ zUx^eI>KfjeR(%)Si^YR#MZHQcZgKIYytT13zM%*Y!1yu<dDI8Qd`TY^2NS$vxCZ9Hwqzk8TnNhA0hY zLTqq&P^#wi&_P3;{Jz8;p-;8k5wdn;;pJtQd@1DhlYB94WDmeen~F>KCgd@gro{q@UeQ!+5!F$$!&F^0 zh15lybhz_ED(=_>s?lQ;M5%|tH|~Pfp(8%O91O)(6rW!xKaBw`P@O4-;OpU%t$2$? z3mz|R76mOOR-h}I$y=c6FxgN=f$Ntk`qEtmGqx9_%uA(;(R@eK4x1>2jq}4Sf_2w4 zF)O}B7=fXIT{RhJCIcNPLiEAj=f zR(zMT6X)KrDJu`%D2MS{N_@2vvh`Ly$wi$?rdUp;$gEGsJ5yE^7?*TLj0E=KNgGeA zE|4gamRjlKew5xl*3mnCMn6PfMi4DM(8r$Mo!ZCYjrjJ3@o9#x6?I*bzZ^;PC+Xau z9gdg(=%O|FSiJ+t(Xi-uL2;vHmN^X@gk7RHDL<52i$~O;Baw2zVg)3SJFy7)5i~ zy=ZA9)zmfB_4NXkh~m}h2-OQ?3yUvW0zn;3p`%nT}Rp&-C(=s9RtX-J%2-nud99p-u(a579eI6pes&#d7 z9)-@Xj?03Sr@FcE>ST$Z5#g@gJBXp-E5WRsVxxkGKz7&GfXTUYVJ{!#eq|4YIPraV z5=Je$Ol5sdCBGIU5x{g9^FcL?oC~excrgomX_x|I{cI~ByRn-`$vPzqO|#cJ1-2}S z9qG=*_|rvmM~k%KxC}b((liCQTzi$4L~9m4PaX&*L|l7_^Y9@}LeT2Y9>VZ+=MYJA zJ4A7o@=B=)LA-*G)tQ{OI@JF%OH!)FmH;Hr_#1@M)7<~aupU;y2CGHpkz{6 zKw5}sbgM^(2BHZeulQ@(+L?eogSX&ZXWgBh{O%CHd?h0>&G1|YUA|RU zBIrOe3)7Pc%Vk|9k;{p-P7njoMiX`uwZup|S{zuT$e&DP$eh5ngKA5vZk+UYylIJr zmdtf|usdlRs`_8*1#;qP6ir?XjTU5GU{NkW8-W;Mt#i^a#5hv$96=i9u>~`yfT2OO z;ltg8xFiYC3!cZR0zOW`2`F}CbeIH-T@o=)^+}>Adp2rQJQllD#tQXn{ekOE%LTZR zETK$_bXh3MirAgrHR()|v~nluu)e+EPr|T@b57tb>lQ64fX87Zp0ZQd2ci8tPGwkj zRKk98&1*~f7VOHlOt)kn$xI;5F|2pBSf|JCN zn7ZP0=;+lfGBM%>Tm96EBbW8bA=aIE-aGL6n@sDLtRs%)oFnYC!aL9yUs{vMCafP{ z!K+r57rh1w>|oJl=m^DD@-hc>S?rXuqG)P3BB=fP@d``3un@@6^7GX!rIy=BrI}j@ zq(D!k9LW+8msYe|spTVCHskW^H@aUfcBYp~F>La|Fn#ckQ!M^C2#;UI`oPoLj*z?UJQ2DcG=erc3L0~rdL6X| zU&5;A9_6=*%tYNuoUQOlN17X;Nn~Dblxifc4mf4XrOb}N_nuBVB$s-xofK<@9muO9 z!c>y|SS59KE|OE{qQUv#?)JTUsME`{6)<^pNG)}(w^)Q(mzS0Xj?P;_tNt)bV?TC3WbyB#E)sOFL z>5vT9!`L1#^{(zDR@9*pC3n%?WUj(-ii}n4s)*poxlc=h803$x*^Bvs-Wk6C@c;M{4F>NRrjrA;N$4#Y@@nBCZ4SUq<$SEvJ{LMI&;ADF!#pTFj9o9AQ zPM|9q3U)L!v=viAP7LCm*PmHrZg%fR7^7@^>cqAS<`|H{qDjtaTOeq^9IfP^r{`tjsYX9op&9&`W8|=ACFtbjaFZAa=(f zz3CiDdIIzUea_SL(kvxci0o(UX}1a~q8_ow%aNI0JUqxR+UxIk`BtZOM$9iK(0eN= zwTOOOoN~4qUAw;) z7)tFzL@!o)hd~j8kNJc3P{=08s~YwlMiu74rP)GO88U%5@v`4}P@HJzEe$7Lk~=ZV zBBW4i!m1E2Do$d_VhUq3lmj8BqeAfLkYy>Y5a?d)1o=jaTy0pl)6}GLC_j#n>3tc+ zR&udJkoXw=orafqgf%(6jAHUa^G6KrUioH;b$mo3EBn)H5Mn6#*-4d~lv~^Yweux| zs=kQ{Ymj`|7d(*$tLK0AmupBJBl|(npNs$}Vx#MnR$zqeztA9dI{v1B*h3qr6eiqy z>_*9l{fRR9al`EpO%FRHCyxG{-NwsFln38S^1lrxQP;B}c0y&o9)}{$Sy&qqG7-VD z$Tv}Sja4S&(omn}ODhd>c7>>gFePZiryW5}%o{;DOSY%{9SLN`?QM`9r7N5-j^HL;aZ#AGX+^M1WpJr4&F~HD$vRqax{%<9oEM9% zYZQvIUoupeD{B>UXYE3|vsO`9Sy_6kAhV>tqeTMisu5d7OX2;9Al?v5;YdT0;HAKug8b9mVMr;_PpUuJnrIKG@W7QA+I-g5h-OVYJgoBZWW2SccOrYbv{ltP@hSkG8l z@k(J&k89ys-nDVLR_)X30|MB^4th#CAh|vR!7wOmYMoXL41>t zTPyc85n8V$QX=FPB8kymiW|x{SueJ9snABbg`*Q9>-vWl64=bi^h#GxMP*QLie)H( zZ=5JK#zA`IX+Irw$?#5&rh#Gg4GoG84k_P1p7I;uc*RwrV|_TEVCRocxcZfu=fk$HKd; ziI24zT!t){(=I+OXxGSx`P`YqF2B7=6T|pmRR5tnum+BcW#0O{kvN=>|I)OhqP^=_ zB`y!@7r;U4<|s!Dx(335{-^+s8ytAKS4ulD@@j?yp;i(7Ez$Dz*2hFvl^m-$Nx$sl z79|T`hYH$K9zyDH_1*;wYVGIyEY^XJ#!|P@^u>Xqys$z%=|=G7Ry&?j$Q`63g&RSP zib0SXzox>~*DMU>WKA=xeEd-IV?|kmJx(G=DHgfB-%WQ?C6m!&V*AwuL}gj!ST40Ch$#Cg*1Bmx zx(>uETfm9;`R}^OP}eYTYOt8Z2I<%&t-1rElP|sEQp@fnU#twR!6Tr;x^&VF(TG=H zwKW>bDP6DP$9S=5tNV+nojwoFieW2KZnQFv(|-jSsF+ zLIC5|17E^L0lfK?n|MSFME7Rlv|^@6y23GONe$!lmahk>2z5)usbunUn+i}Zq@h3|NNaE*^sYpGhbAkQ zrv?gzzs2Otn*UfMk0GlOWURCZob|U?IF(v)s#-c^pMak@mq1z(VZ7Z4P^c)`hKy{)1>N(v;YPx`vZGzWR{JkPm&z zm&3@7DonSV>kKr&wNU zt6JuST+gWm8iVm>mhHqfaQ^eEq9Z^jS*Q>mCDAJdE3j^qY_q~47v)2vlrJT7AZ;K( zwrA0u#P^tV|5m+vf<^<2TYOl-po)@efH0kA5wSA7=*<=+k;d?oS~@^?_lXB}*fr`D z&=J%PH2riKRc5`NH4=?v$v~TAT*T8jQaZaJs_7+d{wvPR!t{Ny69*Z); zDB?oUa)*_Xwp84!uk&ZgTxn^6w4XO;N5iH4 zl(%lSR6MM|uc00R;Hz7j9NnkA!Nl$uUb3UDFYgAm<}D&>L(G4-l;!*D9}hq|(1#7S z-esR%XyY@T6>2&;&dx&#br&d~5~7rT>k!0I-dH8w(GL3TH9i+0E`8sjmj{kBc%nqR*496CWPh*ZP|fkDEFZZ*PmOG zM0$&x%H(`e;UJKk7P?l7M{^{eUV%U&+zCMwX{W@^BAdGPnuf@@LR3#J+#t*aU66TsK+Ibd|R&9row0-ny56(M=Gx(BOti=a+v^;6XpxL1P z%G$P^aePsVIDtdM+QTX>-`R?A1ZqM=)G9lfj=^`?+N%{qje-Eh7gD?~z}AjBgkhW} zw{0iB-=O2~@GkN&GeG(7f>mAyc&s_dJ%x{~(r7SZ>GceOzXygt2*_JjGHVH3FvFik zh6|QwH--RbiVX_R@`z(t7iB%1Iu?aVKcysdVa_c``M0rUoNkvk3(#d)N~30&4A8)_ zvdwjuxO6@o?Z#zvh}c?sbrCWIg97DGA5X1M;d1|8Tom4!+)E$kGJ|A2F~vA$B-^AS zgSuyBNEgC?eMF+xcxt6?j4Oi1J8uNvb;~Gzp#T^TC%&O3p6)s08;d9Y`fuJo`rk{(utMQRy#f z)9oD#Pf18<&KMN9o3LEc#D}+hQr4tRXX=?45mhUqZCt z{^>5d{hza_* zN_pUpflRR^g*!&sq4Fh?mYIApGCO%Hnm-=8MOFk4HUyqkyySf=$Str!&d#%t7$kj{ zO05()9U7FM=UGI$9LkT@R82{LtHsS2`0)(ail3#ma+*ey!Z+Pjmaw_7Mm zEZ1KPMV*#~qN%};vRgz$y7Pq)zH>!|5Q_r>A99G07!hqEDuzTx42W)##J@Gb;=(Sl zqPi9SIR3TcH!RYMCLnf$E+!&K8$!wu(j*a^7NV9?B=9c@{6^#v0#ygXVPFPPP8_%l zemy9yT~vz(A#wLDUJ+_{K}(KIf6u;}lfmldo>pD4p*t>Ge{eH5WSRH=_@z z=ka`GR$u9!jG+$pxQW2&rFM_6YYbfDX_vo=d1@Fnai<-ZH=6U;#?H&x3MVIuIpfT( z#X+7C#4(p(M3d-&4!Caa5X-2qBjDCPa4XHBLDW5gzFdb;26KpbkSN4bo08@Q^*BC@ z&84dkioMLOG*_ZXDbv~g(WO$-T-7xbW2B;bwSm5$$2X@=bF#~7=l zGqWj3&Sr$@%*JP@wA&CwiZJq}wZJJ8obypMzg~W)o6?@|dgc&sB=W3v;$nB1t5Ltb zm_yku8MEY|E};!2gfXgG3Q-t;(@Al47h;C+k7fdlvT$vAg}Hpb&LzmBr}J2i9!sOY zXcZ-i)eVVAJt)pwix`->;FlW8TI5e-(gMtSP~-9|LUKK)Ro7V_2 zX)xlPwTMrno-~8Q=n>*7rwn(jO0Lz`UQ@E=XZDO0OP%@Its&lZ>08UPQ)-!!Lpg`| zI;Cn&Ifl^+Y6GOyY-|4#02G1D1C9FY;Vq6VCwi)Zb^m6LN-aF@};YnIB(l}5*K zZmpybUWwYoP;=^KTOMc2GEQJMMn~2{Tui+{YbLGfQYXF&p&qm;q{fzVB>pGO zQtF|0X<}La^m%67g|wnMOQBhT#}1LNTY|Kp^?mq9)YQLJA5rhb+Vg`}#RzM>v=7iy zI|^*& zuAlx2YV)dF{)kJZ=1(h?lt4N@q@-m4F|_~K!+k18V(x^@%haU+$mXxGY66izfZ(7ww-gb_an&vZWdFSV!Ep3P=eUtL0SrHYN;)mT{ zS9WjOb4JS!(y1r~?E+;FXV=0#2gIuJ^31M>UN1>vNWFh2j~r%3=h*p3nd@G$X%wgz zsUPHCTGm#VFkZdhNPZ&VZf~w8LTw>_BMCvf`|RD1SWD86v=}LqojV!1C!tXYf!7Am z(xdy_2m|E`78M+P)r@BlIA|m6Dm<#Jj8sO z8*=YJ`V`H6;xp2s$sQvngu#1cSHUV$Ml*@@o7Hd`GhsJq$s$TE(=*+v4~oUQ&dyzm z)}nL@QABf-EU#itfa^BQ`L0F2G(SU_y(po%3pJuy8pUi_4y}izUIsobN0zf}qkL!w zwFl|cT$z|a9kq@sChbHl&0&&*(5WWMnJ=Y;m_#kMcWYvE1$NXFM-~e^mkVG$-Y2TW z+u&Y}-|4hdrm04n<><{S)ShyP)urZkLLNdzJDo?TLi7R5I@~&>bHfeKNq40 z@te7V_YhQ8pBn3kxJZaW+D%9coL>3ed7aI67fE5S(jDLy%4@GxGWF#$grr1FGar$T zp>yN$pG2_^&MTw!Hsa8M#Z-xLYO-R2!;)A;@|8GMz^AmhiB7H+v$ORrs~@M^^|!Td zG1JDnN}Wh}ZCMpXq?NN2z^de&qtv2o9V!hDAxjn2lX3_n+`&6MX-y#;qMWxo!1E$_ zra2O4r%_AJ<&5ilz&7-_35V8t)iXF z>6MqS#;04JglG~!2HTQo3*aws|WF{Ju9rXon}gD*BbyYYR(pKIlW%#!u%n5 zN3y~ybt>78Xzq;I7Q#7lMJBA)KefaXt*2L3_MFt^F}I v!Urt2uavGua+nuE`nZ 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 - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + @@ -37,7 +37,7 @@ - $(NugetPackageRoot)\microsoft.azure.powershell.storage\1.3.101-preview\tools\ + $(NugetPackageRoot)\microsoft.azure.powershell.storage\1.3.102-preview\tools\ diff --git a/tools/Docs/az-ps-latest-1.csv b/tools/Docs/az-ps-latest-1.csv index ffc2869045ca..eb7ad89c5bcc 100644 --- a/tools/Docs/az-ps-latest-1.csv +++ b/tools/Docs/az-ps-latest-1.csv @@ -32,8 +32,8 @@ pac30,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea pac31,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Compute.8.4.0.zip;sourceType=sa]Az.Compute,8.4.0 pac32,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConfidentialLedger.1.0.1.zip;sourceType=sa]Az.ConfidentialLedger,1.0.1 pac33,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Confluent.0.2.1.zip;sourceType=sa]Az.Confluent,0.2.1 -pac34,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedKubernetes.0.11.0.zip;sourceType=sa]Az.ConnectedKubernetes,0.11.0 -pac35,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedMachine.0.9.0.zip;sourceType=sa]Az.ConnectedMachine,0.9.0 +pac34,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedKubernetes.0.11.1.zip;sourceType=sa]Az.ConnectedKubernetes,0.11.1 +pac35,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedMachine.0.10.0.zip;sourceType=sa]Az.ConnectedMachine,0.10.0 pac36,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedNetwork.0.1.1.zip;sourceType=sa]Az.ConnectedNetwork,0.1.1 pac37,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ConnectedVMware.0.1.2.zip;sourceType=sa]Az.ConnectedVMware,0.1.2 pac38,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ContainerInstance.4.0.2.zip;sourceType=sa]Az.ContainerInstance,4.0.2 diff --git a/tools/Docs/az-ps-latest-2.csv b/tools/Docs/az-ps-latest-2.csv index 054083d53e97..340f21784137 100644 --- a/tools/Docs/az-ps-latest-2.csv +++ b/tools/Docs/az-ps-latest-2.csv @@ -3,7 +3,7 @@ pac1,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-releas pac2,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MonitoringSolutions.0.1.1.zip;sourceType=sa]Az.MonitoringSolutions,0.1.1 pac3,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.MySql.1.2.1.zip;sourceType=sa]Az.MySql,1.2.1 pac4,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetAppFiles.0.18.0.zip;sourceType=sa]Az.NetAppFiles,0.18.0 -pac5,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Network.7.9.0.zip;sourceType=sa]Az.Network,7.9.0 +pac5,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Network.7.10.0.zip;sourceType=sa]Az.Network,7.10.0 pac6,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkAnalytics.0.1.1.zip;sourceType=sa]Az.NetworkAnalytics,0.1.1 pac7,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkCloud.1.0.2.zip;sourceType=sa]Az.NetworkCloud,1.0.2 pac8,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.NetworkFunction.0.1.4.zip;sourceType=sa]Az.NetworkFunction,0.1.4 @@ -27,7 +27,7 @@ pac25,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea pac26,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Quota.0.1.2.zip;sourceType=sa]Az.Quota,0.1.2 pac27,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RecoveryServices.7.2.0.zip;sourceType=sa]Az.RecoveryServices,7.2.0 pac28,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisCache.1.10.0.zip;sourceType=sa]Az.RedisCache,1.10.0 -pac29,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisEnterpriseCache.1.2.1.zip;sourceType=sa]Az.RedisEnterpriseCache,1.2.1 +pac29,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.RedisEnterpriseCache.1.4.0.zip;sourceType=sa]Az.RedisEnterpriseCache,1.4.0 pac30,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Relay.2.0.1.zip;sourceType=sa]Az.Relay,2.0.1 pac31,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Reservations.0.13.0.zip;sourceType=sa]Az.Reservations,0.13.0 pac32,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.ResourceGraph.1.0.0.zip;sourceType=sa]Az.ResourceGraph,1.0.0 @@ -46,7 +46,7 @@ pac44,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea pac45,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Sql.5.3.0.zip;sourceType=sa]Az.Sql,5.3.0 pac46,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.SqlVirtualMachine.2.3.1.zip;sourceType=sa]Az.SqlVirtualMachine,2.3.1 pac47,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Ssh.0.2.1.zip;sourceType=sa]Az.Ssh,0.2.1 -pac48,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StackHCI.2.4.0.zip;sourceType=sa]Az.StackHCI,2.4.0 +pac48,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StackHCI.2.4.1.zip;sourceType=sa]Az.StackHCI,2.4.1 pac49,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StackHCIVM.1.0.5.zip;sourceType=sa]Az.StackHCIVM,1.0.5 pac50,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.StandbyPool.0.2.0.zip;sourceType=sa]Az.StandbyPool,0.2.0 pac51,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.Storage.7.4.0.zip;sourceType=sa]Az.Storage,7.4.0 diff --git a/tools/NugetAuth/OneBranchNuget.Config b/tools/NugetAuth/OneBranchNuget.Config index 835c0cd9596c..63a583023aae 100644 --- a/tools/NugetAuth/OneBranchNuget.Config +++ b/tools/NugetAuth/OneBranchNuget.Config @@ -3,9 +3,9 @@ - + - + \ No newline at end of file diff --git a/tools/NugetAuth/ReplaceOneBranchConfig.ps1 b/tools/NugetAuth/ReplaceOneBranchConfig.ps1 index 0e8ebe45d706..e4f864316259 100644 --- a/tools/NugetAuth/ReplaceOneBranchConfig.ps1 +++ b/tools/NugetAuth/ReplaceOneBranchConfig.ps1 @@ -1,4 +1,8 @@ $oneBranchConfigPath = Join-Path $PSScriptRoot 'OneBranchNuget.Config' $devConfigPath = Join-Path ($PSScriptRoot | Split-path -Parent | Split-path -Parent) 'Nuget.Config' -Get-Content $oneBranchConfigPath -Raw | Set-Content $devConfigPath -Force \ No newline at end of file +$oneBranchContent = Get-Content $oneBranchConfigPath -Raw +$devContent = Get-Content $devConfigPath -Raw + +$oneBranchContent | Set-Content $devConfigPath -Force +$devContent | Set-Content oneBranchConfigPath -Force \ No newline at end of file diff --git a/tools/SecurityTools/CredScanSuppressions.json b/tools/SecurityTools/CredScanSuppressions.json index 402141a95f38..1d56c5960bcc 100644 --- a/tools/SecurityTools/CredScanSuppressions.json +++ b/tools/SecurityTools/CredScanSuppressions.json @@ -1348,6 +1348,10 @@ { "file": "src\\Resources\\MSGraph.Autorest\\exports\\ProxyCmdletDefinitions.ps1", "_justification": "False positive, there are no cred in this file." + }, + { + "file": "src\\Resources\\MSGraph.Autorest\\exports\\New-AzADUser.ps1", + "_justification": "False positive, there are no cred in this file." } ] } diff --git a/tools/StaticAnalysis/Exceptions/Az.DeviceProvisioningServices/GeneratedSdkIssues.csv b/tools/StaticAnalysis/Exceptions/Az.DeviceProvisioningServices/GeneratedSdkIssues.csv new file mode 100644 index 000000000000..3631009c935d --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.DeviceProvisioningServices/GeneratedSdkIssues.csv @@ -0,0 +1,2 @@ +"Module","Sdk","Severity","ProblemId","Description","Remediation" +"Az.DeviceProvisioningServices","src/DeviceProvisioningServices/DeviceProvisioningServices.Management.Sdk","1","9080","Do not support updating SDK using autorest csharp v3.","Please update the Readme.md to generate code by autorest powershell v4." \ No newline at end of file diff --git a/tools/StaticAnalysis/Exceptions/Az.EventGrid/ExampleIssues.csv b/tools/StaticAnalysis/Exceptions/Az.EventGrid/ExampleIssues.csv index ff2cd172b0f4..ad635373572e 100644 --- a/tools/StaticAnalysis/Exceptions/Az.EventGrid/ExampleIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.EventGrid/ExampleIssues.csv @@ -5,6 +5,53 @@ "Az.EventGrid","New-AzEventGridEventSubscriptionFilterObject","1","2","Unassigned_Parameter","5013","1","New-AzEventGridEventSubscriptionFilterObject -EnableAdvancedFilteringOnArray must be assigned with a value.","-EnableAdvancedFilteringOnArray:$true","Assign value for the parameter -EnableAdvancedFilteringOnArray." "Az.EventGrid","New-AzEventGridEventSubscriptionFilterObject","1","2","Unassigned_Parameter","5013","1","New-AzEventGridEventSubscriptionFilterObject -IsSubjectCaseSensitive must be assigned with a value.","-IsSubjectCaseSensitive:$true","Assign value for the parameter -IsSubjectCaseSensitive." "Az.EventGrid","New-AzEventGridStaticDeliveryAttributeMappingObject","1","1","Unassigned_Parameter","5013","1","New-AzEventGridStaticDeliveryAttributeMappingObject -IsSecret must be assigned with a value.","-IsSecret:$true","Assign value for the parameter -IsSecret." +"Az.EventGrid","New-AzEventGridAzureFunctionEventSubscriptionDestinationObject","1","1","Invalid_Cmdlet","5000","1","New-AzEventGridDeliveryAttributeMappingObject is not a valid command name.","New-AzEventGridDeliveryAttributeMappingObject -Type 'TestType' -Name 'TestName'","Check the spell of New-AzEventGridDeliveryAttributeMappingObject." +"Az.EventGrid","New-AzEventGridBoolEqualsAdvancedFilterObject","1","1","Unassigned_Parameter","5013","1","New-AzEventGridBoolEqualsAdvancedFilterObject -Value must be assigned with a value.","-Value:$true","Assign value for the parameter -Value." +"Az.EventGrid","New-AzEventGridBoolEqualsFilterObject","1","1","Unassigned_Parameter","5013","1","New-AzEventGridBoolEqualsFilterObject -Value must be assigned with a value.","-Value:$true","Assign value for the parameter -Value." +"Az.EventGrid","New-AzEventGridEventHubEventSubscriptionDestinationObject","1","1","Invalid_Cmdlet","5000","1","New-AzEventGridDeliveryAttributeMappingObject is not a valid command name.","New-AzEventGridDeliveryAttributeMappingObject -Type 'TestType' -Name 'TestName'","Check the spell of New-AzEventGridDeliveryAttributeMappingObject." +"Az.EventGrid","New-AzEventGridEventSubscriptionFilterObject","1","1","Unassigned_Parameter","5013","1","New-AzEventGridBoolEqualsAdvancedFilterObject -Value must be assigned with a value.","-Value:$true","Assign value for the parameter -Value." +"Az.EventGrid","New-AzEventGridEventSubscriptionFilterObject","1","2","Unassigned_Parameter","5013","1","New-AzEventGridEventSubscriptionFilterObject -EnableAdvancedFilteringOnArray must be assigned with a value.","-EnableAdvancedFilteringOnArray:$true","Assign value for the parameter -EnableAdvancedFilteringOnArray." +"Az.EventGrid","New-AzEventGridEventSubscriptionFilterObject","1","2","Unassigned_Parameter","5013","1","New-AzEventGridEventSubscriptionFilterObject -IsSubjectCaseSensitive must be assigned with a value.","-IsSubjectCaseSensitive:$true","Assign value for the parameter -IsSubjectCaseSensitive." +"Az.EventGrid","New-AzEventGridHybridConnectionEventSubscriptionDestinationObject","1","1","Invalid_Cmdlet","5000","1","New-AzEventGridDeliveryAttributeMappingObject is not a valid command name.","New-AzEventGridDeliveryAttributeMappingObject -Type 'TestType' -Name 'TestName'","Check the spell of New-AzEventGridDeliveryAttributeMappingObject." +"Az.EventGrid","New-AzEventGridServiceBusQueueEventSubscriptionDestinationObject","1","1","Invalid_Cmdlet","5000","1","New-AzEventGridDeliveryAttributeMappingObject is not a valid command name.","New-AzEventGridDeliveryAttributeMappingObject -Type 'TestType' -Name 'TestName'","Check the spell of New-AzEventGridDeliveryAttributeMappingObject." +"Az.EventGrid","New-AzEventGridServiceBusTopicEventSubscriptionDestinationObject","1","1","Invalid_Cmdlet","5000","1","New-AzEventGridDeliveryAttributeMappingObject is not a valid command name.","New-AzEventGridDeliveryAttributeMappingObject -Type 'TestType' -Name 'TestName'","Check the spell of New-AzEventGridDeliveryAttributeMappingObject." +"Az.EventGrid","New-AzEventGridStaticDeliveryAttributeMappingObject","1","1","Unassigned_Parameter","5013","1","New-AzEventGridStaticDeliveryAttributeMappingObject -IsSecret must be assigned with a value.","-IsSecret:$true","Assign value for the parameter -IsSecret." +"Az.EventGrid","Update-AzEventGridClient","2","3","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridClient -InputObject $client is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IClient.(Command)." +"Az.EventGrid","Update-AzEventGridClient","3","3","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridClient -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Update-AzEventGridClientGroup","2","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridClientGroup -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Update-AzEventGridClientGroup","3","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridClientGroup -InputObject $clientgroup is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IClientGroup.(Command)." +"Az.EventGrid","Update-AzEventGridNamespace","2","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridNamespace -InputObject $namespace is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Update-AzEventGridNamespaceTopic","2","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridNamespaceTopic -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Update-AzEventGridNamespaceTopic","3","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridNamespaceTopic -InputObject $namespaceTopic is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespaceTopic.(Command)." +"Az.EventGrid","Update-AzEventGridNamespaceTopicEventSubscription","2","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridNamespaceTopicEventSubscription -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Update-AzEventGridNamespaceTopicEventSubscription","3","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridNamespaceTopicEventSubscription -TopicInputObject $namespaceTopic is not an expected parameter value type.","-TopicInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespaceTopic.(Command)." +"Az.EventGrid","Update-AzEventGridPartnerNamespace","2","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridPartnerNamespace -InputObject $partnernamespace is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IPartnerNamespace.(Command)." +"Az.EventGrid","Update-AzEventGridPermissionBinding","2","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridPermissionBinding -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Update-AzEventGridPermissionBinding","3","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridPermissionBinding -InputObject $permissionbinding is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IPermissionBinding.(Command)." +"Az.EventGrid","Update-AzEventGridSystemTopic","2","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridSystemTopic -InputObject $systemtopic is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.ISystemTopic.(Command)." +"Az.EventGrid","Update-AzEventGridTopic","2","3","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridTopic -InputObject $topic is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.ITopic.(Command)." +"Az.EventGrid","Update-AzEventGridTopicSpace","2","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridTopicSpace -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Update-AzEventGridTopicSpace","3","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridTopicSpace -InputObject $topicspace is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.ITopicSpace.(Command)." +"Az.EventGrid","Get-AzEventGridCaCertificate","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridCaCertificate -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Get-AzEventGridChannel","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridChannel -PartnerNamespaceInputObject $partnerNamespace is not an expected parameter value type.","-PartnerNamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IPartnerNamespace.(Command)." +"Az.EventGrid","Get-AzEventGridChannelFullUrl","2","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridChannelFullUrl -PartnerNamespaceInputObject $partnerObj is not an expected parameter value type.","-PartnerNamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IPartnerNamespace.(Command)." +"Az.EventGrid","Get-AzEventGridClient","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridClient -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Get-AzEventGridClientGroup","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridClientGroup -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Get-AzEventGridDomainEventSubscription","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridDomainEventSubscription -DomainInputObject $domainObj is not an expected parameter value type.","-DomainInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IDomain.(Command)." +"Az.EventGrid","Get-AzEventGridDomainEventSubscriptionFullUrl","2","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridDomainEventSubscriptionFullUrl -DomainInputObject $domainObj is not an expected parameter value type.","-DomainInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IDomain.(Command)." +"Az.EventGrid","Get-AzEventGridDomainTopic","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridDomainTopic -DomainInputObject $domain is not an expected parameter value type.","-DomainInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IDomain.(Command)." +"Az.EventGrid","Get-AzEventGridDomainTopicEventSubscription","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridDomainTopicEventSubscription -TopicInputObject $domainTopicObj is not an expected parameter value type.","-TopicInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IDomainTopic.(Command)." +"Az.EventGrid","Get-AzEventGridDomainTopicEventSubscription","4","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridDomainTopicEventSubscription -DomainInputObject $domainObj is not an expected parameter value type.","-DomainInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IDomain.(Command)." +"Az.EventGrid","Get-AzEventGridDomainTopicEventSubscriptionFullUrl","2","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridDomainTopicEventSubscriptionFullUrl -DomainInputObject $domainObj is not an expected parameter value type.","-DomainInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IDomain.(Command)." +"Az.EventGrid","Get-AzEventGridDomainTopicEventSubscriptionFullUrl","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridDomainTopicEventSubscriptionFullUrl -TopicInputObject $domainTopicObj is not an expected parameter value type.","-TopicInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IDomainTopic.(Command)." +"Az.EventGrid","Get-AzEventGridFullUrlForPartnerTopicEventSubscription","2","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridFullUrlForPartnerTopicEventSubscription -PartnerTopicInputObject $partnerTopicObj is not an expected parameter value type.","-PartnerTopicInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IPartnerTopic.(Command)." +"Az.EventGrid","Get-AzEventGridFullUrlForSystemTopicEventSubscription","2","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridFullUrlForSystemTopicEventSubscription -SystemTopicInputObject $sysTopic is not an expected parameter value type.","-SystemTopicInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.ISystemTopic.(Command)." +"Az.EventGrid","Get-AzEventGridNamespaceTopic","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridNamespaceTopic -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Get-AzEventGridNamespaceTopicEventSubscription","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridNamespaceTopicEventSubscription -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Get-AzEventGridPartnerTopicEventSubscription","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridPartnerTopicEventSubscription -PartnerTopicInputObject $partnerTopicObj is not an expected parameter value type.","-PartnerTopicInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IPartnerTopic.(Command)." +"Az.EventGrid","Get-AzEventGridPermissionBinding","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridPermissionBinding -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." +"Az.EventGrid","Get-AzEventGridTopicEventSubscriptionFullUrl","2","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridTopicEventSubscriptionFullUrl -TopicInputObject $topic is not an expected parameter value type.","-TopicInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.ITopic.(Command)." +"Az.EventGrid","Get-AzEventGridTopicSpace","3","2","Mismatched_Parameter_Value_Type","5111","2","Get-AzEventGridTopicSpace -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." "Az.EventGrid","Update-AzEventGridClient","2","3","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridClient -InputObject $client is not an expected parameter value type.","-InputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IClient.(Command)." "Az.EventGrid","Update-AzEventGridClient","3","3","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridClient -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." "Az.EventGrid","Update-AzEventGridClientGroup","2","2","Mismatched_Parameter_Value_Type","5111","2","Update-AzEventGridClientGroup -NamespaceInputObject $namespace is not an expected parameter value type.","-NamespaceInputObject","Use correct parameter value type. Expected Type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.IEventGridIdentity. Now the type is Microsoft.Azure.PowerShell.Cmdlets.EventGrid.Models.INamespace.(Command)." diff --git a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv index 4819432ba0fc..49dbc7df6dc1 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Resources/BreakingChangeIssues.csv @@ -36,4 +36,4 @@ "Az.Resources","New-AzPolicySetDefinition","New-AzPolicySetDefinition","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzPolicySetDefinition' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzPolicySetDefinition'." "Az.Resources","New-AzPolicySetDefinition","New-AzPolicySetDefinition","0","1050","The parameter set 'ManagementGroupName' for cmdlet 'New-AzPolicySetDefinition' has been removed.","Add parameter set 'ManagementGroupName' back to cmdlet 'New-AzPolicySetDefinition'." "Az.Resources","New-AzPolicySetDefinition","New-AzPolicySetDefinition","0","1050","The parameter set 'SubscriptionId' for cmdlet 'New-AzPolicySetDefinition' has been removed.","Add parameter set 'SubscriptionId' back to cmdlet 'New-AzPolicySetDefinition'." -"Az.Resources","Get-AzADOrganization","Get-AzADOrganization","0","3000","The type of property 'MobileDeviceManagementAuthority' of type 'Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphOrganization' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Support.MdmAuthority]' to 'System.String'.","Change the type of property 'MobileDeviceManagementAuthority' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Support.MdmAuthority]'." \ No newline at end of file +"Az.Resources","Get-AzADOrganization","Get-AzADOrganization","0","3000","The type of property 'MobileDeviceManagementAuthority' of type 'Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Models.ApiV10.IMicrosoftGraphOrganization' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Support.MdmAuthority]' to 'System.String'.","Change the type of property 'MobileDeviceManagementAuthority' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Resources.MSGraph.Support.MdmAuthority]'." diff --git a/tools/Tools.Common/SerializedCmdlets/Az.Network.json b/tools/Tools.Common/SerializedCmdlets/Az.Network.json index 1345e742f69a..34a36c93f3d1 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.Network.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.Network.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.Network", - "ModuleVersion": "7.9.0", + "ModuleVersion": "7.10.0", "Cmdlets": [ { "VerbName": "Add", @@ -16,7 +16,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -129,7 +129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -253,7 +253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -407,7 +407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -520,7 +520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -655,7 +655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -826,7 +826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -939,7 +939,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -1072,7 +1072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -1094,7 +1094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -1121,7 +1121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" }, "ValidateNotNullOrEmpty": true @@ -1131,7 +1131,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": true @@ -1203,7 +1203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -1372,7 +1372,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -1406,7 +1406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -1439,7 +1439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" }, "ValidateNotNullOrEmpty": true @@ -1455,7 +1455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": true @@ -1572,7 +1572,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -1685,7 +1685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -1814,7 +1814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -1841,7 +1841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": true @@ -1895,7 +1895,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -2060,7 +2060,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -2093,7 +2093,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": true @@ -2177,7 +2177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -2223,7 +2223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -2347,7 +2347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -2501,7 +2501,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -2614,7 +2614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -2721,7 +2721,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -2772,7 +2772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -2812,7 +2812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -2865,7 +2865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -3072,7 +3072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -3219,7 +3219,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -3267,7 +3267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -3313,7 +3313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -3337,7 +3337,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -3476,7 +3476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -3589,7 +3589,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -3713,7 +3713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -3867,7 +3867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -3980,7 +3980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -4078,7 +4078,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -4111,7 +4111,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -4146,7 +4146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -4171,7 +4171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -4200,7 +4200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -4265,7 +4265,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true @@ -4301,7 +4301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -4471,7 +4471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true @@ -4593,7 +4593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -4763,7 +4763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true @@ -4810,7 +4810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -4840,7 +4840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -4863,7 +4863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -4894,7 +4894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -4920,7 +4920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -4946,7 +4946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -5116,7 +5116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true @@ -5170,7 +5170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -5216,7 +5216,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -5291,7 +5291,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -5396,7 +5396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -5509,7 +5509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -5607,7 +5607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -5675,7 +5675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -5822,7 +5822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -5954,7 +5954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -6002,7 +6002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -6141,7 +6141,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -6254,7 +6254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -6352,7 +6352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -6385,7 +6385,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -6411,7 +6411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -6440,7 +6440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -6509,7 +6509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -6736,7 +6736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -6903,7 +6903,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -6933,7 +6933,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -6956,7 +6956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -6982,7 +6982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -7008,7 +7008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -7182,7 +7182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -7295,7 +7295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -7384,7 +7384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration" }, "ValidateNotNullOrEmpty": true @@ -7420,7 +7420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -7521,7 +7521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration" }, "ValidateNotNullOrEmpty": true @@ -7575,7 +7575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -7688,7 +7688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -7868,7 +7868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -7908,7 +7908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -8154,7 +8154,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -8212,7 +8212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -8325,7 +8325,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -8438,7 +8438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -8528,7 +8528,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -8732,7 +8732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -8921,7 +8921,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -8958,7 +8958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -9162,7 +9162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -9358,7 +9358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -9471,7 +9471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -9596,7 +9596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -9636,7 +9636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -9676,7 +9676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -9705,7 +9705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -9739,7 +9739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -9766,7 +9766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -9819,7 +9819,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -10080,7 +10080,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -10251,7 +10251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10288,7 +10288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10325,7 +10325,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -10351,7 +10351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -10382,7 +10382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -10406,7 +10406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -10439,7 +10439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -10617,7 +10617,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -10730,7 +10730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -10819,7 +10819,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule" ] @@ -10857,7 +10857,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -10958,7 +10958,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule" ] @@ -11014,7 +11014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -11127,7 +11127,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -11252,7 +11252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -11285,7 +11285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -11320,7 +11320,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -11366,7 +11366,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -11582,7 +11582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -11753,7 +11753,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -11783,7 +11783,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -11815,7 +11815,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -11841,7 +11841,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -12019,7 +12019,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -12132,7 +12132,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -12274,7 +12274,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -12458,7 +12458,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -12571,7 +12571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -12660,7 +12660,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -12678,7 +12678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", "VerifyClientRevocation": "System.String" @@ -12691,7 +12691,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" }, "ValidateNotNullOrEmpty": true @@ -12727,7 +12727,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -12828,7 +12828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -12852,7 +12852,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", "VerifyClientRevocation": "System.String" @@ -12871,7 +12871,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" }, "ValidateNotNullOrEmpty": true @@ -12925,7 +12925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -13038,7 +13038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -13162,7 +13162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -13316,7 +13316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -13429,7 +13429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -13553,7 +13553,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -13707,7 +13707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -13820,7 +13820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -13909,7 +13909,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, "ValidateNotNullOrEmpty": true @@ -13928,7 +13928,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -13957,7 +13957,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -13988,7 +13988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -14024,7 +14024,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -14077,7 +14077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -14178,7 +14178,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, "ValidateNotNullOrEmpty": true @@ -14270,7 +14270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -14371,7 +14371,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, "ValidateNotNullOrEmpty": true @@ -14418,7 +14418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -14444,7 +14444,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -14481,7 +14481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -14505,7 +14505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -14606,7 +14606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, "ValidateNotNullOrEmpty": true @@ -14653,7 +14653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -14677,7 +14677,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -14710,7 +14710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -14811,7 +14811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, "ValidateNotNullOrEmpty": true @@ -14888,7 +14888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -14989,7 +14989,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, "ValidateNotNullOrEmpty": true @@ -15043,7 +15043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -15164,7 +15164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -15262,7 +15262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -15348,7 +15348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -15433,7 +15433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -15517,7 +15517,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -15604,7 +15604,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -15689,7 +15689,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -15813,7 +15813,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -15972,7 +15972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -16108,7 +16108,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -16193,7 +16193,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -16332,7 +16332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -16420,7 +16420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -16705,7 +16705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -16960,7 +16960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -17006,7 +17006,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -17268,7 +17268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -17342,7 +17342,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -17524,7 +17524,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -17775,7 +17775,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthorizationKey": "System.String", "AuthorizationUseStatus": "System.String", @@ -17835,7 +17835,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -17911,7 +17911,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -17990,7 +17990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -18062,7 +18062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -18110,7 +18110,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" }, "ValidateNotNullOrEmpty": false @@ -18146,7 +18146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -18206,7 +18206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" }, "ValidateNotNullOrEmpty": false @@ -18260,7 +18260,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -18332,7 +18332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -18421,7 +18421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -18472,7 +18472,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -18521,7 +18521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", @@ -18591,7 +18591,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -18747,7 +18747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -18795,7 +18795,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -18966,7 +18966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -19103,7 +19103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -19225,7 +19225,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -19271,7 +19271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -19408,7 +19408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -19530,7 +19530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", @@ -19571,7 +19571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -19700,7 +19700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -19772,7 +19772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -19892,7 +19892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -19954,7 +19954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -20165,7 +20165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -20361,7 +20361,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -20403,7 +20403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -20606,7 +20606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -20678,7 +20678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -20789,7 +20789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -20858,7 +20858,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", @@ -20913,7 +20913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -21160,7 +21160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -21377,7 +21377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -21419,7 +21419,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", @@ -21454,7 +21454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -21678,7 +21678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -21750,7 +21750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -21834,7 +21834,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false @@ -21853,7 +21853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", @@ -21908,7 +21908,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -22028,7 +22028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false @@ -22090,7 +22090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -22210,7 +22210,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false @@ -22257,7 +22257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", @@ -22292,7 +22292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -22412,7 +22412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false @@ -22466,7 +22466,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -22538,7 +22538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -22678,7 +22678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -22884,7 +22884,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -22956,7 +22956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -23085,7 +23085,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -23131,7 +23131,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" }, "ValidateNotNullOrEmpty": false @@ -23150,7 +23150,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -23200,7 +23200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -23457,7 +23457,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -23668,7 +23668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -23710,7 +23710,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" }, "ValidateNotNullOrEmpty": false @@ -23726,7 +23726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -23756,7 +23756,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -23974,7 +23974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -24072,7 +24072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -24156,7 +24156,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -24207,7 +24207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -24257,7 +24257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" }, "ValidateNotNullOrEmpty": false @@ -24277,7 +24277,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" }, "ValidateNotNullOrEmpty": false @@ -24297,7 +24297,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" }, "ValidateNotNullOrEmpty": false @@ -24317,7 +24317,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false @@ -24377,7 +24377,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -24616,7 +24616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -24746,7 +24746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -24794,7 +24794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -24840,7 +24840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" }, "ValidateNotNullOrEmpty": false @@ -24856,7 +24856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" }, "ValidateNotNullOrEmpty": false @@ -24872,7 +24872,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" }, "ValidateNotNullOrEmpty": false @@ -24888,7 +24888,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false @@ -24934,7 +24934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -25071,7 +25071,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -25160,7 +25160,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -25222,7 +25222,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -25275,7 +25275,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -25386,7 +25386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -25482,7 +25482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -25515,7 +25515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -25618,7 +25618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -25707,7 +25707,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -25804,7 +25804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false @@ -25814,7 +25814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false @@ -25920,7 +25920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -26143,7 +26143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false @@ -26159,7 +26159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false @@ -26190,7 +26190,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -26460,7 +26460,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -26690,7 +26690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -26757,7 +26757,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -26845,7 +26845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -26975,7 +26975,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -27041,7 +27041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -27145,7 +27145,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -27297,7 +27297,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]", @@ -27730,7 +27730,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -27780,7 +27780,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -27851,7 +27851,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -27958,7 +27958,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -28033,7 +28033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -28127,7 +28127,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -28242,7 +28242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Destinations": "System.Collections.Generic.List`1[System.String]", @@ -28456,7 +28456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -28515,7 +28515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute" }, "ValidateNotNullOrEmpty": false @@ -28576,7 +28576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute" }, "ValidateNotNullOrEmpty": false @@ -28646,7 +28646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -28732,7 +28732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -28812,7 +28812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -28863,7 +28863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -28929,7 +28929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -29079,7 +29079,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -29199,7 +29199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -29247,7 +29247,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -29293,7 +29293,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -29420,7 +29420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", @@ -29497,7 +29497,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -29512,15 +29512,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -29528,8 +29528,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -29635,7 +29636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -29650,15 +29651,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -29666,8 +29667,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -29812,7 +29814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -29827,15 +29829,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -29843,8 +29845,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" }, "Methods": [ @@ -29897,7 +29900,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -29912,15 +29915,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -29928,8 +29931,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -29959,7 +29963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -29999,7 +30003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -30040,7 +30044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -30079,7 +30083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" } @@ -30091,7 +30095,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false @@ -30101,7 +30105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false @@ -30111,7 +30115,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false @@ -30139,7 +30143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false @@ -30202,7 +30206,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -30217,15 +30221,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -30233,8 +30237,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -30283,7 +30288,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" } @@ -30301,7 +30306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false @@ -30317,7 +30322,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false @@ -30333,7 +30338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false @@ -30379,7 +30384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false @@ -30507,7 +30512,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -30522,15 +30527,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -30538,8 +30543,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -30588,7 +30594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" } @@ -30606,7 +30612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false @@ -30622,7 +30628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false @@ -30638,7 +30644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false @@ -30684,7 +30690,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false @@ -30749,7 +30755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -30786,7 +30792,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -30821,7 +30827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -30871,7 +30877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -30886,15 +30892,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -30902,8 +30908,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -30952,7 +30959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" } @@ -30970,7 +30977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false @@ -30986,7 +30993,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false @@ -31002,7 +31009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false @@ -31048,7 +31055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false @@ -31120,7 +31127,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -31551,7 +31558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Thumbprint": "System.String", "ProvisioningState": "System.String", @@ -31766,7 +31773,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicCertData": "System.String", "ProvisioningState": "System.String", @@ -31981,7 +31988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -32341,7 +32348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", @@ -32399,7 +32406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -32631,7 +32638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -32991,7 +32998,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -33099,7 +33106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -33347,7 +33354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -33442,7 +33449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCommit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCommit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCommit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TargetLocations": "System.Collections.Generic.IList`1[System.String]", "ConfigurationIds": "System.Collections.Generic.IList`1[System.String]", @@ -33537,7 +33544,9 @@ }, "ValidateSet": [ "SecurityAdmin", - "Connectivity" + "Connectivity", + "Routing", + "SecurityUser" ], "ValidateNotNullOrEmpty": true }, @@ -33641,7 +33650,9 @@ }, "ValidateSet": [ "SecurityAdmin", - "Connectivity" + "Connectivity", + "Routing", + "SecurityUser" ], "ValidateNotNullOrEmpty": true }, @@ -33694,7 +33705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -33793,7 +33804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -34085,7 +34096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -34284,7 +34295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -34397,7 +34408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -34721,7 +34732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -34941,7 +34952,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -35172,7 +35183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -35231,7 +35242,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -35352,7 +35363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -35476,7 +35487,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -35522,7 +35533,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -35628,7 +35639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -35752,7 +35763,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableServerVariableAndRequestHeaderResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableServerVariable": "System.Collections.Generic.IList`1[System.String]", "AvailableRequestHeader": "System.Collections.Generic.IList`1[System.String]", @@ -35938,7 +35949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableSslOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PredefinedPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "AvailableCipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -36066,7 +36077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAvailableWafRuleSetsResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]", "ValueText": "System.String" @@ -36180,7 +36191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -36250,7 +36261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -36371,7 +36382,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -36495,7 +36506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]", "BackendAddressPoolsText": "System.String" @@ -36786,7 +36797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -36871,7 +36882,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -36992,7 +37003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -37119,7 +37130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -37197,7 +37208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -37318,7 +37329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -37442,7 +37453,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", "VerifyClientRevocation": "System.String" @@ -37488,7 +37499,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -37534,7 +37545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -37598,7 +37609,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -37644,7 +37655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -37701,7 +37712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -37776,7 +37787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -37831,7 +37842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -37952,7 +37963,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -38076,7 +38087,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -38252,7 +38263,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -38318,7 +38329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -38439,7 +38450,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -38563,7 +38574,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -38622,7 +38633,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -38743,7 +38754,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -38867,7 +38878,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -38940,7 +38951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -39061,7 +39072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -39185,7 +39196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -39240,7 +39251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -39312,7 +39323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -39387,7 +39398,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -39435,7 +39446,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -39541,7 +39552,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -39665,7 +39676,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "ProvisioningState": "System.String", @@ -39725,7 +39736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -39846,7 +39857,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -39970,7 +39981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -40038,7 +40049,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -40159,7 +40170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -40283,7 +40294,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -40334,7 +40345,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -40449,7 +40460,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -40588,7 +40599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -40657,7 +40668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -40778,7 +40789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -40902,7 +40913,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -40971,7 +40982,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -41092,7 +41103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -41216,7 +41227,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -41288,7 +41299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -41409,7 +41420,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -41533,7 +41544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -41597,7 +41608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -41718,7 +41729,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -41842,7 +41853,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -41908,7 +41919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -42029,7 +42040,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -42153,7 +42164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Name": "System.String", @@ -42201,7 +42212,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -42307,7 +42318,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -42431,7 +42442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -42493,7 +42504,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -42614,7 +42625,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -42738,7 +42749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -42789,7 +42800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -42895,7 +42906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -43019,7 +43030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPredefinedPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CipherSuites": "System.Collections.Generic.List`1[System.String]", "MinProtocolVersion": "System.String", @@ -43160,7 +43171,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -43222,7 +43233,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -43343,7 +43354,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -43467,7 +43478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -43518,7 +43529,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -43564,7 +43575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -43628,7 +43639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Data": "System.String", "ValidatedCertData": "System.String", @@ -43689,7 +43700,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -43810,7 +43821,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -43934,7 +43945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -43993,7 +44004,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -44114,7 +44125,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -44238,7 +44249,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -44305,7 +44316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -44426,7 +44437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -44550,7 +44561,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWafDynamicManifests", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWafDynamicManifests, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWafDynamicManifests, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet]", "DefaultRuleSetVersion": "System.String", @@ -44685,7 +44696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -44740,7 +44751,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -44846,7 +44857,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -44970,7 +44981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -45142,7 +45153,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAutoApprovedPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateLinkService": "System.String" }, @@ -45299,7 +45310,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailablePrivateEndpointType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Id": "System.String", @@ -45460,7 +45471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PsAvailableServiceAlias, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Id": "System.String", @@ -45596,7 +45607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Actions": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", @@ -45733,7 +45744,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", @@ -45835,7 +45846,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSBastion]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSBastion" ] @@ -46103,7 +46114,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink" ] @@ -46150,7 +46161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", @@ -46407,7 +46418,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", @@ -46581,7 +46592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpServiceCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpCommunities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]", "Name": "System.String", @@ -46695,7 +46706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -46969,7 +46980,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "PublicIPAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -47176,7 +47187,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Actions": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", @@ -47235,7 +47246,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -47318,7 +47329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -47404,7 +47415,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Association": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation", "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -47568,7 +47579,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "AddressPrefix": "System.Collections.Generic.List`1[System.String]", @@ -47755,7 +47766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -47949,7 +47960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Age": "System.Nullable`1[System.Int32]", "InterfaceProperty": "System.String", @@ -48033,7 +48044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -48122,7 +48133,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -48175,7 +48186,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthorizationKey": "System.String", "AuthorizationUseStatus": "System.String", @@ -48234,7 +48245,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -48318,7 +48329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -48405,7 +48416,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IPv6CircuitConnectionConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig", "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -48471,7 +48482,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -48555,7 +48566,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -48642,7 +48653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -48721,7 +48732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -48805,7 +48816,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -48892,7 +48903,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Weight": "System.Nullable`1[System.Int32]", "Network": "System.String", @@ -48977,7 +48988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -49066,7 +49077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -49119,7 +49130,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTableSummary, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "V": "System.Nullable`1[System.Int32]", "AsProperty": "System.Nullable`1[System.Int32]", @@ -49204,7 +49215,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -49293,7 +49304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": true }, @@ -49346,7 +49357,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitStats, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrimaryBytesIn": "System.Nullable`1[System.Int64]", "PrimaryBytesOut": "System.Nullable`1[System.Int64]", @@ -49551,7 +49562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -49627,7 +49638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -49789,7 +49800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -49998,7 +50009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -50175,7 +50186,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitArpTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Age": "System.Nullable`1[System.Int32]", "InterfaceProperty": "System.String", @@ -50245,7 +50256,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -50291,7 +50302,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -50384,7 +50395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -50434,7 +50445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -50492,7 +50503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -50562,7 +50573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -50619,7 +50630,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -50692,7 +50703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -50765,7 +50776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -50841,7 +50852,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitRoutesTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Weight": "System.Nullable`1[System.Int32]", "Network": "System.String", @@ -50912,7 +50923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -50958,7 +50969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -51051,7 +51062,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -51101,7 +51112,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -51159,7 +51170,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -51229,7 +51240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -51286,7 +51297,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -51373,7 +51384,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -51419,7 +51430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -51512,7 +51523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -51562,7 +51573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", @@ -51620,7 +51631,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -51690,7 +51701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.DevicePathEnum", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.DevicePathEnum, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateSet": [ "Primary", @@ -51747,7 +51758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", @@ -52020,7 +52031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -52292,7 +52303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthorizationKey": "System.String", "AuthorizationUseStatus": "System.String", @@ -52352,7 +52363,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -52428,7 +52439,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -52507,7 +52518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -52555,7 +52566,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -52616,7 +52627,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -52695,7 +52706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig", "RouterName": "System.String", @@ -52760,7 +52771,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -52845,7 +52856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -52917,7 +52928,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -53004,7 +53015,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", @@ -53083,7 +53094,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AvailableBandwidths": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]", "Tag": "System.Collections.Hashtable", @@ -53229,7 +53240,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BandwidthsOffered": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]", "PeeringLocations": "System.Collections.Generic.List`1[System.String]", @@ -53345,7 +53356,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", @@ -53672,7 +53683,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall" ] @@ -53806,7 +53817,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "FqdnTagName": "System.String", @@ -53857,7 +53868,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag" ] @@ -53937,7 +53948,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpPrefixes": "System.Collections.Generic.IList`1[System.String]" }, @@ -53979,7 +53990,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix" ] @@ -54113,7 +54124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -54386,7 +54397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -54470,7 +54481,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -54639,7 +54650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -54750,7 +54761,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", "Name": "System.String" @@ -54826,7 +54837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -54994,7 +55005,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -55151,7 +55162,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", "Name": "System.String" @@ -55224,7 +55235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -55386,7 +55397,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -55543,7 +55554,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", @@ -55856,7 +55867,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -55909,7 +55920,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Network.Models.PSIpGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSIpGroup" ] @@ -56129,7 +56140,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -56438,7 +56449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRulePortMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendPort": "System.Nullable`1[System.Int32]", "BackendPort": "System.Nullable`1[System.Int32]", @@ -56513,7 +56524,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -56726,7 +56737,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -56976,7 +56987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", @@ -57085,7 +57096,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -57250,7 +57261,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -57410,7 +57421,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", @@ -57492,7 +57503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -57566,7 +57577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -57664,7 +57675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -57757,7 +57768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -57831,7 +57842,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -57929,7 +57940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPortRangeStart": "System.Int32", @@ -57998,7 +58009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -58072,7 +58083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -58170,7 +58181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -58240,7 +58251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -58314,7 +58325,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -58412,7 +58423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -58472,7 +58483,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -58546,7 +58557,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -58644,7 +58655,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -58721,7 +58732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -58795,7 +58806,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -58893,7 +58904,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -58965,7 +58976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -59039,7 +59050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -59137,7 +59148,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -59315,7 +59326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -59627,7 +59638,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -60275,7 +60286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -60374,7 +60385,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -60459,7 +60470,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -60547,7 +60558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -60820,7 +60831,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", @@ -61093,7 +61104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfigurationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfigurationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfigurationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration]", "SkipToken": "System.String", @@ -61302,7 +61313,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveSecurityAdminRuleResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveSecurityAdminRuleResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveSecurityAdminRuleResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule]", "SkipToken": "System.String", @@ -61511,7 +61522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", @@ -61854,7 +61865,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatusResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatusResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatusResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus]", "SkipToken": "System.String", @@ -62089,7 +62100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfigurationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfigurationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfigurationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration]", "SkipToken": "System.String", @@ -62272,7 +62283,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveSecurityAdminRuleResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveSecurityAdminRuleResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveSecurityAdminRuleResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule]", "SkipToken": "System.String", @@ -62455,10 +62466,11 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", "NetworkManagerName": "System.String", + "MemberType": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -62791,7 +62803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", "ScopeId": "System.String", @@ -63063,25 +63075,22 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkManagerScopeConnection", - "Name": "Get-AzNetworkManagerScopeConnection", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerScopeConnectionCommand", + "NounName": "AzNetworkManagerRoutingConfiguration", + "Name": "Get-AzNetworkManagerRoutingConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerRoutingConfigurationCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "NoExpand", + "DefaultParameterSetName": "ByList", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", "NetworkManagerName": "System.String", - "TenantId": "System.String", - "ResourceId": "System.String", - "ConnectionState": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -63137,7 +63146,7 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "NetworkManagerName", @@ -63157,6 +63166,18 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "ResourceId", + "AliasList": [ + "RoutingConfigurationId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -63180,7 +63201,7 @@ ], "ParameterSets": [ { - "Name": "NoExpand", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { @@ -63193,9 +63214,9 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -63259,26 +63280,8 @@ ] }, { - "Name": "Expand", + "Name": "ByList", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "NetworkManagerName", @@ -63338,11 +63341,14 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "ByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkManagerName", + "Name": "ResourceId", + "AliasList": [ + "RoutingConfigurationId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -63357,19 +63363,35 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -63402,26 +63424,26 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkManagerSecurityAdminConfiguration", - "Name": "Get-AzNetworkManagerSecurityAdminConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerSecurityAdminConfigurationCommand", + "NounName": "AzNetworkManagerRoutingRule", + "Name": "Get-AzNetworkManagerRoutingRule", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerRoutingRuleCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "NoExpand", + "DefaultParameterSetName": "ByList", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "Destination": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination", + "NextHop": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop", "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]", "NetworkManagerName": "System.String", - "SecurityType": "System.String", - "ApplyOnNetworkIntentPolicyBasedServicesText": "System.String", - "DeleteExistingNSGs": "System.String", + "RoutingConfigurationName": "System.String", + "RuleCollectionName": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -63479,6 +63501,27 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "NetworkManagerName", "Type": { @@ -63497,6 +63540,18 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "ResourceId", + "AliasList": [ + "RoutingRuleId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -63520,7 +63575,7 @@ ], "ParameterSets": [ { - "Name": "NoExpand", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { @@ -63535,7 +63590,40 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -63599,20 +63687,35 @@ ] }, { - "Name": "Expand", + "Name": "ByList", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RoutingConfigurationName", "AliasList": [ - "ResourceName" + "ConfigName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -63678,26 +63781,14 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "ByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkManagerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ResourceId", + "AliasList": [ + "RoutingRuleId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -63737,29 +63828,62 @@ "ValueFromPipelineByPropertyName": false } ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] } ] }, { "VerbName": "Get", - "NounName": "AzNetworkManagerSecurityAdminRule", - "Name": "Get-AzNetworkManagerSecurityAdminRule", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerSecurityAdminRuleCommand", + "NounName": "AzNetworkManagerRoutingRuleCollection", + "Name": "Get-AzNetworkManagerRoutingRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerRoutingRuleCollectionCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "NoExpand", + "DefaultParameterSetName": "ByList", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesTo": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem]", "NetworkManagerName": "System.String", - "SecurityAdminConfigurationName": "System.String", - "RuleCollectionName": "System.String", + "RoutingConfigurationName": "System.String", + "DisableBgpRoutePropagation": "System.String", + "AppliesToText": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -63818,7 +63942,10 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "RuleCollectionName", + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -63827,10 +63954,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "SecurityAdminConfigurationName", - "AliasList": [ - "ConfigName" - ], + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -63839,7 +63963,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "NetworkManagerName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -63848,7 +63972,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "ResourceId", + "AliasList": [ + "RoutingCollectionId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -63879,7 +64006,7 @@ ], "ParameterSets": [ { - "Name": "NoExpand", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { @@ -63894,21 +64021,6 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "RuleCollectionName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, @@ -63916,7 +64028,7 @@ }, { "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", + "Name": "RoutingConfigurationName", "AliasList": [ "ConfigName" ], @@ -63991,44 +64103,11 @@ ] }, { - "Name": "Expand", + "Name": "ByList", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "RuleCollectionName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", + "Name": "RoutingConfigurationName", "AliasList": [ "ConfigName" ], @@ -64103,28 +64182,13 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "ByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "RuleCollectionName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", + "Name": "ResourceId", "AliasList": [ - "ConfigName" + "RoutingCollectionId" ], "Type": { "Namespace": "System", @@ -64140,34 +64204,35 @@ }, { "ParameterMetadata": { - "Name": "NetworkManagerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -64200,9 +64265,9 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkManagerSecurityAdminRuleCollection", - "Name": "Get-AzNetworkManagerSecurityAdminRuleCollection", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerSecurityAdminRuleCollectionCommand", + "NounName": "AzNetworkManagerScopeConnection", + "Name": "Get-AzNetworkManagerScopeConnection", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerScopeConnectionCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -64211,14 +64276,14 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", "NetworkManagerName": "System.String", - "SecurityAdminConfigurationName": "System.String", - "AppliesToGroupsText": "System.String", + "TenantId": "System.String", + "ResourceId": "System.String", + "ConnectionState": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -64274,18 +64339,6 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SecurityAdminConfigurationName", - "AliasList": [ - "ConfigName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": true }, { @@ -64342,7 +64395,7 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -64351,106 +64404,70 @@ }, { "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", "AliasList": [ - "ConfigName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkManagerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "Expand", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", - "AliasList": [ - "ConfigName" + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "Expand", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" ], "Type": { "Namespace": "System", @@ -64525,24 +64542,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", - "AliasList": [ - "ConfigName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "NetworkManagerName", @@ -64605,9 +64604,9 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkManagerStaticMember", - "Name": "Get-AzNetworkManagerStaticMember", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerStaticMemberCommand", + "NounName": "AzNetworkManagerSecurityAdminConfiguration", + "Name": "Get-AzNetworkManagerSecurityAdminConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerSecurityAdminConfigurationCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -64616,13 +64615,15 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]", "NetworkManagerName": "System.String", - "NetworkGroupName": "System.String", - "ResourceId": "System.String", + "SecurityType": "System.String", + "ApplyOnNetworkIntentPolicyBasedServicesText": "System.String", + "DeleteExistingNSGs": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -64678,16 +64679,7 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NetworkGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "NetworkManagerName", @@ -64743,28 +64735,13 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "NetworkGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "NetworkManagerName", @@ -64837,22 +64814,7 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -64920,21 +64882,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "NetworkGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "NetworkManagerName", @@ -64997,9 +64944,9 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkManagerSubscriptionConnection", - "Name": "Get-AzNetworkManagerSubscriptionConnection", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerSubscriptionConnectionCommand", + "NounName": "AzNetworkManagerSecurityAdminRule", + "Name": "Get-AzNetworkManagerSecurityAdminRule", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerSecurityAdminRuleCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -65008,13 +64955,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "ScopeId": "System.String", - "NetworkManagerId": "System.String", - "ConnectionState": "System.String", + "NetworkManagerName": "System.String", + "SecurityAdminConfigurationName": "System.String", + "RuleCollectionName": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -65070,6 +65017,45 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SecurityAdminConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, { @@ -65108,13 +65094,76 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecurityAdminConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -65157,6 +65206,69 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecurityAdminConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -65195,6 +65307,69 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecurityAdminConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -65227,31 +65402,30 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkProfile", - "Name": "Get-AzNetworkProfile", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkProfile", + "NounName": "AzNetworkManagerSecurityAdminRuleCollection", + "Name": "Get-AzNetworkManagerSecurityAdminRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerSecurityAdminRuleCollectionCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "GetByResourceNameNoExpandParameterSet", + "DefaultParameterSetName": "NoExpand", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", - "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ContainerNetworkInterfacesText": "System.String", - "ContainerNetworkInterfaceConfigurationsText": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", + "NetworkManagerName": "System.String", + "SecurityAdminConfigurationName": "System.String", + "AppliesToGroupsText": "System.String", "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "Description": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -65293,18 +65467,21 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Name", + "Name": "SecurityAdminConfigurationName", "AliasList": [ - "ResourceName" + "ConfigName" ], "Type": { "Namespace": "System", @@ -65314,16 +65491,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ExpandResource", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -65354,28 +65531,31 @@ ], "ParameterSets": [ { - "Name": "GetByResourceNameExpandParameterSet", + "Name": "NoExpand", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "SecurityAdminConfigurationName", "AliasList": [ - "ResourceName" + "ConfigName" ], "Type": { "Namespace": "System", @@ -65391,7 +65571,22 @@ }, { "ParameterMetadata": { - "Name": "ExpandResource", + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -65433,28 +65628,31 @@ ] }, { - "Name": "GetByResourceNameNoExpandParameterSet", + "Name": "Expand", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "SecurityAdminConfigurationName", "AliasList": [ - "ResourceName" + "ConfigName" ], "Type": { "Namespace": "System", @@ -65463,51 +65661,20 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "GetByResourceIdExpandParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -65516,7 +65683,7 @@ }, { "ParameterMetadata": { - "Name": "ExpandResource", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -65558,17 +65725,20 @@ ] }, { - "Name": "GetByResourceIdNoExpandParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "SecurityAdminConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -65577,35 +65747,34 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "NetworkManagerName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -65638,58 +65807,32 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkSecurityGroup", - "Name": "Get-AzNetworkSecurityGroup", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand", + "NounName": "AzNetworkManagerSecurityUserConfiguration", + "Name": "Get-AzNetworkManagerSecurityUserConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerSecurityUserConfigurationCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByList", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "FlushConnection": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "NetworkInterfacesText": "System.String", - "SubnetsText": "System.String", - "Etag": "System.String", - "DefaultSecurityRulesText": "System.String", - "SecurityRulesText": "System.String", - "FlushConnectionText": "System.String", "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeSecurityRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeDefaultSecurityRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeNetworkInterfaces", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeSubnets", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -65735,6 +65878,15 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, { @@ -65747,7 +65899,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ExpandResource", + "Name": "ResourceId", + "AliasList": [ + "SecurityUserConfigurationId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -65778,7 +65933,7 @@ ], "ParameterSets": [ { - "Name": "NoExpand", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { @@ -65791,9 +65946,24 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -65808,7 +65978,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -65842,14 +66012,11 @@ ] }, { - "Name": "Expand", + "Name": "ByList", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -65879,7 +66046,41 @@ }, { "ParameterMetadata": { - "Name": "ExpandResource", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [ + "SecurityUserConfigurationId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -65955,36 +66156,41 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkSecurityRuleConfig", - "Name": "Get-AzNetworkSecurityRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand", + "NounName": "AzNetworkManagerSecurityUserRule", + "Name": "Get-AzNetworkManagerSecurityUserRule", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerSecurityUserRuleCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByList", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", - "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", - "SourceAddressPrefix": "System.Collections.Generic.IList`1[System.String]", - "DestinationAddressPrefix": "System.Collections.Generic.IList`1[System.String]", - "DestinationApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "SourceApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "Priority": "System.Int32", - "Description": "System.String", - "Name": "System.String", - "DestinationApplicationSecurityGroupsText": "System.String", - "SourceApplicationSecurityGroupsText": "System.String", - "Direction": "System.String", - "Etag": "System.String", - "Access": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "Sources": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "Destinations": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "SourcePortRanges": "System.Collections.Generic.IList`1[System.String]", + "DestinationPortRanges": "System.Collections.Generic.IList`1[System.String]", "Protocol": "System.String", + "Name": "System.String", + "SystemDataText": "System.String", "ProvisioningState": "System.String", + "Type": "System.String", + "Description": "System.String", + "ResourceGroupName": "System.String", + "DestinationsText": "System.String", + "SourcePortRangesText": "System.String", + "Etag": "System.String", + "SourcesText": "System.String", + "RuleCollectionName": "System.String", + "SecurityUserConfigurationName": "System.String", + "NetworkManagerName": "System.String", + "Direction": "System.String", + "DestinationPortRangesText": "System.String", "Id": "System.String" }, "Methods": [ @@ -66025,6 +66231,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -66033,44 +66242,55 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "NetworkSecurityGroup", + "Name": "RuleCollectionName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "FlushConnection": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "NetworkInterfacesText": "System.String", - "SubnetsText": "System.String", - "Etag": "System.String", - "DefaultSecurityRulesText": "System.String", - "SecurityRulesText": "System.String", - "FlushConnectionText": "System.String", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultRules", + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [ + "SecurityUserRuleId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -66095,11 +66315,14 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -66107,62 +66330,73 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "NetworkSecurityGroup", + "Name": "RuleCollectionName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "FlushConnection": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "NetworkInterfacesText": "System.String", - "SubnetsText": "System.String", - "Etag": "System.String", - "DefaultSecurityRulesText": "System.String", - "SecurityRulesText": "System.String", - "FlushConnectionText": "System.String", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultRules", + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -66191,105 +66425,61 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzNetworkServiceTag", - "Name": "Get-AzNetworkServiceTag", - "ClassName": "Microsoft.Azure.Commands.Network.Automation.GetAzureNetworkServiceTagCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Values": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]", - "Name": "System.String", - "Id": "System.String", - "Type": "System.String", - "Cloud": "System.String", - "ChangeNumber": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Name": "ByList", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "Location", + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -66329,100 +66519,16 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzNetworkUsage", - "Name": "Get-AzNetworkUsage", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmNetworkUsage", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ResourceType": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "ResourceId", + "AliasList": [ + "SecurityUserRuleId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -66462,48 +66568,68 @@ "ValueFromPipelineByPropertyName": false } ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] } ] }, { "VerbName": "Get", - "NounName": "AzNetworkVirtualAppliance", - "Name": "Get-AzNetworkVirtualAppliance", - "ClassName": "Microsoft.Azure.Commands.Network.GetNetworkVirtualApplianceCommand", + "NounName": "AzNetworkManagerSecurityUserRuleCollection", + "Name": "Get-AzNetworkManagerSecurityUserRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerSecurityUserRuleCollectionCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ResourceNameParameterSet", + "DefaultParameterSetName": "ByList", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "NetworkProfile": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", - "NvaSku": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "VirtualApplianceConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "VirtualApplianceSites": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AdditionalNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]", - "InternetIngressPublicIps": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]", - "VirtualApplianceNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", - "BootStrapConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", - "CloudInitConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VirtualApplianceAsn": "System.Nullable`1[System.Int64]", - "Etag": "System.String", - "CloudInitConfiguration": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem]", + "NetworkManagerName": "System.String", + "SecurityUserConfigurationName": "System.String", + "AppliesToGroupText": "System.String", "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "Description": "System.String", "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ @@ -66552,6 +66678,27 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, { @@ -66565,6 +66712,9 @@ }, { "Name": "ResourceId", + "AliasList": [ + "SecurityUserCollectionId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -66595,7 +66745,7 @@ ], "ParameterSets": [ { - "Name": "ResourceNameParameterSet", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { @@ -66608,9 +66758,42 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -66625,7 +66808,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -66659,11 +66842,93 @@ ] }, { - "Name": "ResourceIdParameterSet", + "Name": "ByList", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [ + "SecurityUserCollectionId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -66739,28 +67004,29 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkVirtualApplianceConnection", - "Name": "Get-AzNetworkVirtualApplianceConnection", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmNetworkVirtualApplianceConnectionCommand", + "NounName": "AzNetworkManagerStaticMember", + "Name": "Get-AzNetworkManagerStaticMember", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerStaticMemberCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ResourceNameParameterSet", + "DefaultParameterSetName": "NoExpand", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "PropagateStaticRoutes": "System.Boolean", - "EnableInternetSecurity": "System.Boolean", - "BgpPeerAddress": "System.Collections.Generic.IList`1[System.String]", - "Asn": "System.Nullable`1[System.Int64]", - "TunnelIdentifier": "System.Nullable`1[System.Int64]", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "NetworkGroupName": "System.String", + "ResourceId": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", "ProvisioningState": "System.String", - "RoutingConfigurationText": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -66802,7 +67068,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -66811,11 +67080,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualApplianceName", - "AliasList": [ - "ParentNvaName", - "NetworkVirtualApplianceName" - ], + "Name": "NetworkGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -66824,50 +67089,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualAppliance", - "AliasList": [ - "ParentNva", - "NetworkVirtualAppliance" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "NetworkProfile": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", - "NvaSku": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "VirtualApplianceConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "VirtualApplianceSites": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AdditionalNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]", - "InternetIngressPublicIps": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]", - "VirtualApplianceNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", - "BootStrapConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", - "CloudInitConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VirtualApplianceAsn": "System.Nullable`1[System.Int64]", - "Etag": "System.String", - "CloudInitConfiguration": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "ProvisioningState": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualApplianceResourceId", - "AliasList": [ - "ParentNvaId", - "NetworkVirtualApplianceId" - ], + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -66876,11 +67098,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "NetworkVirtualApplianceConnectionName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -66911,11 +67129,29 @@ ], "ParameterSets": [ { - "Name": "ResourceNameParameterSet", + "Name": "NoExpand", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -66926,15 +67162,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualApplianceName", - "AliasList": [ - "ParentNvaName", - "NetworkVirtualApplianceName" - ], + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -66945,15 +67177,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "NetworkVirtualApplianceConnectionName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -66961,10 +67189,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -66995,60 +67223,29 @@ ] }, { - "Name": "ResourceObjectParameterSet", + "Name": "Expand", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualAppliance", + "Name": "Name", "AliasList": [ - "ParentNva", - "NetworkVirtualAppliance" + "ResourceName" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "NetworkProfile": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", - "NvaSku": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "VirtualApplianceConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "VirtualApplianceSites": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AdditionalNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]", - "InternetIngressPublicIps": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]", - "VirtualApplianceNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", - "BootStrapConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", - "CloudInitConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VirtualApplianceAsn": "System.Nullable`1[System.Int64]", - "Etag": "System.String", - "CloudInitConfiguration": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "ProvisioningState": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "NetworkVirtualApplianceConnectionName" - ], + "Name": "NetworkGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -67056,49 +67253,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ResourceIdParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualApplianceResourceId", - "AliasList": [ - "ParentNvaId", - "NetworkVirtualApplianceId" - ], + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -67113,11 +67275,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "NetworkVirtualApplianceConnectionName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -67125,10 +67283,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -67163,11 +67321,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "NetworkVirtualApplianceConnectionName" - ], + "Name": "NetworkGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -67175,137 +67329,29 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "NetworkManagerName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzNetworkVirtualApplianceSku", - "Name": "Get-AzNetworkVirtualApplianceSku", - "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualApplianceSkuCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AvailableScaleUnits": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances]", - "AvailableVersions": "System.Collections.Generic.IList`1[System.String]", - "Vendor": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "SkuName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ResourceName", - "Parameters": [ { "ParameterMetadata": { - "Name": "SkuName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -67313,10 +67359,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -67345,63 +67391,34 @@ "ValueFromPipelineByPropertyName": false } ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] } ] }, { "VerbName": "Get", - "NounName": "AzNetworkWatcher", - "Name": "Get-AzNetworkWatcher", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand", + "NounName": "AzNetworkManagerSubscriptionConnection", + "Name": "Get-AzNetworkManagerSubscriptionConnection", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkManagerSubscriptionConnectionCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "NoExpand", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "ScopeId": "System.String", + "NetworkManagerId": "System.String", + "ConnectionState": "System.String", "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "Description": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -67454,24 +67471,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -67495,7 +67494,7 @@ ], "ParameterSets": [ { - "Name": "List", + "Name": "NoExpand", "Parameters": [ { "ParameterMetadata": { @@ -67513,22 +67512,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -67559,22 +67543,25 @@ ] }, { - "Name": "SetByLocation", + "Name": "Expand", "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -67639,90 +67626,31 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkWatcherConnectionMonitor", - "Name": "Get-AzNetworkWatcherConnectionMonitor", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherConnectionMonitorCommand", + "NounName": "AzNetworkProfile", + "Name": "Get-AzNetworkProfile", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkProfile", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByName", + "DefaultParameterSetName": "GetByResourceNameNoExpandParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", - "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", - "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", - "AutoStart": "System.Nullable`1[System.Boolean]", - "StartTime": "System.Nullable`1[System.DateTime]", - "MonitoringIntervalInSeconds": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsText": "System.String", - "ConnectionMonitorType": "System.String", - "Type": "System.String", - "Etag": "System.String", + "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", + "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", + "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", - "DestinationText": "System.String", - "SourceText": "System.String", - "MonitoringStatus": "System.String", + "ContainerNetworkInterfacesText": "System.String", + "ContainerNetworkInterfaceConfigurationsText": "System.String", + "ResourceGroupName": "System.String", "Location": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - }, - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", - "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", - "TestGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", - "StartTime": "System.Nullable`1[System.DateTime]", - "Notes": "System.String", - "TestGroupsText": "System.String", - "OutputsText": "System.String", - "ProvisioningState": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", - "Location": "System.String", - "ConnectionMonitorType": "System.String", - "TagsText": "System.String", + "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -67763,36 +67691,6 @@ } ], "Parameters": [ - { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkWatcherName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "ResourceGroupName", "Type": { @@ -67803,13 +67701,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "ResourceId", @@ -67821,10 +67722,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -67855,40 +67753,28 @@ ], "ParameterSets": [ { - "Name": "SetByResource", + "Name": "GetByResourceNameExpandParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcher", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ConnectionMonitorName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -67897,10 +67783,25 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ExpandResource", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -67931,23 +67832,8 @@ ] }, { - "Name": "SetByName", + "Name": "GetByResourceNameNoExpandParameterSet", "Parameters": [ - { - "ParameterMetadata": { - "Name": "NetworkWatcherName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -67958,16 +67844,16 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ConnectionMonitorName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -67979,7 +67865,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -68010,11 +67896,11 @@ ] }, { - "Name": "SetByLocation", + "Name": "GetByResourceIdExpandParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -68025,14 +67911,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -68040,10 +67923,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -68074,7 +67957,7 @@ ] }, { - "Name": "SetByResourceId", + "Name": "GetByResourceIdNoExpandParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -68154,24 +68037,58 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkWatcherConnectionMonitorReport", - "Name": "Get-AzNetworkWatcherConnectionMonitorReport", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherConnectionMonitorReportCommand", + "NounName": "AzNetworkSecurityGroup", + "Name": "Get-AzNetworkSecurityGroup", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityGroupCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByName", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]", - "StatesText": "System.String" + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", + "FlushConnection": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "NetworkInterfacesText": "System.String", + "SubnetsText": "System.String", + "Etag": "System.String", + "DefaultSecurityRulesText": "System.String", + "SecurityRulesText": "System.String", + "FlushConnectionText": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeSecurityRules", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeDefaultSecurityRules", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeNetworkInterfaces", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeSubnets", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -68208,28 +68125,10 @@ ], "Parameters": [ { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkWatcherName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -68247,49 +68146,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", - "StartTime": "System.Nullable`1[System.DateTime]", - "ProvisioningState": "System.String", - "Type": "System.String", - "Location": "System.String", - "ConnectionMonitorType": "System.String", - "TagsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -68297,15 +68154,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -68329,40 +68177,13 @@ ], "ParameterSets": [ { - "Name": "SetByResource", + "Name": "NoExpand", "Parameters": [ - { - "ParameterMetadata": { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ConnectionMonitorName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -68371,25 +68192,25 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -68420,11 +68241,14 @@ ] }, { - "Name": "SetByName", + "Name": "Expand", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcherName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -68435,7 +68259,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -68450,14 +68274,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -68468,22 +68289,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -68514,56 +68320,8 @@ ] }, { - "Name": "SetByLocation", + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -68591,58 +68349,160 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzNetworkSecurityRuleConfig", + "Name": "Get-AzNetworkSecurityRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkSecurityRuleConfigCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", + "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", + "SourceAddressPrefix": "System.Collections.Generic.IList`1[System.String]", + "DestinationAddressPrefix": "System.Collections.Generic.IList`1[System.String]", + "DestinationApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", + "SourceApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", + "Priority": "System.Int32", + "Description": "System.String", + "Name": "System.String", + "DestinationApplicationSecurityGroupsText": "System.String", + "SourceApplicationSecurityGroupsText": "System.String", + "Direction": "System.String", + "Etag": "System.String", + "Access": "System.String", + "Protocol": "System.String", + "ProvisioningState": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkSecurityGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", + "FlushConnection": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "NetworkInterfacesText": "System.String", + "SubnetsText": "System.String", + "Etag": "System.String", + "DefaultSecurityRulesText": "System.String", + "SecurityRulesText": "System.String", + "FlushConnectionText": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultRules", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -68650,29 +68510,34 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByInputObject", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "NetworkSecurityGroup", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", - "StartTime": "System.Nullable`1[System.DateTime]", - "ProvisioningState": "System.String", + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", + "FlushConnection": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", "Type": "System.String", + "ResourceGuid": "System.String", "Location": "System.String", - "ConnectionMonitorType": "System.String", - "TagsText": "System.String", - "Name": "System.String", + "NetworkInterfacesText": "System.String", + "SubnetsText": "System.String", "Etag": "System.String", + "DefaultSecurityRulesText": "System.String", + "SecurityRulesText": "System.String", + "FlushConnectionText": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", "Id": "System.String" } }, @@ -68685,7 +68550,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DefaultRules", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -68725,24 +68590,116 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzNetworkServiceTag", + "Name": "Get-AzNetworkServiceTag", + "ClassName": "Microsoft.Azure.Commands.Network.Automation.GetAzureNetworkServiceTagCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Values": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]", + "Name": "System.String", + "Id": "System.String", + "Type": "System.String", + "Cloud": "System.String", + "ChangeNumber": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Location", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -68776,43 +68733,21 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkWatcherFlowLog", - "Name": "Get-AzNetworkWatcherFlowLog", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkWatcherFlowLogCommand", + "NounName": "AzNetworkUsage", + "Name": "Get-AzNetworkUsage", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmNetworkUsage", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByName", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSUsage", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", - "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties", - "Tag": "System.Collections.Hashtable", - "Enabled": "System.Nullable`1[System.Boolean]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "FormatText": "System.String", - "IdentityText": "System.String", - "Etag": "System.String", - "RetentionPolicyText": "System.String", - "EnabledFilteringCriteria": "System.String", - "StorageId": "System.String", - "TargetResourceGuid": "System.String", - "TargetResourceId": "System.String", - "FlowAnalyticsConfigurationText": "System.String", - "Id": "System.String" + "ResourceType": "System.String" }, "Methods": [ { @@ -68850,45 +68785,6 @@ } ], "Parameters": [ - { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkWatcherName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "Location", "Type": { @@ -68896,27 +68792,6 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "FlowLogName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": true }, { @@ -68942,41 +68817,11 @@ ], "ParameterSets": [ { - "Name": "SetByResource", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "FlowLogName" - ], + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -68984,10 +68829,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -69016,110 +68861,162 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzNetworkVirtualAppliance", + "Name": "Get-AzNetworkVirtualAppliance", + "ClassName": "Microsoft.Azure.Commands.Network.GetNetworkVirtualApplianceCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceNameParameterSet", + "OutputTypes": [ { - "Name": "SetByName", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "NetworkWatcherName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "NetworkProfile": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", + "NvaSku": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", + "VirtualApplianceConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "VirtualApplianceSites": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AdditionalNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]", + "InternetIngressPublicIps": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]", + "VirtualApplianceNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", + "BootStrapConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", + "CloudInitConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", + "Tag": "System.Collections.Hashtable", + "VirtualApplianceAsn": "System.Nullable`1[System.Int64]", + "Etag": "System.String", + "CloudInitConfiguration": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "ProvisioningState": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "FlowLogName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "SetByLocation", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ResourceNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "FlowLogName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -69130,7 +69027,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -69161,7 +69058,7 @@ ] }, { - "Name": "SetByResourceId", + "Name": "ResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -69171,7 +69068,7 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -69241,29 +69138,31 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkWatcherFlowLogStatus", - "Name": "Get-AzNetworkWatcherFlowLogStatus", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherFlowLogStatusCommand", + "NounName": "AzNetworkVirtualApplianceConnection", + "Name": "Get-AzNetworkVirtualApplianceConnection", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmNetworkVirtualApplianceConnectionCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "ResourceNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", - "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", - "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties", - "Enabled": "System.Boolean", - "StorageId": "System.String", - "TargetResourceId": "System.String", - "RetentionPolicyText": "System.String", - "FormatText": "System.String", - "FlowAnalyticsConfigurationText": "System.String" + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "PropagateStaticRoutes": "System.Boolean", + "EnableInternetSecurity": "System.Boolean", + "BgpPeerAddress": "System.Collections.Generic.IList`1[System.String]", + "Asn": "System.Nullable`1[System.Int64]", + "TunnelIdentifier": "System.Nullable`1[System.Int64]", + "ProvisioningState": "System.String", + "RoutingConfigurationText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -69302,30 +69201,19 @@ ], "Parameters": [ { - "Name": "NetworkWatcher", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "NetworkWatcherName", + "Name": "VirtualApplianceName", "AliasList": [ - "Name" + "ParentNvaName", + "NetworkVirtualApplianceName" ], "Type": { "Namespace": "System", @@ -69335,25 +69223,63 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "VirtualAppliance", + "AliasList": [ + "ParentNva", + "NetworkVirtualAppliance" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "NetworkProfile": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", + "NvaSku": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", + "VirtualApplianceConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "VirtualApplianceSites": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AdditionalNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]", + "InternetIngressPublicIps": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]", + "VirtualApplianceNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", + "BootStrapConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", + "CloudInitConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", + "Tag": "System.Collections.Hashtable", + "VirtualApplianceAsn": "System.Nullable`1[System.Int64]", + "Etag": "System.String", + "CloudInitConfiguration": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "ProvisioningState": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "VirtualApplianceResourceId", + "AliasList": [ + "ParentNvaId", + "NetworkVirtualApplianceId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "TargetResourceId", + "Name": "Name", + "AliasList": [ + "ResourceName", + "NetworkVirtualApplianceConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -69361,15 +69287,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -69393,38 +69310,30 @@ ], "ParameterSets": [ { - "Name": "SetByResource", + "Name": "ResourceNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcher", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "VirtualApplianceName", + "AliasList": [ + "ParentNvaName", + "NetworkVirtualApplianceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -69435,17 +69344,21 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", + "AliasList": [ + "ResourceName", + "NetworkVirtualApplianceConnectionName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -69481,18 +69394,45 @@ ] }, { - "Name": "SetByName", + "Name": "ResourceObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcherName", + "Name": "VirtualAppliance", "AliasList": [ - "Name" + "ParentNva", + "NetworkVirtualAppliance" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "NetworkProfile": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", + "NvaSku": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", + "VirtualApplianceConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "VirtualApplianceSites": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AdditionalNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]", + "InternetIngressPublicIps": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]", + "VirtualApplianceNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", + "BootStrapConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", + "CloudInitConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", + "Tag": "System.Collections.Hashtable", + "VirtualApplianceAsn": "System.Nullable`1[System.Int64]", + "Etag": "System.String", + "CloudInitConfiguration": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "ProvisioningState": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, @@ -69503,22 +69443,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "Name", + "AliasList": [ + "ResourceName", + "NetworkVirtualApplianceConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -69526,21 +69455,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -69575,26 +69489,34 @@ ] }, { - "Name": "SetByLocation", + "Name": "ResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "VirtualApplianceResourceId", + "AliasList": [ + "ParentNvaId", + "NetworkVirtualApplianceId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "Name", + "AliasList": [ + "ResourceName", + "NetworkVirtualApplianceConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -69602,21 +69524,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -69655,7 +69562,11 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "Name", + "AliasList": [ + "ResourceName", + "NetworkVirtualApplianceConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -69663,21 +69574,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -69715,23 +69611,26 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkWatcherNextHop", - "Name": "Get-AzNetworkWatcherNextHop", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherNextHopCommand", + "NounName": "AzNetworkVirtualApplianceSku", + "Name": "Get-AzNetworkVirtualApplianceSku", + "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualApplianceSkuCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSku", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NextHopType": "System.String", - "NextHopIpAddress": "System.String", - "RouteTableId": "System.String" + "AvailableScaleUnits": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances]", + "AvailableVersions": "System.Collections.Generic.IList`1[System.String]", + "Vendor": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -69770,40 +69669,7 @@ ], "Parameters": [ { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkWatcherName", - "AliasList": [ - "Name" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", + "Name": "SkuName", "Type": { "Namespace": "System", "Name": "System.String", @@ -69812,159 +69678,33 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false - }, - { - "Name": "TargetVirtualMachineId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, + } + ], + "ParameterSets": [ { - "Name": "DestinationIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SourceIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "TargetNetworkInterfaceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "SetByResource", + "Name": "ResourceName", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TargetVirtualMachineId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DestinationIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TargetNetworkInterfaceId", + "Name": "SkuName", "Type": { "Namespace": "System", "Name": "System.String", @@ -69977,21 +69717,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -70021,74 +69746,162 @@ ] }, { - "Name": "SetByName", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcherName", + "Name": "DefaultProfile", "AliasList": [ - "Name" + "AzContext", + "AzureRmContext", + "AzureCredential" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzNetworkWatcher", + "Name": "Get-AzNetworkWatcher", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TargetVirtualMachineId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DestinationIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "List", + "Parameters": [ { "ParameterMetadata": { - "Name": "SourceIPAddress", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -70096,14 +69909,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetNetworkInterfaceId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -70116,21 +69929,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -70177,81 +69975,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "TargetVirtualMachineId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DestinationIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TargetNetworkInterfaceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -70283,81 +70006,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "TargetVirtualMachineId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DestinationIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TargetNetworkInterfaceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -70390,54 +70038,95 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkWatcherPacketCapture", - "Name": "Get-AzNetworkWatcherPacketCapture", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherPacketCaptureCommand", + "NounName": "AzNetworkWatcherConnectionMonitor", + "Name": "Get-AzNetworkWatcherConnectionMonitor", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherConnectionMonitorCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "SetByName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Scope": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", - "StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", - "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", - "PacketCaptureError": "System.Collections.Generic.List`1[System.String]", - "TargetType": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType]", - "CaptureStartTime": "System.Nullable`1[System.DateTime]", - "BytesToCapturePerPacket": "System.Nullable`1[System.Int32]", - "TimeLimitInSeconds": "System.Nullable`1[System.Int32]", - "TotalBytesPerSession": "System.Nullable`1[System.UInt32]", - "ProvisioningState": "System.String", + "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", + "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "AutoStart": "System.Nullable`1[System.Boolean]", + "StartTime": "System.Nullable`1[System.DateTime]", + "MonitoringIntervalInSeconds": "System.Nullable`1[System.Int32]", "Name": "System.String", - "PacketCaptureErrorText": "System.String", - "StorageLocationText": "System.String", - "ScopeText": "System.String", - "PacketCaptureStatus": "System.String", - "StopReason": "System.String", + "TagsText": "System.String", + "ConnectionMonitorType": "System.String", + "Type": "System.String", "Etag": "System.String", - "Target": "System.String", - "FiltersText": "System.String", + "ProvisioningState": "System.String", + "DestinationText": "System.String", + "SourceText": "System.String", + "MonitoringStatus": "System.String", + "Location": "System.String", "Id": "System.String" }, "Methods": [ { - "Name": "ShouldSerializePacketCaptureError", - "ReturnType": "System.Boolean" + "Name": "GetType", + "ReturnType": "System.Type" }, { - "Name": "ShouldSerializeStorageLocation", - "ReturnType": "System.Boolean" + "Name": "ToString", + "ReturnType": "System.String" }, { - "Name": "ShouldSerializeFilters", + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], "ReturnType": "System.Boolean" }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + }, + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", + "TestGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", + "StartTime": "System.Nullable`1[System.DateTime]", + "Notes": "System.String", + "TestGroupsText": "System.String", + "OutputsText": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Location": "System.String", + "ConnectionMonitorType": "System.String", + "TagsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ { "Name": "GetType", "ReturnType": "System.Type" @@ -70478,7 +70167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -70496,9 +70185,6 @@ }, { "Name": "NetworkWatcherName", - "AliasList": [ - "Name" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -70525,22 +70211,25 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PacketCaptureName", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "Name", + "AliasList": [ + "ConnectionMonitorName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -70573,7 +70262,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -70596,7 +70285,10 @@ }, { "ParameterMetadata": { - "Name": "PacketCaptureName", + "Name": "Name", + "AliasList": [ + "ConnectionMonitorName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -70609,21 +70301,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -70658,9 +70335,6 @@ { "ParameterMetadata": { "Name": "NetworkWatcherName", - "AliasList": [ - "Name" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -70670,7 +70344,7 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -70686,11 +70360,14 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PacketCaptureName", + "Name": "Name", + "AliasList": [ + "ConnectionMonitorName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -70703,21 +70380,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -70766,7 +70428,10 @@ }, { "ParameterMetadata": { - "Name": "PacketCaptureName", + "Name": "Name", + "AliasList": [ + "ConnectionMonitorName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -70779,21 +70444,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -70823,30 +70473,41 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "PacketCaptureName", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -70854,7 +70515,12 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -70887,9 +70553,9 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkWatcherReachabilityProvidersList", - "Name": "Get-AzNetworkWatcherReachabilityProvidersList", - "ClassName": "Microsoft.Azure.Commands.Network.Automation.GetAzureRmNetworkWatcherAvailableProviders", + "NounName": "AzNetworkWatcherConnectionMonitorReport", + "Name": "Get-AzNetworkWatcherConnectionMonitorReport", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherConnectionMonitorReportCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -70898,11 +70564,11 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorQueryResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Countries": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]", - "CountriesText": "System.String" + "States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]", + "StatesText": "System.String" }, "Methods": [ { @@ -70945,7 +70611,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -70963,10 +70629,6 @@ }, { "Name": "NetworkWatcherName", - "AliasList": [ - "ResourceName", - "Name" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -70984,7 +70646,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "NetworkWatcherLocation", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -71002,41 +70664,37 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Country", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "State", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "StartTime": "System.Nullable`1[System.DateTime]", + "ProvisioningState": "System.String", + "Type": "System.String", + "Location": "System.String", + "ConnectionMonitorType": "System.String", + "TagsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "City", + "Name": "Name", + "AliasList": [ + "ConnectionMonitorName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "AsJob", @@ -71078,7 +70736,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -71101,61 +70759,18 @@ }, { "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Country", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "City", + "Name": "Name", + "AliasList": [ + "ConnectionMonitorName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -71209,10 +70824,6 @@ { "ParameterMetadata": { "Name": "NetworkWatcherName", - "AliasList": [ - "ResourceName", - "Name" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -71242,61 +70853,18 @@ }, { "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Country", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "City", + "Name": "Name", + "AliasList": [ + "ConnectionMonitorName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -71349,7 +70917,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcherLocation", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -71364,27 +70932,29 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", + "AliasList": [ + "ConnectionMonitorName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Country", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -71395,11 +70965,22 @@ }, { "ParameterMetadata": { - "Name": "State", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -71407,10 +70988,15 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "City", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -71418,10 +71004,10 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -71467,31 +71053,42 @@ ] }, { - "Name": "SetByResourceId", + "Name": "SetByInputObject", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "StartTime": "System.Nullable`1[System.DateTime]", + "ProvisioningState": "System.String", + "Type": "System.String", + "Location": "System.String", + "ConnectionMonitorType": "System.String", + "TagsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -71502,11 +71099,22 @@ }, { "ParameterMetadata": { - "Name": "Country", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -71514,151 +71122,19 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "State", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "City", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Country", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "City", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -71699,9 +71175,9 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkWatcherReachabilityReport", - "Name": "Get-AzNetworkWatcherReachabilityReport", - "ClassName": "Microsoft.Azure.Commands.Network.Automation.GetAzureRMNetworkWatcherReachabilityReport", + "NounName": "AzNetworkWatcherFlowLog", + "Name": "Get-AzNetworkWatcherFlowLog", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzNetworkWatcherFlowLogCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -71710,14 +71186,32 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ProviderLocation": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation", - "ReachabilityReport": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]", - "AggregationLevel": "System.String", - "ProviderLocationText": "System.String", - "ReachabilityReportText": "System.String" + "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", + "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties", + "Tag": "System.Collections.Hashtable", + "Enabled": "System.Nullable`1[System.Boolean]", + "ProvisioningState": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "FormatText": "System.String", + "IdentityText": "System.String", + "Etag": "System.String", + "RetentionPolicyText": "System.String", + "EnabledFilteringCriteria": "System.String", + "StorageId": "System.String", + "TargetResourceGuid": "System.String", + "TargetResourceId": "System.String", + "FlowAnalyticsConfigurationText": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -71760,7 +71254,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -71778,10 +71272,6 @@ }, { "Name": "NetworkWatcherName", - "AliasList": [ - "ResourceName", - "Name" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -71798,64 +71288,8 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkWatcherLocation", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Provider", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "StartTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EndTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Country", "Type": { "Namespace": "System", "Name": "System.String", @@ -71864,7 +71298,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "State", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -71873,22 +71307,16 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "City", + "Name": "Name", + "AliasList": [ + "FlowLogName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -71921,7 +71349,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -71944,120 +71372,16 @@ }, { "ParameterMetadata": { - "Name": "Provider", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StartTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EndTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Country", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "City", + "Name": "Name", + "AliasList": [ + "FlowLogName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -72098,10 +71422,6 @@ { "ParameterMetadata": { "Name": "NetworkWatcherName", - "AliasList": [ - "ResourceName", - "Name" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -72131,120 +71451,16 @@ }, { "ParameterMetadata": { - "Name": "Provider", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StartTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EndTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Country", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "City", + "Name": "Name", + "AliasList": [ + "FlowLogName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -72280,103 +71496,11 @@ ] }, { - "Name": "SetByResourceId", + "Name": "SetByLocation", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Provider", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StartTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EndTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Country", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", @@ -72384,35 +71508,23 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "City", + "Name": "Name", + "AliasList": [ + "FlowLogName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -72448,11 +71560,11 @@ ] }, { - "Name": "SetByLocation", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcherLocation", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -72463,129 +71575,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Provider", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StartTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EndTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Country", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "City", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -72618,128 +71608,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Provider", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StartTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EndTime", - "Type": { - "Namespace": "System", - "Name": "System.DateTime", - "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Country", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "City", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -72772,9 +71640,9 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkWatcherSecurityGroupView", - "Name": "Get-AzNetworkWatcherSecurityGroupView", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNeyworkWatcherSecurityGroupViewCommand", + "NounName": "AzNetworkWatcherFlowLogStatus", + "Name": "Get-AzNetworkWatcherFlowLogStatus", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherFlowLogStatusCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -72783,11 +71651,18 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]", - "NetworkInterfacesText": "System.String" + "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", + "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", + "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties", + "Enabled": "System.Boolean", + "StorageId": "System.String", + "TargetResourceId": "System.String", + "RetentionPolicyText": "System.String", + "FormatText": "System.String", + "FlowAnalyticsConfigurationText": "System.String" }, "Methods": [ { @@ -72830,7 +71705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -72877,7 +71752,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "TargetVirtualMachineId", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -72925,7 +71800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -72948,7 +71823,7 @@ }, { "ParameterMetadata": { - "Name": "TargetVirtualMachineId", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -73042,7 +71917,7 @@ }, { "ParameterMetadata": { - "Name": "TargetVirtualMachineId", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -73118,7 +71993,7 @@ }, { "ParameterMetadata": { - "Name": "TargetVirtualMachineId", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -73179,7 +72054,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "TargetVirtualMachineId", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -73239,9 +72114,9 @@ }, { "VerbName": "Get", - "NounName": "AzNetworkWatcherTopology", - "Name": "Get-AzNetworkWatcherTopology", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherTopologyCommand", + "NounName": "AzNetworkWatcherNextHop", + "Name": "Get-AzNetworkWatcherNextHop", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherNextHopCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -73250,14 +72125,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTopology", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopology, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNextHopResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Resources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]", - "CreatedDateTime": "System.Nullable`1[System.DateTime]", - "LastModified": "System.Nullable`1[System.DateTime]", - "Id": "System.String", - "ResourcesText": "System.String" + "NextHopType": "System.String", + "NextHopIpAddress": "System.String", + "RouteTableId": "System.String" }, "Methods": [ { @@ -73300,7 +72173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -73347,7 +72220,34 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "TargetResourceGroupName", + "Name": "TargetVirtualMachineId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DestinationIPAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SourceIPAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TargetNetworkInterfaceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -73355,6 +72255,15 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -73386,7 +72295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -73409,7 +72318,7 @@ }, { "ParameterMetadata": { - "Name": "TargetResourceGroupName", + "Name": "TargetVirtualMachineId", "Type": { "Namespace": "System", "Name": "System.String", @@ -73424,41 +72333,22 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DestinationIPAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByName", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "NetworkWatcherName", - "AliasList": [ - "Name" - ], + "Name": "SourceIPAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -73468,12 +72358,12 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TargetNetworkInterfaceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -73481,25 +72371,25 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetResourceGroupName", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -73530,26 +72420,29 @@ ] }, { - "Name": "SetByLocation", + "Name": "SetByName", "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "NetworkWatcherName", + "AliasList": [ + "Name" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetResourceGroupName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -73564,38 +72457,22 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "TargetVirtualMachineId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "TargetResourceGroupName", + "Name": "DestinationIPAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -73606,235 +72483,52 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "SourceIPAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzNetworkWatcherTroubleshootingResult", - "Name": "Get-AzNetworkWatcherTroubleshootingResult", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherTroubleshootingResult", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]", - "Tag": "System.Collections.Hashtable", - "EndTime": "System.Nullable`1[System.DateTime]", - "StartTime": "System.Nullable`1[System.DateTime]", - "Code": "System.String", - "ResultsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "ShouldSerializeResults", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkWatcherName", - "AliasList": [ - "Name" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TargetResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "SetByResource", - "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcher", + "Name": "TargetNetworkInterfaceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -73865,29 +72559,26 @@ ] }, { - "Name": "SetByName", + "Name": "SetByLocation", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcherName", - "AliasList": [ - "Name" - ], + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TargetVirtualMachineId", "Type": { "Namespace": "System", "Name": "System.String", @@ -73902,7 +72593,7 @@ }, { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "DestinationIPAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -73913,68 +72604,52 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "SourceIPAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByLocation", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Location", + "Name": "TargetNetworkInterfaceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -74009,7 +72684,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "TargetVirtualMachineId", "Type": { "Namespace": "System", "Name": "System.String", @@ -74024,158 +72699,22 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DestinationIPAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzP2sVpnGateway", - "Name": "Get-AzP2sVpnGateway", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ListBySubscriptionId", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "P2SConnectionConfigurationsText": "System.String", - "CustomDnsServersText": "System.String", - "Etag": "System.String", - "VpnClientConnectionHealthText": "System.String", - "ProvisioningState": "System.String", - "VpnServerConfigurationLocation": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName", - "P2SVpnGatewayName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ListByResourceGroupName", - "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "SourceIPAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -74183,18 +72722,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "P2SVpnGatewayName" - ], + "Name": "TargetNetworkInterfaceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -74209,22 +72744,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -74232,12 +72756,7 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -74270,43 +72789,54 @@ }, { "VerbName": "Get", - "NounName": "AzP2sVpnGatewayConnectionHealth", - "Name": "Get-AzP2sVpnGatewayConnectionHealth", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayConnectionHealthCommand", + "NounName": "AzNetworkWatcherPacketCapture", + "Name": "Get-AzNetworkWatcherPacketCapture", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherPacketCaptureCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByP2SVpnGatewayName", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGetPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Scope": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", + "StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", + "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", + "PacketCaptureError": "System.Collections.Generic.List`1[System.String]", + "TargetType": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType]", + "CaptureStartTime": "System.Nullable`1[System.DateTime]", + "BytesToCapturePerPacket": "System.Nullable`1[System.Int32]", + "TimeLimitInSeconds": "System.Nullable`1[System.Int32]", + "TotalBytesPerSession": "System.Nullable`1[System.UInt32]", + "ProvisioningState": "System.String", "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "P2SConnectionConfigurationsText": "System.String", - "CustomDnsServersText": "System.String", + "PacketCaptureErrorText": "System.String", + "StorageLocationText": "System.String", + "ScopeText": "System.String", + "PacketCaptureStatus": "System.String", + "StopReason": "System.String", "Etag": "System.String", - "VpnClientConnectionHealthText": "System.String", - "ProvisioningState": "System.String", - "VpnServerConfigurationLocation": "System.String", - "ResourceGroupName": "System.String", + "Target": "System.String", + "FiltersText": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializePacketCaptureError", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeStorageLocation", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeFilters", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -74343,9 +72873,30 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkWatcherName", "AliasList": [ - "ResourceName" + "Name" ], "Type": { "Namespace": "System", @@ -74364,42 +72915,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", - "AliasList": [ - "P2SVpnGateway" - ], + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "P2SConnectionConfigurationsText": "System.String", - "CustomDnsServersText": "System.String", - "Etag": "System.String", - "VpnClientConnectionHealthText": "System.String", - "ProvisioningState": "System.String", - "VpnServerConfigurationLocation": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceId", + "Name": "PacketCaptureName", "Type": { "Namespace": "System", "Name": "System.String", @@ -74407,6 +72932,15 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -74430,14 +72964,38 @@ ], "ParameterSets": [ { - "Name": "ByP2SVpnGatewayName", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCaptureName", "Type": { "Namespace": "System", "Name": "System.String", @@ -74448,22 +73006,22 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -74494,41 +73052,18 @@ ] }, { - "Name": "ByP2SVpnGatewayObject", + "Name": "SetByName", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "NetworkWatcherName", "AliasList": [ - "P2SVpnGateway" + "Name" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "P2SConnectionConfigurationsText": "System.String", - "CustomDnsServersText": "System.String", - "Etag": "System.String", - "VpnClientConnectionHealthText": "System.String", - "ProvisioningState": "System.String", - "VpnServerConfigurationLocation": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -74537,6 +73072,51 @@ "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PacketCaptureName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -74566,22 +73146,52 @@ ] }, { - "Name": "ByP2SVpnGatewayResourceId", + "Name": "SetByLocation", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCaptureName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -74614,6 +73224,36 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "PacketCaptureName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -74646,21 +73286,22 @@ }, { "VerbName": "Get", - "NounName": "AzP2sVpnGatewayDetailedConnectionHealth", - "Name": "Get-AzP2sVpnGatewayDetailedConnectionHealth", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayDetailedConnectionHealthCommand", + "NounName": "AzNetworkWatcherReachabilityProvidersList", + "Name": "Get-AzNetworkWatcherReachabilityProvidersList", + "ClassName": "Microsoft.Azure.Commands.Network.Automation.GetAzureRmNetworkWatcherAvailableProviders", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByP2SVpnGatewayName", + "DefaultParameterSetName": "SetByName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SasUrl": "System.String" + "Countries": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]", + "CountriesText": "System.String" }, "Methods": [ { @@ -74699,9 +73340,31 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkWatcherName", "AliasList": [ - "ResourceName" + "ResourceName", + "Name" ], "Type": { "Namespace": "System", @@ -74720,39 +73383,13 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", - "AliasList": [ - "P2SVpnGateway" - ], + "Name": "NetworkWatcherLocation", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "P2SConnectionConfigurationsText": "System.String", - "CustomDnsServersText": "System.String", - "Etag": "System.String", - "VpnClientConnectionHealthText": "System.String", - "ProvisioningState": "System.String", - "VpnServerConfigurationLocation": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "ResourceId", @@ -74761,24 +73398,51 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "OutputBlobSasUrl", + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Country", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "VpnUserNamesFilter", + "Name": "State", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "City", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -74805,20 +73469,60 @@ ], "ParameterSets": [ { - "Name": "ByP2SVpnGatewayName", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Country", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -74827,42 +73531,41 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "OutputBlobSasUrl", + "Name": "City", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnUserNamesFilter", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -74900,52 +73603,30 @@ ] }, { - "Name": "ByP2SVpnGatewayObject", + "Name": "SetByName", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "NetworkWatcherName", "AliasList": [ - "P2SVpnGateway" + "ResourceName", + "Name" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "P2SConnectionConfigurationsText": "System.String", - "CustomDnsServersText": "System.String", - "Etag": "System.String", - "VpnClientConnectionHealthText": "System.String", - "ProvisioningState": "System.String", - "VpnServerConfigurationLocation": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "OutputBlobSasUrl", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -74956,11 +73637,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnUserNamesFilter", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -74976,22 +73657,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Country", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -74999,50 +73669,44 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByP2SVpnGatewayResourceId", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "OutputBlobSasUrl", + "Name": "City", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnUserNamesFilter", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -75080,26 +73744,26 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByLocation", "Parameters": [ { "ParameterMetadata": { - "Name": "OutputBlobSasUrl", + "Name": "NetworkWatcherLocation", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnUserNamesFilter", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -75115,22 +73779,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Country", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -75138,180 +73791,16 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzP2sVpnGatewayVpnProfile", - "Name": "Get-AzP2sVpnGatewayVpnProfile", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayVpnProfileCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByP2SVpnGatewayName", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ProfileUrl": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InputObject", - "AliasList": [ - "P2SVpnGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "P2SConnectionConfigurationsText": "System.String", - "CustomDnsServersText": "System.String", - "Etag": "System.String", - "VpnClientConnectionHealthText": "System.String", - "ProvisioningState": "System.String", - "VpnServerConfigurationLocation": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AuthenticationMethod", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ByP2SVpnGatewayName", - "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -75320,31 +73809,27 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "City", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AuthenticationMethod", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -75381,61 +73866,32 @@ ] }, { - "Name": "ByP2SVpnGatewayObject", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "P2SVpnGateway" - ], + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "P2SConnectionConfigurationsText": "System.String", - "CustomDnsServersText": "System.String", - "Etag": "System.String", - "VpnClientConnectionHealthText": "System.String", - "ProvisioningState": "System.String", - "VpnServerConfigurationLocation": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AuthenticationMethod", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -75445,22 +73901,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Country", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -75468,39 +73913,45 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByP2SVpnGatewayResourceId", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AuthenticationMethod", + "Name": "City", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -75541,16 +73992,73 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "AuthenticationMethod", + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Country", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "State", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "City", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -75590,26 +74098,25 @@ }, { "VerbName": "Get", - "NounName": "AzPrivateDnsZoneGroup", - "Name": "Get-AzPrivateDnsZoneGroup", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePrivateDnsZoneGroupCommand", + "NounName": "AzNetworkWatcherReachabilityReport", + "Name": "Get-AzNetworkWatcherReachabilityReport", + "ClassName": "Microsoft.Azure.Commands.Network.Automation.GetAzureRMNetworkWatcherReachabilityReport", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "List", + "DefaultParameterSetName": "SetByName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReport, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PrivateDnsZoneConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "ProvisioningState": "System.String", - "PrivateDnsZoneConfigsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "ProviderLocation": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation", + "ReachabilityReport": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]", + "AggregationLevel": "System.String", + "ProviderLocationText": "System.String", + "ReachabilityReportText": "System.String" }, "Methods": [ { @@ -75648,7 +74155,32 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkWatcherName", + "AliasList": [ + "ResourceName", + "Name" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -75657,7 +74189,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateEndpointName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -75666,16 +74198,96 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "PrivateDnsZoneGroupName" - ], + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkWatcherLocation", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Provider", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "StartTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EndTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Country", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "State", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "City", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -75700,135 +74312,149 @@ ], "ParameterSets": [ { - "Name": "List", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "NetworkWatcher", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Provider", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateEndpointName", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StartTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "EndTime", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "GetByName", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Country", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateEndpointName", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "PrivateDnsZoneGroupName" - ], + "Name": "City", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -75836,12 +74462,7 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -75869,161 +74490,16 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzPrivateEndpoint", - "Name": "Get-AzPrivateEndpoint", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePrivateEndpointCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "NoExpand", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "ApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "CustomDnsConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration]", - "PrivateLinkServiceConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]", - "ManualPrivateLinkServiceConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "IpConfigurationsText": "System.String", - "ManualPrivateLinkServiceConnectionsText": "System.String", - "ExtendedLocationText": "System.String", - "CustomDnsConfigsText": "System.String", - "Etag": "System.String", - "PrivateLinkServiceConnectionsText": "System.String", - "NetworkInterfacesText": "System.String", - "SubnetText": "System.String", - "CustomNetworkInterfaceName": "System.String", - "ApplicationSecurityGroupsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "ShouldSerializeNetworkInterfaces", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializePrivateLinkServiceConnections", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeManualPrivateLinkServiceConnections", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ExpandResource", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "NoExpand", + "Name": "SetByName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "NetworkWatcherName", "AliasList": [ - "ResourceName" + "ResourceName", + "Name" ], "Type": { "Namespace": "System", @@ -76032,10 +74508,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -76047,29 +74523,35 @@ }, "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Provider", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -76077,59 +74559,96 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "Expand", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "StartTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EndTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Country", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ExpandResource", + "Name": "City", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -76160,26 +74679,31 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Provider", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -76187,186 +74711,71 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [ - "Get-AzInterfaceEndpoint" - ] - }, - { - "VerbName": "Get", - "NounName": "AzPrivateEndpointConnection", - "Name": "Get-AzPrivateEndpointConnection", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePrivateEndpointConnection", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByResourceId", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", - "ProvisioningState": "System.String", - "GroupId": "System.String", - "LinkIdentifier": "System.String", - "PrivateEndpointText": "System.String", - "PrivateLinkServiceConnectionStateText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StartTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EndTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "PrivateLinkResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ServiceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateLinkResourceType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ByPrivateLinkResourceId", - "Parameters": [ + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "PrivateLinkResourceId", + "Name": "Country", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", @@ -76377,7 +74786,37 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "City", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -76408,11 +74847,11 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByLocation", "Parameters": [ { "ParameterMetadata": { - "Name": "Description", + "Name": "NetworkWatcherLocation", "Type": { "Namespace": "System", "Name": "System.String", @@ -76420,29 +74859,35 @@ }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Provider", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -76450,30 +74895,55 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByResourceId", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "StartTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EndTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Country", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", @@ -76484,7 +74954,37 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "City", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -76515,59 +75015,88 @@ ] }, { - "Name": "ByResource", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "Provider", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StartTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ServiceName", + "Name": "EndTime", + "Type": { + "Namespace": "System", + "Name": "System.DateTime", + "AssemblyQualifiedName": "System.DateTime, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Country", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateLinkResourceType", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", @@ -76575,14 +75104,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "City", "Type": { "Namespace": "System", "Name": "System.String", @@ -76593,7 +75122,22 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -76627,28 +75171,22 @@ }, { "VerbName": "Get", - "NounName": "AzPrivateLinkResource", - "Name": "Get-AzPrivateLinkResource", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePrivateLinkResourceCommand", + "NounName": "AzNetworkWatcherSecurityGroupView", + "Name": "Get-AzNetworkWatcherSecurityGroupView", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNeyworkWatcherSecurityGroupViewCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByPrivateLinkResourceId", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupViewResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RequiredMembers": "System.Collections.Generic.List`1[System.String]", - "RequiredZoneNames": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "Type": "System.String", - "Id": "System.String", - "GroupId": "System.String", - "RequiredMembersText": "System.String", - "RequiredZoneNamesText": "System.String" + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]", + "NetworkInterfacesText": "System.String" }, "Methods": [ { @@ -76687,9 +75225,30 @@ ], "Parameters": [ { - "Name": "PrivateLinkResourceId", + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkWatcherName", "AliasList": [ - "PrivateLinkServiceId" + "Name" ], "Type": { "Namespace": "System", @@ -76708,24 +75267,30 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ServiceName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "GroupName" - ], + "Name": "TargetVirtualMachineId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, { @@ -76747,27 +75312,42 @@ } }, "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateLinkResourceType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "ByPrivateLinkResourceId", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateLinkResourceId", - "AliasList": [ - "PrivateLinkServiceId" - ], + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetVirtualMachineId", "Type": { "Namespace": "System", "Name": "System.String", @@ -76782,21 +75362,18 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "GroupName" - ], + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -76827,11 +75404,14 @@ ] }, { - "Name": "ByResource", + "Name": "SetByName", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "NetworkWatcherName", + "AliasList": [ + "Name" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -76841,12 +75421,12 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ServiceName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -76861,25 +75441,68 @@ }, { "ParameterMetadata": { - "Name": "PrivateLinkResourceType", + "Name": "TargetVirtualMachineId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DefaultProfile", "AliasList": [ - "GroupName" + "AzContext", + "AzureRmContext", + "AzureCredential" ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByLocation", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -76887,11 +75510,41 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetVirtualMachineId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -76925,21 +75578,33 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "GroupName" - ], + "Name": "TargetVirtualMachineId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -76973,48 +75638,25 @@ }, { "VerbName": "Get", - "NounName": "AzPrivateLinkService", - "Name": "Get-AzPrivateLinkService", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePrivateLinkService", + "NounName": "AzNetworkWatcherTopology", + "Name": "Get-AzNetworkWatcherTopology", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherTopologyCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "NoExpand", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTopology", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopology, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", - "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", - "LoadBalancerFrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableProxyProtocol": "System.Nullable`1[System.Boolean]", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "AutoApprovalText": "System.String", - "IpConfigurationsText": "System.String", - "PrivateEndpointConnectionsText": "System.String", - "NetworkInterfacesText": "System.String", - "Etag": "System.String", - "LoadBalancerFrontendIpConfigurationsText": "System.String", - "DestinationIPAddress": "System.String", - "Alias": "System.String", - "ProvisioningState": "System.String", - "VisibilityText": "System.String", + "Resources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]", + "CreatedDateTime": "System.Nullable`1[System.DateTime]", + "LastModified": "System.Nullable`1[System.DateTime]", "Id": "System.String", - "Fqdns": "System.String[]" + "ResourcesText": "System.String" }, "Methods": [ { @@ -77053,9 +75695,30 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkWatcherName", "AliasList": [ - "ResourceName" + "Name" ], "Type": { "Namespace": "System", @@ -77074,7 +75737,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ExpandResource", + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TargetResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -77105,29 +75777,38 @@ ], "ParameterSets": [ { - "Name": "NoExpand", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "NetworkWatcher", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TargetResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -77135,7 +75816,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -77169,13 +75850,13 @@ ] }, { - "Name": "Expand", + "Name": "SetByName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "NetworkWatcherName", "AliasList": [ - "ResourceName" + "Name" ], "Type": { "Namespace": "System", @@ -77186,12 +75867,27 @@ }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TargetResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -77206,7 +75902,53 @@ }, { "ParameterMetadata": { - "Name": "ExpandResource", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByLocation", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -77250,6 +75992,21 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "TargetResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -77282,51 +76039,40 @@ }, { "VerbName": "Get", - "NounName": "AzPublicIpAddress", - "Name": "Get-AzPublicIpAddress", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePublicIpAddressCommand", + "NounName": "AzNetworkWatcherTroubleshootingResult", + "Name": "Get-AzNetworkWatcherTroubleshootingResult", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureNetworkWatcherTroubleshootingResult", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "NoExpandStandAloneIp", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]", "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", + "EndTime": "System.Nullable`1[System.DateTime]", + "StartTime": "System.Nullable`1[System.DateTime]", + "Code": "System.String", + "ResultsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeResults", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -77363,37 +76109,31 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualMachineScaleSetName", + "Name": "NetworkWatcher", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "VirtualMachineIndex", + "Name": "NetworkWatcherName", + "AliasList": [ + "Name" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -77402,7 +76142,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "NetworkInterfaceName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -77411,16 +76151,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "IpConfigurationName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ExpandResource", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -77451,29 +76191,38 @@ ], "ParameterSets": [ { - "Name": "NoExpandStandAloneIp", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "NetworkWatcher", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -77481,7 +76230,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -77515,13 +76264,13 @@ ] }, { - "Name": "ExpandStandAloneIp", + "Name": "SetByName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "NetworkWatcherName", "AliasList": [ - "ResourceName" + "Name" ], "Type": { "Namespace": "System", @@ -77532,8 +76281,8 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -77552,7 +76301,7 @@ }, { "ParameterMetadata": { - "Name": "ExpandResource", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -77594,89 +76343,26 @@ ] }, { - "Name": "NoExpandScaleSetIp", + "Name": "SetByLocation", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "VirtualMachineScaleSetName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "VirtualMachineIndex", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkInterfaceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpConfigurationName", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -77684,7 +76370,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -77718,14 +76404,11 @@ ] }, { - "Name": "ExpandScaleSetIp", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -77740,67 +76423,158 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzP2sVpnGateway", + "Name": "Get-AzP2sVpnGateway", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ListBySubscriptionId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", + "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", + "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "P2SConnectionConfigurationsText": "System.String", + "CustomDnsServersText": "System.String", + "Etag": "System.String", + "VpnClientConnectionHealthText": "System.String", + "ProvisioningState": "System.String", + "VpnServerConfigurationLocation": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "VirtualMachineScaleSetName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "VirtualMachineIndex", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkInterfaceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "P2SVpnGatewayName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ListByResourceGroupName", + "Parameters": [ { "ParameterMetadata": { - "Name": "IpConfigurationName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -77808,14 +76582,18 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ExpandResource", + "Name": "Name", + "AliasList": [ + "ResourceName", + "P2SVpnGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -77823,10 +76601,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -77891,44 +76669,41 @@ }, { "VerbName": "Get", - "NounName": "AzPublicIpPrefix", - "Name": "Get-AzPublicIpPrefix", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePublicIpPrefixCommand", + "NounName": "AzP2sVpnGatewayConnectionHealth", + "Name": "Get-AzP2sVpnGatewayConnectionHealth", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayConnectionHealthCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ListParameterSet", + "DefaultParameterSetName": "ByP2SVpnGatewayName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", - "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", + "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", + "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", "Name": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "CustomIpPrefixText": "System.String", - "IpTagsText": "System.String", + "P2SConnectionConfigurationsText": "System.String", + "CustomDnsServersText": "System.String", "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "IPPrefix": "System.String", + "VpnClientConnectionHealthText": "System.String", "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "SkuText": "System.String", - "Id": "System.String", - "PrefixLength": "System.UInt16" + "VpnServerConfigurationLocation": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -77987,6 +76762,41 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "InputObject", + "AliasList": [ + "P2SVpnGateway" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", + "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", + "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "P2SConnectionConfigurationsText": "System.String", + "CustomDnsServersText": "System.String", + "Etag": "System.String", + "VpnClientConnectionHealthText": "System.String", + "ProvisioningState": "System.String", + "VpnServerConfigurationLocation": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "ResourceId", "Type": { @@ -78019,7 +76829,7 @@ ], "ParameterSets": [ { - "Name": "ListParameterSet", + "Name": "ByP2SVpnGatewayName", "Parameters": [ { "ParameterMetadata": { @@ -78049,7 +76859,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -78083,7 +76893,79 @@ ] }, { - "Name": "GetByResourceIdParameterSet", + "Name": "ByP2SVpnGatewayObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [ + "P2SVpnGateway" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", + "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", + "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "P2SConnectionConfigurationsText": "System.String", + "CustomDnsServersText": "System.String", + "Etag": "System.String", + "VpnClientConnectionHealthText": "System.String", + "ProvisioningState": "System.String", + "VpnServerConfigurationLocation": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByP2SVpnGatewayResourceId", "Parameters": [ { "ParameterMetadata": { @@ -78163,27 +77045,21 @@ }, { "VerbName": "Get", - "NounName": "AzRouteConfig", - "Name": "Get-AzRouteConfig", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRouteConfigCommand", + "NounName": "AzP2sVpnGatewayDetailedConnectionHealth", + "Name": "Get-AzP2sVpnGatewayDetailedConnectionHealth", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayDetailedConnectionHealthCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByP2SVpnGatewayName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressPrefix": "System.String", - "NextHopType": "System.String", - "NextHopIpAddress": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "SasUrl": "System.String" }, "Methods": [ { @@ -78222,38 +77098,87 @@ ], "Parameters": [ { - "Name": "RouteTable", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "AliasList": [ + "P2SVpnGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DisableBgpRoutePropagation": "System.Boolean", - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", + "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", + "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RoutesText": "System.String", - "SubnetsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "VpnGatewayScaleUnit": "System.Int32", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "P2SConnectionConfigurationsText": "System.String", + "CustomDnsServersText": "System.String", "Etag": "System.String", + "VpnClientConnectionHealthText": "System.String", + "ProvisioningState": "System.String", + "VpnServerConfigurationLocation": "System.String", + "ResourceGroupName": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "OutputBlobSasUrl", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnUserNamesFilter", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, "ValidateNotNullOrEmpty": false }, { @@ -78279,48 +77204,65 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByP2SVpnGatewayName", "Parameters": [ { "ParameterMetadata": { - "Name": "RouteTable", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisableBgpRoutePropagation": "System.Boolean", - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RoutesText": "System.String", - "SubnetsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "OutputBlobSasUrl", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VpnUserNamesFilter", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -78355,145 +77297,54 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzRouteFilter", - "Name": "Get-AzRouteFilter", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RulesText": "System.String", - "PeeringsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "ShouldSerializePeerings", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ExpandResource", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "NoExpand", + "Name": "ByP2SVpnGatewayObject", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "InputObject", "AliasList": [ - "ResourceName" + "P2SVpnGateway" ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", + "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", + "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "P2SConnectionConfigurationsText": "System.String", + "CustomDnsServersText": "System.String", + "Etag": "System.String", + "VpnClientConnectionHealthText": "System.String", + "ProvisioningState": "System.String", + "VpnServerConfigurationLocation": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OutputBlobSasUrl", "Type": { "Namespace": "System", "Name": "System.String", @@ -78501,25 +77352,26 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VpnUserNamesFilter", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -78550,14 +77402,11 @@ ] }, { - "Name": "Expand", + "Name": "ByP2SVpnGatewayResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -78572,7 +77421,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "OutputBlobSasUrl", "Type": { "Namespace": "System", "Name": "System.String", @@ -78587,18 +77436,19 @@ }, { "ParameterMetadata": { - "Name": "ExpandResource", + "Name": "VpnUserNamesFilter", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -78631,6 +77481,37 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "OutputBlobSasUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VpnUserNamesFilter", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -78663,26 +77544,21 @@ }, { "VerbName": "Get", - "NounName": "AzRouteFilterRuleConfig", - "Name": "Get-AzRouteFilterRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.GetRouteFilterRuleConfigCommand", + "NounName": "AzP2sVpnGatewayVpnProfile", + "Name": "Get-AzP2sVpnGatewayVpnProfile", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmP2SVpnGatewayVpnProfileCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByP2SVpnGatewayName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Communities": "System.Collections.Generic.List`1[System.String]", - "Access": "System.String", - "RouteFilterRuleType": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "ProfileUrl": "System.String" }, "Methods": [ { @@ -78722,6 +77598,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -78730,28 +77609,69 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RouteFilter", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "AliasList": [ + "P2SVpnGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", + "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", + "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RulesText": "System.String", - "PeeringsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "VpnGatewayScaleUnit": "System.Int32", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "P2SConnectionConfigurationsText": "System.String", + "CustomDnsServersText": "System.String", "Etag": "System.String", + "VpnClientConnectionHealthText": "System.String", + "ProvisioningState": "System.String", + "VpnServerConfigurationLocation": "System.String", + "ResourceGroupName": "System.String", "Id": "System.String" } }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AuthenticationMethod", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], "ValidateNotNullOrEmpty": false }, { @@ -78777,11 +77697,14 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByP2SVpnGatewayName", "Parameters": [ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -78796,298 +77719,36 @@ }, { "ParameterMetadata": { - "Name": "RouteFilter", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RulesText": "System.String", - "PeeringsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzRouteMap", - "Name": "Get-AzRouteMap", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRouteMapCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]", - "AssociatedInboundConnections": "System.Collections.Generic.List`1[System.String]", - "AssociatedOutboundConnections": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "AssociatedInboundConnectionsText": "System.String", - "AssociatedOutboundConnectionsText": "System.String", - "RouteMapRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubName", - "AliasList": [ - "ParentVirtualHubName", - "ParentResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubObject", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RouteMapName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ByVirtualHubName", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualHubName", - "AliasList": [ - "ParentVirtualHubName", - "ParentResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RouteMapName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthenticationMethod", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -79119,73 +77780,62 @@ ] }, { - "Name": "ByVirtualHubObject", + "Name": "ByP2SVpnGatewayObject", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubObject", + "Name": "InputObject", "AliasList": [ - "ParentObject", - "ParentVirtualHub" + "P2SVpnGateway" ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", + "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", + "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "VpnGatewayScaleUnit": "System.Int32", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "P2SConnectionConfigurationsText": "System.String", + "CustomDnsServersText": "System.String", "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "VpnClientConnectionHealthText": "System.String", + "ProvisioningState": "System.String", + "VpnServerConfigurationLocation": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RouteMapName" - ], + "Name": "AuthenticationMethod", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -79221,40 +77871,36 @@ ] }, { - "Name": "ByVirtualHubResourceId", + "Name": "ByP2SVpnGatewayResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RouteMapName" - ], + "Name": "AuthenticationMethod", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -79294,17 +77940,17 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RouteMapName" - ], + "Name": "AuthenticationMethod", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -79343,38 +77989,26 @@ }, { "VerbName": "Get", - "NounName": "AzRouteServer", - "Name": "Get-AzRouteServer", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRouteServer", + "NounName": "AzPrivateDnsZoneGroup", + "Name": "Get-AzPrivateDnsZoneGroup", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePrivateDnsZoneGroupCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "RouteServerSubscriptionIdParameterSet", + "DefaultParameterSetName": "List", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowBranchToBranchTraffic": "System.Boolean", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]", - "RouteServerIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "PeeringsText": "System.String", + "PrivateDnsZoneConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", + "ProvisioningState": "System.String", + "PrivateDnsZoneConfigsText": "System.String", "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "Id": "System.String", "Etag": "System.String", - "HubRoutingPreference": "System.String", - "PublicIpAddress": "System.String", - "HostedSubnet": "System.String", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "RouteServerAsn": "System.UInt32" + "Id": "System.String" }, "Methods": [ { @@ -79403,15 +78037,6 @@ "Constructors": [ { "Name": "" - }, - { - "Name": "", - "Parameters": [ - { - "Name": "virtualHub", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] } ] }, @@ -79431,10 +78056,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RouteServerName", - "AliasList": [ - "ResourceName" - ], + "Name": "PrivateEndpointName", "Type": { "Namespace": "System", "Name": "System.String", @@ -79443,7 +78065,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "Name", + "AliasList": [ + "PrivateDnsZoneGroupName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -79474,7 +78099,7 @@ ], "ParameterSets": [ { - "Name": "RouteServerNameParameterSet", + "Name": "List", "Parameters": [ { "ParameterMetadata": { @@ -79493,10 +78118,7 @@ }, { "ParameterMetadata": { - "Name": "RouteServerName", - "AliasList": [ - "ResourceName" - ], + "Name": "PrivateEndpointName", "Type": { "Namespace": "System", "Name": "System.String", @@ -79504,7 +78126,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -79538,11 +78160,44 @@ ] }, { - "Name": "RouteServerResourceIdParameterSet", + "Name": "GetByName", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PrivateEndpointName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "PrivateDnsZoneGroupName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -79618,28 +78273,61 @@ }, { "VerbName": "Get", - "NounName": "AzRouteServerPeer", - "Name": "Get-AzRouteServerPeer", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRouteServerPeer", + "NounName": "AzPrivateEndpoint", + "Name": "Get-AzPrivateEndpoint", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePrivateEndpointCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "RouteServerNPeerNameParameterSet", + "DefaultParameterSetName": "NoExpand", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PeerIp": "System.String", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "ApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "CustomDnsConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration]", + "PrivateLinkServiceConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]", + "ManualPrivateLinkServiceConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", "ProvisioningState": "System.String", "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "IpConfigurationsText": "System.String", + "ManualPrivateLinkServiceConnectionsText": "System.String", + "ExtendedLocationText": "System.String", + "CustomDnsConfigsText": "System.String", "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" + "PrivateLinkServiceConnectionsText": "System.String", + "NetworkInterfacesText": "System.String", + "SubnetText": "System.String", + "CustomNetworkInterfaceName": "System.String", + "ApplicationSecurityGroupsText": "System.String", + "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeNetworkInterfaces", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializePrivateLinkServiceConnections", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeManualPrivateLinkServiceConnections", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -79676,16 +78364,7 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PeerName", + "Name": "Name", "AliasList": [ "ResourceName" ], @@ -79697,7 +78376,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RouteServerName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -79706,7 +78385,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -79737,26 +78416,11 @@ ], "ParameterSets": [ { - "Name": "RouteServerNPeerNameParameterSet", + "Name": "NoExpand", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "PeerName", + "Name": "Name", "AliasList": [ "ResourceName" ], @@ -79767,14 +78431,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RouteServerName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -79782,7 +78446,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -79816,11 +78480,44 @@ ] }, { - "Name": "RouteServerNPeerResourceIdParameterSet", + "Name": "Expand", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -79892,31 +78589,37 @@ } ] } + ], + "AliasList": [ + "Get-AzInterfaceEndpoint" ] }, { "VerbName": "Get", - "NounName": "AzRouteServerPeerAdvertisedRoute", - "Name": "Get-AzRouteServerPeerAdvertisedRoute", - "ClassName": "Microsoft.Azure.Commands.Network.GetRouteServerPeerAdvertisedRouteCommand", + "NounName": "AzPrivateEndpointConnection", + "Name": "Get-AzPrivateEndpointConnection", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePrivateEndpointConnection", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "RouteServerNPeerNameParameterSet", + "DefaultParameterSetName": "ByResourceId", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Weight": "System.Nullable`1[System.Int32]", - "LocalAddress": "System.String", - "Network": "System.String", - "NextHop": "System.String", - "SourcePeer": "System.String", - "Origin": "System.String", - "AsPath": "System.String" + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", + "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", + "ProvisioningState": "System.String", + "GroupId": "System.String", + "LinkIdentifier": "System.String", + "PrivateEndpointText": "System.String", + "PrivateLinkServiceConnectionStateText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -79955,7 +78658,7 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "PrivateLinkResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -79964,7 +78667,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RouteServerName", + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -79973,7 +78685,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PeerName", + "Name": "Name", "AliasList": [ "ResourceName" ], @@ -79985,30 +78697,22 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PeerIp": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "AsJob", + "Name": "ServiceName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -80029,15 +78733,24 @@ } }, "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateLinkResourceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "RouteServerNPeerNameParameterSet", + "Name": "ByPrivateLinkResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PrivateLinkResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -80052,51 +78765,64 @@ }, { "ParameterMetadata": { - "Name": "RouteServerName", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerName", + "Name": "DefaultProfile", "AliasList": [ - "ResourceName" + "AzContext", + "AzureRmContext", + "AzureCredential" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Description", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -80127,45 +78853,37 @@ ] }, { - "Name": "RouteServerNPeerInputObjectParameterSet", + "Name": "ByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PeerIp": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Description", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -80196,23 +78914,86 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "ByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ServiceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PrivateLinkResourceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -80245,27 +79026,28 @@ }, { "VerbName": "Get", - "NounName": "AzRouteServerPeerLearnedRoute", - "Name": "Get-AzRouteServerPeerLearnedRoute", - "ClassName": "Microsoft.Azure.Commands.Network.GetRouteServerPeerLearnedRouteCommand", + "NounName": "AzPrivateLinkResource", + "Name": "Get-AzPrivateLinkResource", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePrivateLinkResourceCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "RouteServerNPeerNameParameterSet", + "DefaultParameterSetName": "ByPrivateLinkResourceId", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Weight": "System.Nullable`1[System.Int32]", - "LocalAddress": "System.String", - "Network": "System.String", - "NextHop": "System.String", - "SourcePeer": "System.String", - "Origin": "System.String", - "AsPath": "System.String" + "RequiredMembers": "System.Collections.Generic.List`1[System.String]", + "RequiredZoneNames": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "Type": "System.String", + "Id": "System.String", + "GroupId": "System.String", + "RequiredMembersText": "System.String", + "RequiredZoneNamesText": "System.String" }, "Methods": [ { @@ -80304,7 +79086,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "PrivateLinkResourceId", + "AliasList": [ + "PrivateLinkServiceId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -80313,7 +79098,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RouteServerName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -80322,10 +79107,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PeerName", - "AliasList": [ - "ResourceName" - ], + "Name": "ServiceName", "Type": { "Namespace": "System", "Name": "System.String", @@ -80334,28 +79116,14 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PeerIp": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AsJob", + "Name": "Name", + "AliasList": [ + "GroupName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -80378,30 +79146,27 @@ } }, "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateLinkResourceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false } ], "ParameterSets": [ { - "Name": "RouteServerNPeerNameParameterSet", + "Name": "ByPrivateLinkResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "RouteServerName", + "Name": "PrivateLinkResourceId", + "AliasList": [ + "PrivateLinkServiceId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -80416,36 +79181,21 @@ }, { "ParameterMetadata": { - "Name": "PeerName", + "Name": "Name", "AliasList": [ - "ResourceName" + "GroupName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -80476,45 +79226,70 @@ ] }, { - "Name": "RouteServerNPeerInputObjectParameterSet", + "Name": "ByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PeerIp": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ServiceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PrivateLinkResourceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", + "AliasList": [ + "GroupName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -80549,18 +79324,21 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", + "AliasList": [ + "GroupName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -80594,9 +79372,9 @@ }, { "VerbName": "Get", - "NounName": "AzRouteTable", - "Name": "Get-AzRouteTable", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRouteTable", + "NounName": "AzPrivateLinkService", + "Name": "Get-AzPrivateLinkService", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePrivateLinkService", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -80605,34 +79383,39 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DisableBgpRoutePropagation": "System.Boolean", - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RoutesText": "System.String", - "SubnetsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", + "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", + "LoadBalancerFrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]", + "Tag": "System.Collections.Hashtable", + "EnableProxyProtocol": "System.Nullable`1[System.Boolean]", + "ExtendedLocationText": "System.String", + "Name": "System.String", "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", "TagsTable": "System.String", - "Name": "System.String", + "AutoApprovalText": "System.String", + "IpConfigurationsText": "System.String", + "PrivateEndpointConnectionsText": "System.String", + "NetworkInterfacesText": "System.String", "Etag": "System.String", - "Id": "System.String" + "LoadBalancerFrontendIpConfigurationsText": "System.String", + "DestinationIPAddress": "System.String", + "Alias": "System.String", + "ProvisioningState": "System.String", + "VisibilityText": "System.String", + "Id": "System.String", + "Fqdns": "System.String[]" }, "Methods": [ - { - "Name": "ShouldSerializeSubnets", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeRoutes", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -80669,7 +79452,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -80678,10 +79464,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -80721,23 +79504,8 @@ ], "ParameterSets": [ { - "Name": "Expand", + "Name": "NoExpand", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "Name", @@ -80751,14 +79519,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExpandResource", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -80766,7 +79534,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -80800,8 +79568,26 @@ ] }, { - "Name": "NoExpand", + "Name": "Expand", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -80812,17 +79598,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -80830,7 +79613,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -80898,25 +79681,48 @@ }, { "VerbName": "Get", - "NounName": "AzRoutingIntent", - "Name": "Get-AzRoutingIntent", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRoutingIntentCommand", + "NounName": "AzPublicIpAddress", + "Name": "Get-AzPublicIpAddress", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePublicIpAddressCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", + "DefaultParameterSetName": "NoExpandStandAloneIp", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", - "ProvisioningState": "System.String", - "RoutingPoliciesText": "System.String", + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", "Id": "System.String" }, "Methods": [ @@ -80955,6 +79761,18 @@ } ], "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "ResourceGroupName", "Type": { @@ -80965,84 +79783,43 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "HubName", - "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName", - "ParentResourceName" - ], + "Name": "VirtualMachineScaleSetName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHub", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], + "Name": "VirtualMachineIndex", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ParentResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "NetworkInterfaceName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RoutingIntentName" - ], + "Name": "IpConfigurationName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -81073,50 +79850,29 @@ ], "ParameterSets": [ { - "Name": "ByVirtualHubName", + "Name": "NoExpandStandAloneIp", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HubName", + "Name": "Name", "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName", - "ParentResourceName" + "ResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RoutingIntentName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -81127,7 +79883,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -81158,67 +79914,29 @@ ] }, { - "Name": "ByVirtualHubObject", + "Name": "ExpandStandAloneIp", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHub", + "Name": "Name", "AliasList": [ - "ParentObject", - "ParentVirtualHub" + "ResourceName" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RoutingIntentName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -81226,10 +79944,25 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ExpandResource", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -81260,21 +79993,35 @@ ] }, { - "Name": "ByVirtualHubResourceId", + "Name": "NoExpandScaleSetIp", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentResourceId", + "Name": "Name", "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" + "ResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -81283,11 +80030,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RoutingIntentName" - ], + "Name": "VirtualMachineScaleSetName", "Type": { "Namespace": "System", "Name": "System.String", @@ -81298,7 +80041,52 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualMachineIndex", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IpConfigurationName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -81329,14 +80117,13 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "ExpandScaleSetIp", "Parameters": [ { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName", - "RoutingIntentName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -81345,176 +80132,89 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzRoutingPolicy", - "Name": "Get-AzRoutingPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRoutingPolicyCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Destinations": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "DestinationType": "System.String", - "NextHopType": "System.String", - "NextHop": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "VirtualMachineScaleSetName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualMachineIndex", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "RoutingIntent", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", - "ProvisioningState": "System.String", - "RoutingPoliciesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "RoutingIntent", + "Name": "IpConfigurationName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", - "ProvisioningState": "System.String", - "RoutingPoliciesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -81525,7 +80225,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -81554,38 +80254,80 @@ "ValueFromPipelineByPropertyName": false } ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] } ] }, { "VerbName": "Get", - "NounName": "AzSecurityPartnerProvider", - "Name": "Get-AzSecurityPartnerProvider", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureSecurityPartnerProviderCommand", + "NounName": "AzPublicIpPrefix", + "Name": "Get-AzPublicIpPrefix", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzurePublicIpPrefixCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SecurityPartnerProviderNameParameterSet", + "DefaultParameterSetName": "ListParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", + "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "SecurityProviderName": "System.String", - "ProvisioningState": "System.String", - "ConnectionStatus": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "CustomIpPrefixText": "System.String", + "IpTagsText": "System.String", "Etag": "System.String", - "Id": "System.String" + "PublicIpAddressesText": "System.String", + "IPPrefix": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "SkuText": "System.String", + "Id": "System.String", + "PrefixLength": "System.UInt16" }, "Methods": [ { @@ -81676,7 +80418,7 @@ ], "ParameterSets": [ { - "Name": "SecurityPartnerProviderNameParameterSet", + "Name": "ListParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -81691,7 +80433,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -81706,7 +80448,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -81740,7 +80482,7 @@ ] }, { - "Name": "SecurityPartnerProviderResourceIdParameterSet", + "Name": "GetByResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -81820,26 +80562,223 @@ }, { "VerbName": "Get", - "NounName": "AzServiceEndpointPolicy", - "Name": "Get-AzServiceEndpointPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureServiceEndpointPolicyCommand", - "SupportsShouldProcess": true, + "NounName": "AzRouteConfig", + "Name": "Get-AzRouteConfig", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRouteConfigCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ListParameterSet", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", + "AddressPrefix": "System.String", + "NextHopType": "System.String", + "NextHopIpAddress": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "RouteTable", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DisableBgpRoutePropagation": "System.Boolean", + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", "Tag": "System.Collections.Hashtable", - "ServiceEndpointPolicyDefinitionsText": "System.String", + "ProvisioningState": "System.String", + "RoutesText": "System.String", "SubnetsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "RouteTable", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DisableBgpRoutePropagation": "System.Boolean", + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "RoutesText": "System.String", + "SubnetsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzRouteFilter", + "Name": "Get-AzRouteFilter", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRouteFilterCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", + "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", + "RulesText": "System.String", + "PeeringsText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", @@ -81851,11 +80790,11 @@ }, "Methods": [ { - "Name": "ShouldSerializeSubnets", + "Name": "ShouldSerializePeerings", "ReturnType": "System.Boolean" }, { - "Name": "ShouldSerializeServiceEndpointPolicyDefinitions", + "Name": "ShouldSerializeRules", "ReturnType": "System.Boolean" }, { @@ -81895,6 +80834,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -81912,7 +80854,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -81943,11 +80885,14 @@ ], "ParameterSets": [ { - "Name": "ListParameterSet", + "Name": "NoExpand", "Parameters": [ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -81958,7 +80903,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -82004,11 +80949,44 @@ ] }, { - "Name": "GetByResourceIdParameterSet", + "Name": "Expand", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -82084,10 +81062,10 @@ }, { "VerbName": "Get", - "NounName": "AzServiceEndpointPolicyDefinition", - "Name": "Get-AzServiceEndpointPolicyDefinition", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureServiceEndpointPolicyDefinitionCommand", - "SupportsShouldProcess": true, + "NounName": "AzRouteFilterRuleConfig", + "Name": "Get-AzRouteFilterRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.GetRouteFilterRuleConfigCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -82095,13 +81073,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "serviceResources": "System.Collections.Generic.List`1[System.String]", - "Description": "System.String", - "Service": "System.String", - "ProvisioningState": "System.String", + "Communities": "System.Collections.Generic.List`1[System.String]", + "Access": "System.String", + "RouteFilterRuleType": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -82149,21 +81126,21 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ServiceEndpointPolicy", + "Name": "RouteFilter", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", "Tag": "System.Collections.Hashtable", - "ServiceEndpointPolicyDefinitionsText": "System.String", - "SubnetsText": "System.String", "ProvisioningState": "System.String", + "RulesText": "System.String", + "PeeringsText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", @@ -82209,7 +81186,7 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -82218,18 +81195,18 @@ }, { "ParameterMetadata": { - "Name": "ServiceEndpointPolicy", + "Name": "RouteFilter", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", "Tag": "System.Collections.Hashtable", - "ServiceEndpointPolicyDefinitionsText": "System.String", - "SubnetsText": "System.String", "ProvisioningState": "System.String", + "RulesText": "System.String", + "PeeringsText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", @@ -82279,9 +81256,9 @@ }, { "VerbName": "Get", - "NounName": "AzVHubEffectiveRoute", - "Name": "Get-AzVHubEffectiveRoute", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVHubEffectiveRoutesCommand", + "NounName": "AzRouteMap", + "Name": "Get-AzRouteMap", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRouteMapCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -82290,12 +81267,20 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteList", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMap", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Value": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRoute]", - "ValueText": "System.String" - }, + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]", + "AssociatedInboundConnections": "System.Collections.Generic.List`1[System.String]", + "AssociatedOutboundConnections": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "AssociatedInboundConnectionsText": "System.String", + "AssociatedOutboundConnectionsText": "System.String", + "RouteMapRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, "Methods": [ { "Name": "GetType", @@ -82363,7 +81348,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -82414,16 +81399,11 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualWanResourceType", + "Name": "Name", + "AliasList": [ + "ResourceName", + "RouteMapName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -82466,7 +81446,7 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -82485,21 +81465,6 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -82507,7 +81472,11 @@ }, { "ParameterMetadata": { - "Name": "VirtualWanResourceType", + "Name": "Name", + "AliasList": [ + "ResourceName", + "RouteMapName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -82561,7 +81530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -82598,29 +81567,18 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualWanResourceType", + "Name": "Name", + "AliasList": [ + "ResourceName", + "RouteMapName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -82678,29 +81636,18 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualWanResourceType", + "Name": "Name", + "AliasList": [ + "ResourceName", + "RouteMapName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -82746,22 +81693,11 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualWanResourceType", + "Name": "Name", + "AliasList": [ + "ResourceName", + "RouteMapName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -82806,22 +81742,38 @@ }, { "VerbName": "Get", - "NounName": "AzVHubInboundRoute", - "Name": "Get-AzVHubInboundRoute", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVHubInboundRoutesCommand", + "NounName": "AzRouteServer", + "Name": "Get-AzRouteServer", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRouteServer", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", + "DefaultParameterSetName": "RouteServerSubscriptionIdParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRouteList", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRouteList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Value": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute]", - "ValueText": "System.String" + "AllowBranchToBranchTraffic": "System.Boolean", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]", + "RouteServerIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "PeeringsText": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "Id": "System.String", + "Etag": "System.String", + "HubRoutingPreference": "System.String", + "PublicIpAddress": "System.String", + "HostedSubnet": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "RouteServerAsn": "System.UInt32" }, "Methods": [ { @@ -82850,6 +81802,15 @@ "Constructors": [ { "Name": "" + }, + { + "Name": "", + "Parameters": [ + { + "Name": "virtualHub", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] } ] }, @@ -82866,91 +81827,22 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubName", - "AliasList": [ - "ParentVirtualHubName", - "ParentResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubObject", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubResourceId", + "Name": "RouteServerName", "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" + "ResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualWanConnectionType", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -82981,7 +81873,7 @@ ], "ParameterSets": [ { - "Name": "ByVirtualHubName", + "Name": "RouteServerNameParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -82991,61 +81883,30 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualHubName", + "Name": "RouteServerName", "AliasList": [ - "ParentVirtualHubName", - "ParentResourceName" + "ResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualWanConnectionType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -83076,63 +81937,11 @@ ] }, { - "Name": "ByVirtualHubObject", + "Name": "RouteServerResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubObject", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceUri", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -83140,26 +81949,42 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualWanConnectionType", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -83187,23 +82012,141 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzRouteServerPeer", + "Name": "Get-AzRouteServerPeer", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRouteServerPeer", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "RouteServerNPeerNameParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PeerIp": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "PeerAsn": "System.UInt32" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByVirtualHubResourceId", + "Name": "PeerName", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RouteServerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "RouteServerNPeerNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -83212,7 +82155,10 @@ }, { "ParameterMetadata": { - "Name": "ResourceUri", + "Name": "PeerName", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -83220,14 +82166,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualWanConnectionType", + "Name": "RouteServerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -83235,10 +82181,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -83269,11 +82215,11 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "RouteServerNPeerResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceUri", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -83281,26 +82227,42 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualWanConnectionType", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -83333,22 +82295,27 @@ }, { "VerbName": "Get", - "NounName": "AzVHubOutboundRoute", - "Name": "Get-AzVHubOutboundRoute", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVHubOutboundRoutesCommand", + "NounName": "AzRouteServerPeerAdvertisedRoute", + "Name": "Get-AzRouteServerPeerAdvertisedRoute", + "ClassName": "Microsoft.Azure.Commands.Network.GetRouteServerPeerAdvertisedRouteCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", + "DefaultParameterSetName": "RouteServerNPeerNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRouteList", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRouteList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Value": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute]", - "ValueText": "System.String" + "Weight": "System.Nullable`1[System.Int32]", + "LocalAddress": "System.String", + "Network": "System.String", + "NextHop": "System.String", + "SourcePeer": "System.String", + "Origin": "System.String", + "AsPath": "System.String" }, "Methods": [ { @@ -83393,97 +82360,54 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubName", - "AliasList": [ - "ParentVirtualHubName", - "ParentResourceName" - ], + "Name": "RouteServerName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubObject", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubResourceId", + "Name": "PeerName", "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" + "ResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceUri", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PeerIp": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "PeerAsn": "System.UInt32" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualWanConnectionType", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -83508,7 +82432,7 @@ ], "ParameterSets": [ { - "Name": "ByVirtualHubName", + "Name": "RouteServerNPeerNameParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -83518,35 +82442,34 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualHubName", - "AliasList": [ - "ParentVirtualHubName", - "ParentResourceName" - ], + "Name": "RouteServerName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceUri", + "Name": "PeerName", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -83554,20 +82477,20 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualWanConnectionType", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -83603,54 +82526,25 @@ ] }, { - "Name": "ByVirtualHubObject", + "Name": "RouteServerNPeerInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubObject", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", + "PeerIp": "System.String", "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "PeerAsn": "System.UInt32" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -83659,109 +82553,14 @@ }, { "ParameterMetadata": { - "Name": "ResourceUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualWanConnectionType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualHubResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualHubResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualWanConnectionType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -83800,28 +82599,13 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualWanConnectionType", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -83860,31 +82644,27 @@ }, { "VerbName": "Get", - "NounName": "AzVHubRouteTable", - "Name": "Get-AzVHubRouteTable", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVHubRouteTableCommand", + "NounName": "AzRouteServerPeerLearnedRoute", + "Name": "Get-AzRouteServerPeerLearnedRoute", + "ClassName": "Microsoft.Azure.Commands.Network.GetRouteServerPeerLearnedRouteCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", + "DefaultParameterSetName": "RouteServerNPeerNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", - "Labels": "System.Collections.Generic.List`1[System.String]", - "AssociatedConnections": "System.Collections.Generic.List`1[System.String]", - "PropagatingConnections": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "RoutesText": "System.String", - "AssociatedConnectionsText": "System.String", - "PropagatingConnectionsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Weight": "System.Nullable`1[System.Int32]", + "LocalAddress": "System.String", + "Network": "System.String", + "NextHop": "System.String", + "SourcePeer": "System.String", + "Origin": "System.String", + "AsPath": "System.String" }, "Methods": [ { @@ -83932,91 +82712,52 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "HubName", - "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName", - "ParentResourceName" - ], + "Name": "RouteServerName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHub", + "Name": "PeerName", "AliasList": [ - "ParentObject", - "ParentVirtualHub" + "ResourceName" ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", + "PeerIp": "System.String", "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "PeerAsn": "System.UInt32" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ParentResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualHubRouteTableName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "DefaultProfile", "AliasList": [ @@ -84040,7 +82781,7 @@ ], "ParameterSets": [ { - "Name": "ByVirtualHubName", + "Name": "RouteServerNPeerNameParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -84055,34 +82796,28 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "HubName", - "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName", - "ParentResourceName" - ], + "Name": "RouteServerName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PeerName", "AliasList": [ - "ResourceName", - "VirtualHubRouteTableName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -84091,6 +82826,21 @@ }, "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -84125,54 +82875,25 @@ ] }, { - "Name": "ByVirtualHubObject", + "Name": "RouteServerNPeerInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHub", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", + "PeerIp": "System.String", "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "PeerAsn": "System.UInt32" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -84181,87 +82902,14 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualHubRouteTableName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualHubResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ParentResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualHubRouteTableName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -84300,17 +82948,13 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualHubRouteTableName" - ], + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -84349,28 +82993,45 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualApplianceSite", - "Name": "Get-AzVirtualApplianceSite", - "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualApplianceSiteCommand", + "NounName": "AzRouteTable", + "Name": "Get-AzRouteTable", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRouteTable", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ResourceNameParameterSet", + "DefaultParameterSetName": "NoExpand", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AddressPrefix": "System.String", + "DisableBgpRoutePropagation": "System.Boolean", + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", + "RoutesText": "System.String", + "SubnetsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeSubnets", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeRoutes", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -84407,43 +83068,34 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkVirtualApplianceId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -84468,52 +83120,52 @@ ], "ParameterSets": [ { - "Name": "ResourceNameParameterSet", + "Name": "Expand", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "NetworkVirtualApplianceId", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -84547,19 +83199,37 @@ ] }, { - "Name": "ResourceIdParameterSet", + "Name": "NoExpand", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -84627,51 +83297,26 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualHub", - "Name": "Get-AzVirtualHub", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand", + "NounName": "AzRoutingIntent", + "Name": "Get-AzRoutingIntent", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRoutingIntentCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ListBySubscriptionId", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", + "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "RoutingPoliciesText": "System.String", "Name": "System.String", "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "Id": "System.String" }, "Methods": [ { @@ -84719,235 +83364,21 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "HubName", "AliasList": [ - "ResourceName", - "VirtualHubName" + "VirtualHubName", + "ParentVirtualHubName", + "ParentResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ListByResourceGroupName", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualHubName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzVirtualHubBgpConnection", - "Name": "Get-AzVirtualHubBgpConnection", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzVirtualHubBgpConnectionCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PeerIp": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualHubName", - "AliasList": [ - "ParentResourceName", - "ParentVirtualHubName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BgpConnectionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualHub", + "Name": "VirtualHub", "AliasList": [ "ParentObject", "ParentVirtualHub" @@ -84955,7 +83386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -84993,9 +83424,23 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceId", + "Name": "ParentResourceId", "AliasList": [ - "BgpConnectionId" + "VirtualHubId", + "ParentVirtualHubId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "RoutingIntentName" ], "Type": { "Namespace": "System", @@ -85046,17 +83491,18 @@ }, { "ParameterMetadata": { - "Name": "VirtualHubName", + "Name": "HubName", "AliasList": [ - "ParentResourceName", - "ParentVirtualHubName" + "VirtualHubName", + "ParentVirtualHubName", + "ParentResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -85068,7 +83514,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "BgpConnectionName" + "RoutingIntentName" ], "Type": { "Namespace": "System", @@ -85113,25 +83559,6 @@ { "Name": "ByVirtualHubObject", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BgpConnectionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "VirtualHub", @@ -85142,7 +83569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -85184,6 +83611,25 @@ "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "RoutingIntentName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -85213,24 +83659,44 @@ ] }, { - "Name": "ByHubBgpConnectionResourceId", + "Name": "ByVirtualHubResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "ParentResourceId", "AliasList": [ - "BgpConnectionId" + "VirtualHubId", + "ParentVirtualHubId" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "RoutingIntentName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -85264,6 +83730,25 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "RoutingIntentName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -85296,26 +83781,25 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualHubRouteTable", - "Name": "Get-AzVirtualHubRouteTable", - "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualHubRouteTableCommand", + "NounName": "AzRoutingPolicy", + "Name": "Get-AzRoutingPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmRoutingPolicyCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", - "Connections": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", + "Destinations": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "DestinationType": "System.String", + "NextHopType": "System.String", + "NextHop": "System.String" }, "Methods": [ { @@ -85354,93 +83838,24 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "HubName", - "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName", - "ParentResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHub", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], + "Name": "RoutingIntent", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", + "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "RoutingPoliciesText": "System.String", "Name": "System.String", "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - { - "Name": "ParentResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualHubRouteTableName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -85471,136 +83886,22 @@ ], "ParameterSets": [ { - "Name": "ByVirtualHubName", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HubName", - "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName", - "ParentResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualHubRouteTableName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualHubObject", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHub", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], + "Name": "RoutingIntent", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", + "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "RoutingPoliciesText": "System.String", "Name": "System.String", "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -85608,134 +83909,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualHubRouteTableName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualHubResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ParentResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualHubRouteTableName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualHubRouteTableName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -85743,7 +83921,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -85780,25 +83958,30 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualHubVnetConnection", - "Name": "Get-AzVirtualHubVnetConnection", - "ClassName": "Microsoft.Azure.Commands.Network.GetHubVirtualNetworkConnectionCommand", + "NounName": "AzSecurityPartnerProvider", + "Name": "Get-AzSecurityPartnerProvider", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureSecurityPartnerProviderCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", + "DefaultParameterSetName": "SecurityPartnerProviderNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", + "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", + "Tag": "System.Collections.Hashtable", + "SecurityProviderName": "System.String", "ProvisioningState": "System.String", - "RoutingConfigurationText": "System.String", + "ConnectionStatus": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -85840,92 +84023,28 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ParentResourceName", + "Name": "Name", "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName" + "ResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ParentObject", - "AliasList": [ - "VirtualHub", - "ParentVirtualHub" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ParentResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" - ], + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -85956,48 +84075,13 @@ ], "ParameterSets": [ { - "Name": "ByVirtualHubName", + "Name": "SecurityPartnerProviderNameParameterSet", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ParentResourceName", - "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -86006,101 +84090,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualHubObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ParentObject", - "AliasList": [ - "VirtualHub", - "ParentVirtualHub" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -86108,10 +84105,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -86142,46 +84139,23 @@ ] }, { - "Name": "ByVirtualHubResourceId", + "Name": "SecurityPartnerProviderResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -86213,25 +84187,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -86264,54 +84219,44 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualNetwork", - "Name": "Get-AzVirtualNetwork", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand", - "SupportsShouldProcess": false, + "NounName": "AzServiceEndpointPolicy", + "Name": "Get-AzServiceEndpointPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureServiceEndpointPolicyCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ListParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ServiceEndpointPolicyDefinitionsText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", - "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeSubnets", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeServiceEndpointPolicyDefinitions", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -86349,9 +84294,6 @@ "Parameters": [ { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -86369,7 +84311,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ExpandResource", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -86400,14 +84342,11 @@ ], "ParameterSets": [ { - "Name": "NoExpand", + "Name": "ListParameterSet", "Parameters": [ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -86418,7 +84357,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -86464,44 +84403,11 @@ ] }, { - "Name": "Expand", + "Name": "GetByResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ExpandResource", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -86577,10 +84483,10 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualNetworkAvailableEndpointService", - "Name": "Get-AzVirtualNetworkAvailableEndpointService", - "ClassName": "Microsoft.Azure.Commands.Network.Automation.GetAzureRMVirtualNetworkAvailableEndpointServiceCommand", - "SupportsShouldProcess": false, + "NounName": "AzServiceEndpointPolicyDefinition", + "Name": "Get-AzServiceEndpointPolicyDefinition", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureServiceEndpointPolicyDefinitionCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -86588,12 +84494,16 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "serviceResources": "System.Collections.Generic.List`1[System.String]", + "Description": "System.String", + "Service": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", - "Id": "System.String", - "Type": "System.String" + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -86632,13 +84542,38 @@ ], "Parameters": [ { - "Name": "Location", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServiceEndpointPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", + "ServiceEndpointPolicyDefinitionsText": "System.String", + "SubnetsText": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -86667,18 +84602,49 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceEndpointPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", + "ServiceEndpointPolicyDefinitionsText": "System.String", + "SubnetsText": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -86712,62 +84678,22 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualNetworkGateway", - "Name": "Get-AzVirtualNetworkGateway", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkGatewayCommand", + "NounName": "AzVHubEffectiveRoute", + "Name": "Get-AzVHubEffectiveRoute", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVHubEffectiveRoutesCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteList", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", - "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" + "Value": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRoute]", + "ValueText": "System.String" }, "Methods": [ { @@ -86806,19 +84732,97 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubName", "AliasList": [ - "ResourceName" + "ParentVirtualHubName", + "ParentResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubObject", + "AliasList": [ + "ParentObject", + "ParentVirtualHub" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "VirtualWanResourceType", "Type": { "Namespace": "System", "Name": "System.String", @@ -86849,29 +84853,60 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualHubName", "AliasList": [ - "ResourceName" + "ParentVirtualHubName", + "ParentResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VirtualWanResourceType", "Type": { "Namespace": "System", "Name": "System.String", @@ -86879,10 +84914,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -86911,154 +84946,65 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzVirtualNetworkGatewayAdvertisedRoute", - "Name": "Get-AzVirtualNetworkGatewayAdvertisedRoute", - "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualNetworkGatewayAdvertisedRouteCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Weight": "System.Nullable`1[System.Int32]", - "LocalAddress": "System.String", - "Network": "System.String", - "NextHop": "System.String", - "SourcePeer": "System.String", - "Origin": "System.String", - "AsPath": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "VirtualNetworkGatewayName", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true }, { - "Name": "Peer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubObject", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualNetworkGatewayName", + "Name": "VirtualHubObject", "AliasList": [ - "ResourceName" + "ParentObject", + "ParentVirtualHub" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -87066,14 +85012,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Peer", + "Name": "VirtualWanResourceType", "Type": { "Namespace": "System", "Name": "System.String", @@ -87081,21 +85027,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -87128,146 +85059,23 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzVirtualNetworkGatewayBGPPeerStatus", - "Name": "Get-AzVirtualNetworkGatewayBGPPeerStatus", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkGatewayBGPPeerStatus", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Asn": "System.Nullable`1[System.Int32]", - "RoutesReceived": "System.Nullable`1[System.Int64]", - "MessagesSent": "System.Nullable`1[System.Int64]", - "MessagesReceived": "System.Nullable`1[System.Int64]", - "LocalAddress": "System.String", - "Neighbor": "System.String", - "State": "System.String", - "ConnectedDuration": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "VirtualNetworkGatewayName", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Peer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualNetworkGatewayName", + "Name": "VirtualHubResourceId", "AliasList": [ - "ResourceName" + "VirtualHubId", + "ParentVirtualHubId" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -87276,7 +85084,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -87284,35 +85092,20 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Peer", + "Name": "VirtualWanResourceType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -87346,157 +85139,13 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzVirtualNetworkGatewayConnection", - "Name": "Get-AzVirtualNetworkGatewayConnection", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkGatewayConnectionCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetworkGateway1": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "VirtualNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "EnablePrivateLinkFastPath": "System.Boolean", - "ExpressRouteGatewayBypass": "System.Boolean", - "UseLocalAzureIpAddress": "System.Boolean", - "EnableBgp": "System.Boolean", - "UsePolicyBasedTrafficSelectors": "System.Boolean", - "GatewayCustomBgpIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", - "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", - "TunnelConnectionStatus": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]", - "Tag": "System.Collections.Hashtable", - "DpdTimeoutSeconds": "System.Int32", - "RoutingWeight": "System.Int32", - "IngressBytesTransferred": "System.Nullable`1[System.Int64]", - "EgressBytesTransferred": "System.Nullable`1[System.Int64]", - "IngressNatRulesText": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "GatewayCustomBgpIpAddressesText": "System.String", - "EgressNatRulesText": "System.String", - "ResourceGuid": "System.String", - "TunnelConnectionStatusText": "System.String", - "AuthorizationKey": "System.String", - "LocalNetworkGateway2Text": "System.String", - "VirtualNetworkGateway2Text": "System.String", - "VirtualNetworkGateway1Text": "System.String", - "ConnectionProtocol": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "ConnectionStatus": "System.String", - "SharedKey": "System.String", - "ConnectionMode": "System.String", - "ConnectionType": "System.String", - "PeerText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -87507,11 +85156,11 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VirtualWanResourceType", "Type": { "Namespace": "System", "Name": "System.String", @@ -87519,10 +85168,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -87556,21 +85205,51 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualNetworkGatewayConnectionIkeSa", - "Name": "Get-AzVirtualNetworkGatewayConnectionIkeSa", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzVirtualNetworkGatewayConnectionIkeSaCommand", + "NounName": "AzVHubInboundRoute", + "Name": "Get-AzVHubInboundRoute", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVHubInboundRoutesCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByName", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRouteList", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRouteList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Value": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute]", + "ValueText": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } ] }, "ParameterSets": [ @@ -87580,83 +85259,88 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ConnectionName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "VirtualHubName", + "AliasList": [ + "ParentVirtualHubName", + "ParentResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "InputObject", + "Name": "VirtualHubObject", + "AliasList": [ + "ParentObject", + "ParentVirtualHub" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetworkGateway1": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "VirtualNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "EnablePrivateLinkFastPath": "System.Boolean", - "ExpressRouteGatewayBypass": "System.Boolean", - "UseLocalAzureIpAddress": "System.Boolean", - "EnableBgp": "System.Boolean", - "UsePolicyBasedTrafficSelectors": "System.Boolean", - "GatewayCustomBgpIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", - "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", - "TunnelConnectionStatus": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "DpdTimeoutSeconds": "System.Int32", - "RoutingWeight": "System.Int32", - "IngressBytesTransferred": "System.Nullable`1[System.Int64]", - "EgressBytesTransferred": "System.Nullable`1[System.Int64]", - "IngressNatRulesText": "System.String", - "Location": "System.String", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", - "GatewayCustomBgpIpAddressesText": "System.String", - "EgressNatRulesText": "System.String", - "ResourceGuid": "System.String", - "TunnelConnectionStatusText": "System.String", - "AuthorizationKey": "System.String", - "LocalNetworkGateway2Text": "System.String", - "VirtualNetworkGateway2Text": "System.String", - "VirtualNetworkGateway1Text": "System.String", - "ConnectionProtocol": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "ConnectionStatus": "System.String", - "SharedKey": "System.String", - "ConnectionMode": "System.String", - "ConnectionType": "System.String", - "PeerText": "System.String", - "Id": "System.String" + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceId", + "Name": "VirtualHubResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceUri", "Type": { "Namespace": "System", "Name": "System.String", @@ -87665,13 +85349,13 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "AsJob", + "Name": "VirtualWanConnectionType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -87696,21 +85380,36 @@ ], "ParameterSets": [ { - "Name": "ByName", + "Name": "ByVirtualHubName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualHubName", "AliasList": [ - "ResourceName", - "ConnectionName" + "ParentVirtualHubName", + "ParentResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -87719,7 +85418,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ResourceUri", "Type": { "Namespace": "System", "Name": "System.String", @@ -87727,20 +85426,20 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "VirtualWanConnectionType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -87776,77 +85475,84 @@ ] }, { - "Name": "ByInputObject", + "Name": "ByVirtualHubObject", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "VirtualHubObject", + "AliasList": [ + "ParentObject", + "ParentVirtualHub" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetworkGateway1": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "VirtualNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "EnablePrivateLinkFastPath": "System.Boolean", - "ExpressRouteGatewayBypass": "System.Boolean", - "UseLocalAzureIpAddress": "System.Boolean", - "EnableBgp": "System.Boolean", - "UsePolicyBasedTrafficSelectors": "System.Boolean", - "GatewayCustomBgpIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", - "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", - "TunnelConnectionStatus": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "DpdTimeoutSeconds": "System.Int32", - "RoutingWeight": "System.Int32", - "IngressBytesTransferred": "System.Nullable`1[System.Int64]", - "EgressBytesTransferred": "System.Nullable`1[System.Int64]", - "IngressNatRulesText": "System.String", - "Location": "System.String", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", - "GatewayCustomBgpIpAddressesText": "System.String", - "EgressNatRulesText": "System.String", - "ResourceGuid": "System.String", - "TunnelConnectionStatusText": "System.String", - "AuthorizationKey": "System.String", - "LocalNetworkGateway2Text": "System.String", - "VirtualNetworkGateway2Text": "System.String", - "VirtualNetworkGateway1Text": "System.String", - "ConnectionProtocol": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "ConnectionStatus": "System.String", - "SharedKey": "System.String", - "ConnectionMode": "System.String", - "ConnectionType": "System.String", - "PeerText": "System.String", - "Id": "System.String" + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceUri", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "VirtualWanConnectionType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -87882,17 +85588,21 @@ ] }, { - "Name": "ByResourceId", + "Name": "ByVirtualHubResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "VirtualHubResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -87901,13 +85611,28 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceUri", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualWanConnectionType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -87947,13 +85672,28 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceUri", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualWanConnectionType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -87992,19 +85732,52 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualNetworkGatewayConnectionSharedKey", - "Name": "Get-AzVirtualNetworkGatewayConnectionSharedKey", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkGatewayConnectionSharedKeyCommand", + "NounName": "AzVHubOutboundRoute", + "Name": "Get-AzVHubOutboundRoute", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVHubOutboundRoutesCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRouteList", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRouteList, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Value": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute]", + "ValueText": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] }, "ParameterSets": [ "__AllParameterSets" @@ -88013,19 +85786,97 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubName", "AliasList": [ - "ResourceName" + "ParentVirtualHubName", + "ParentResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubObject", + "AliasList": [ + "ParentObject", + "ParentVirtualHub" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceUri", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "VirtualWanConnectionType", "Type": { "Namespace": "System", "Name": "System.String", @@ -88056,29 +85907,60 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualHubName", "AliasList": [ - "ResourceName" + "ParentVirtualHubName", + "ParentResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceUri", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VirtualWanConnectionType", "Type": { "Namespace": "System", "Name": "System.String", @@ -88086,10 +85968,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -88118,110 +86000,65 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzVirtualNetworkGatewayConnectionVpnDeviceConfigScript", - "Name": "Get-AzVirtualNetworkGatewayConnectionVpnDeviceConfigScript", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualNetworkGatewayConnectionVpnDeviceConfigScript", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DeviceVendor", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DeviceFamily", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FirmwareVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubObject", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "VirtualHubObject", "AliasList": [ - "ResourceName" + "ParentObject", + "ParentVirtualHub" ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceUri", "Type": { "Namespace": "System", "Name": "System.String", @@ -88229,14 +86066,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VirtualWanConnectionType", "Type": { "Namespace": "System", "Name": "System.String", @@ -88244,20 +86081,55 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DeviceVendor", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualHubResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -88266,7 +86138,7 @@ }, { "ParameterMetadata": { - "Name": "DeviceFamily", + "Name": "ResourceUri", "Type": { "Namespace": "System", "Name": "System.String", @@ -88274,14 +86146,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FirmwareVersion", + "Name": "VirtualWanConnectionType", "Type": { "Namespace": "System", "Name": "System.String", @@ -88289,10 +86161,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -88321,130 +86193,13 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzVirtualNetworkGatewayLearnedRoute", - "Name": "Get-AzVirtualNetworkGatewayLearnedRoute", - "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualNetworkGatewayLearnedRouteCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Weight": "System.Nullable`1[System.Int32]", - "LocalAddress": "System.String", - "Network": "System.String", - "NextHop": "System.String", - "SourcePeer": "System.String", - "Origin": "System.String", - "AsPath": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "VirtualNetworkGatewayName", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualNetworkGatewayName", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceUri", "Type": { "Namespace": "System", "Name": "System.String", @@ -88452,14 +86207,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VirtualWanConnectionType", "Type": { "Namespace": "System", "Name": "System.String", @@ -88467,21 +86222,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -88519,28 +86259,28 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualNetworkGatewayNatRule", - "Name": "Get-AzVirtualNetworkGatewayNatRule", - "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.GetAzureVirtualNetworkGatewayNatRule", + "NounName": "AzVHubRouteTable", + "Name": "Get-AzVHubRouteTable", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVHubRouteTableCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualNetworkGatewayName", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", - "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", - "VirtualNetworkGatewayNatRulePropertiesType": "System.String", - "Mode": "System.String", - "IpConfigurationId": "System.String", + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", + "Labels": "System.Collections.Generic.List`1[System.String]", + "AssociatedConnections": "System.Collections.Generic.List`1[System.String]", + "PropagatingConnections": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", - "InternalMappingsText": "System.String", - "ExternalMappingsText": "System.String", + "RoutesText": "System.String", + "AssociatedConnectionsText": "System.String", + "PropagatingConnectionsText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -88591,93 +86331,83 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ParentResourceName", + "Name": "HubName", "AliasList": [ - "ParentVirtualNetworkGatewayName", - "VirtualNetworkGatewayName" + "VirtualHubName", + "ParentVirtualHubName", + "ParentResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ParentObject", + "Name": "VirtualHub", "AliasList": [ - "ParentVirtualNetworkGateway", - "VirtualNetworkGateway" + "ParentObject", + "ParentVirtualHub" ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "ParentResourceId", "AliasList": [ - "ParentVirtualNetworkGatewayId", - "VirtualNetworkGatewayId" + "VirtualHubId", + "ParentVirtualHubId" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "Name", "AliasList": [ "ResourceName", - "VirtualNetworkGatewayNatRuleName" + "VirtualHubRouteTableName" ], "Type": { "Namespace": "System", @@ -88709,7 +86439,7 @@ ], "ParameterSets": [ { - "Name": "ByVirtualNetworkGatewayName", + "Name": "ByVirtualHubName", "Parameters": [ { "ParameterMetadata": { @@ -88728,17 +86458,18 @@ }, { "ParameterMetadata": { - "Name": "ParentResourceName", + "Name": "HubName", "AliasList": [ - "ParentVirtualNetworkGatewayName", - "VirtualNetworkGatewayName" + "VirtualHubName", + "ParentVirtualHubName", + "ParentResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -88750,7 +86481,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VirtualNetworkGatewayNatRuleName" + "VirtualHubRouteTableName" ], "Type": { "Namespace": "System", @@ -88793,65 +86524,54 @@ ] }, { - "Name": "ByVirtualNetworkGatewayObject", + "Name": "ByVirtualHubObject", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentObject", + "Name": "VirtualHub", "AliasList": [ - "ParentVirtualNetworkGateway", - "VirtualNetworkGateway" + "ParentObject", + "ParentVirtualHub" ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -88863,7 +86583,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VirtualNetworkGatewayNatRuleName" + "VirtualHubRouteTableName" ], "Type": { "Namespace": "System", @@ -88906,21 +86626,21 @@ ] }, { - "Name": "ByVirtualNetworkGatewayResourceId", + "Name": "ByVirtualHubResourceId", "Parameters": [ { "ParameterMetadata": { "Name": "ParentResourceId", "AliasList": [ - "ParentVirtualNetworkGatewayId", - "VirtualNetworkGatewayId" + "VirtualHubId", + "ParentVirtualHubId" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -88932,7 +86652,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VirtualNetworkGatewayNatRuleName" + "VirtualHubRouteTableName" ], "Type": { "Namespace": "System", @@ -88982,7 +86702,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VirtualNetworkGatewayNatRuleName" + "VirtualHubRouteTableName" ], "Type": { "Namespace": "System", @@ -89028,19 +86748,56 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualNetworkGatewaySupportedVpnDevice", - "Name": "Get-AzVirtualNetworkGatewaySupportedVpnDevice", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualNetworkGatewaySupportedVpnDevice", + "NounName": "AzVirtualApplianceSite", + "Name": "Get-AzVirtualApplianceSite", + "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualApplianceSiteCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ResourceNameParameterSet", "OutputTypes": [ { "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] }, "ParameterSets": [ "__AllParameterSets" @@ -89058,7 +86815,16 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkVirtualApplianceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "ResourceGroupName", @@ -89067,7 +86833,16 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -89092,7 +86867,7 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ResourceNameParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -89105,9 +86880,24 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkVirtualApplianceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -89120,9 +86910,9 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -89154,282 +86944,13 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzVirtualNetworkGatewayVpnClientConnectionHealth", - "Name": "Get-AzVirtualNetworkGatewayVpnClientConnectionHealth", - "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.GetVpnclientConnectionHealthCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByFactoryName", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VpnConnectionDuration": "System.Nullable`1[System.Int64]", - "MaxBandwidth": "System.Nullable`1[System.Int64]", - "EgressPacketsTransferred": "System.Nullable`1[System.Int64]", - "EgressBytesTransferred": "System.Nullable`1[System.Int64]", - "IngressPacketsTransferred": "System.Nullable`1[System.Int64]", - "IngressBytesTransferred": "System.Nullable`1[System.Int64]", - "MaxPacketsPerSecond": "System.Nullable`1[System.Int64]", - "VpnConnectionId": "System.String", - "VpnConnectionTime": "System.String", - "PublicIpAddress": "System.String", - "PrivateIpAddress": "System.String", - "VpnUserName": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "VirtualNetworkGatewayName", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceId", - "AliasList": [ - "VirtualNetworkGatewayId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [ - "VirtualNetworkGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", - "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ByFactoryName", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualNetworkGatewayName", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByResourceId", + "Name": "ResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { "Name": "ResourceId", - "AliasList": [ - "VirtualNetworkGatewayId" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -89437,134 +86958,11 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByFactoryObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "VirtualNetworkGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", - "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -89596,21 +86994,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -89643,44 +87026,51 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualNetworkPeering", - "Name": "Get-AzVirtualNetworkPeering", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkPeeringCommand", + "NounName": "AzVirtualHub", + "Name": "Get-AzVirtualHub", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualHubCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ListBySubscriptionId", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RemoteBgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "RemoteVirtualNetworkEncryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "RemoteGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AllowVirtualNetworkAccess": "System.Nullable`1[System.Boolean]", - "AllowForwardedTraffic": "System.Nullable`1[System.Boolean]", - "AllowGatewayTransit": "System.Nullable`1[System.Boolean]", - "UseRemoteGateways": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "RemoteVirtualNetworkEncryptionText": "System.String", - "RemoteBgpCommunitiesText": "System.String", - "RemoteVirtualNetworkAddressSpaceText": "System.String", - "PeeredRemoteAddressSpaceText": "System.String", - "RemoteGatewaysText": "System.String", - "ResourceGroupName": "System.String", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Etag": "System.String", - "PeeringSyncLevel": "System.String", - "PeeringState": "System.String", - "VirtualNetworkName": "System.String", - "RemoteVirtualNetworkText": "System.String", - "Id": "System.String" + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" }, "Methods": [ { @@ -89718,15 +87108,6 @@ } ], "Parameters": [ - { - "Name": "VirtualNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "ResourceGroupName", "Type": { @@ -89738,6 +87119,10 @@ }, { "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualHubName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -89768,11 +87153,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ListByResourceGroupName", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualNetworkName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -89780,14 +87165,18 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualHubName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -89795,26 +87184,42 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -89847,81 +87252,29 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualNetworkSubnetConfig", - "Name": "Get-AzVirtualNetworkSubnetConfig", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkSubnetConfigCommand", + "NounName": "AzVirtualHubBgpConnection", + "Name": "Get-AzVirtualHubBgpConnection", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzVirtualHubBgpConnectionCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "GetByVirtualNetwork", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", + "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PeerIp": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" + "Id": "System.String", + "PeerAsn": "System.UInt32" }, "Methods": [ - { - "Name": "ShouldSerializeIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeServiceEndpointPolicies", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeServiceEndpoints", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeResourceNavigationLinks", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializePrivateEndpoints", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeDelegations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeServiceAssociationLinks", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -89957,66 +87310,98 @@ } ], "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VirtualHubName", + "AliasList": [ + "ParentResourceName", + "ParentVirtualHubName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Name", + "AliasList": [ + "ResourceName", + "BgpConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualNetwork", + "Name": "VirtualHub", + "AliasList": [ + "ParentObject", + "ParentVirtualHub" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", - "Id": "System.String" + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" } }, "ValidateNotNullOrEmpty": false }, { "Name": "ResourceId", + "AliasList": [ + "BgpConnectionId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -90041,63 +87426,154 @@ ], "ParameterSets": [ { - "Name": "GetByVirtualNetwork", + "Name": "ByVirtualHubName", "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualHubName", + "AliasList": [ + "ParentResourceName", + "ParentVirtualHubName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName", + "BgpConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "BgpConnectionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetwork", + "Name": "VirtualHub", + "AliasList": [ + "ParentObject", + "ParentVirtualHub" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", - "Id": "System.String" + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" } }, "ValidateNotNullOrEmpty": false @@ -90136,22 +87612,25 @@ ] }, { - "Name": "GetByResourceId", + "Name": "ByHubBgpConnectionResourceId", "Parameters": [ { "ParameterMetadata": { "Name": "ResourceId", + "AliasList": [ + "BgpConnectionId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -90216,33 +87695,23 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualNetworkTap", - "Name": "Get-AzVirtualNetworkTap", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualNetworkTap", - "SupportsShouldProcess": true, + "NounName": "AzVirtualHubRouteTable", + "Name": "Get-AzVirtualHubRouteTable", + "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualHubRouteTableCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ListParameterSet", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "NetworkInterfaceTapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "Tag": "System.Collections.Hashtable", - "DestinationPort": "System.Nullable`1[System.Int32]", - "NetworkInterfaceTapConfigurationsText": "System.String", - "DestinationNetworkInterfaceIPConfigurationText": "System.String", - "DestinationLoadBalancerFrontEndIPConfigurationText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", + "Connections": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -90293,16 +87762,84 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "HubName", + "AliasList": [ + "VirtualHubName", + "ParentVirtualHubName", + "ParentResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceId", + "Name": "VirtualHub", + "AliasList": [ + "ParentObject", + "ParentVirtualHub" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ParentResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualHubRouteTableName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -90333,7 +87870,7 @@ ], "ParameterSets": [ { - "Name": "ListParameterSet", + "Name": "ByVirtualHubName", "Parameters": [ { "ParameterMetadata": { @@ -90345,14 +87882,38 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HubName", + "AliasList": [ + "VirtualHubName", + "ParentVirtualHubName", + "ParentResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualHubRouteTableName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -90363,7 +87924,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -90394,11 +87955,67 @@ ] }, { - "Name": "GetByResourceIdParameterSet", + "Name": "ByVirtualHubObject", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "VirtualHub", + "AliasList": [ + "ParentObject", + "ParentVirtualHub" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualHubRouteTableName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -90406,10 +88023,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -90440,8 +88057,46 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubResourceId", "Parameters": [ + { + "ParameterMetadata": { + "Name": "ParentResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualHubRouteTableName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -90469,129 +88124,17 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzVirtualNetworkUsageList", - "Name": "Get-AzVirtualNetworkUsageList", - "ClassName": "Microsoft.Azure.Commands.Network.Automation.GetAzureRmVirtualNetworkUsageList", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName", - "CurrentValue": "System.Double", - "Limit": "System.Double", - "Id": "System.String", - "Unit": "System.String", - "NameText": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualHubRouteTableName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -90599,10 +88142,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -90636,36 +88179,28 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualRouter", - "Name": "Get-AzVirtualRouter", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualRouter", + "NounName": "AzVirtualHubVnetConnection", + "Name": "Get-AzVirtualHubVnetConnection", + "ClassName": "Microsoft.Azure.Commands.Network.GetHubVirtualNetworkConnectionCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "VirtualRouterSubscriptionIdParameterSet", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowBranchToBranchTraffic": "System.Boolean", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", + "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", "ProvisioningState": "System.String", - "HostedSubnet": "System.String", - "PeeringsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "RoutingConfigurationText": "System.String", "Name": "System.String", "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "Id": "System.String" }, "Methods": [ { @@ -90694,15 +88229,6 @@ "Constructors": [ { "Name": "" - }, - { - "Name": "", - "Parameters": [ - { - "Name": "virtualHub", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] } ] }, @@ -90722,19 +88248,83 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RouterName", + "Name": "ParentResourceName", "AliasList": [ - "ResourceName" + "VirtualHubName", + "ParentVirtualHubName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceId", + "Name": "ParentObject", + "AliasList": [ + "VirtualHub", + "ParentVirtualHub" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ParentResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -90765,7 +88355,7 @@ ], "ParameterSets": [ { - "Name": "VirtualRouterNameParameterSet", + "Name": "ByVirtualHubName", "Parameters": [ { "ParameterMetadata": { @@ -90780,13 +88370,33 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RouterName", + "Name": "ParentResourceName", "AliasList": [ - "ResourceName" + "VirtualHubName", + "ParentVirtualHubName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" ], "Type": { "Namespace": "System", @@ -90798,7 +88408,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -90829,11 +88439,67 @@ ] }, { - "Name": "VirtualRouterResourceIdParameterSet", + "Name": "ByVirtualHubObject", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "ParentObject", + "AliasList": [ + "VirtualHub", + "ParentVirtualHub" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -90841,11 +88507,80 @@ }, "ValidateNotNullOrEmpty": true }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ParentResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -90877,6 +88612,25 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -90909,26 +88663,53 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualRouterPeer", - "Name": "Get-AzVirtualRouterPeer", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualRouterPeer", + "NounName": "AzVirtualNetwork", + "Name": "Get-AzVirtualNetwork", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "VirtualRouterPeerNameParameterSet", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PeerIp": "System.String", - "ProvisioningState": "System.String", + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -90967,16 +88748,7 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PeerName", + "Name": "Name", "AliasList": [ "ResourceName" ], @@ -90988,7 +88760,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualRouterName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -90997,7 +88769,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -91028,26 +88800,11 @@ ], "ParameterSets": [ { - "Name": "VirtualRouterPeerNameParameterSet", + "Name": "NoExpand", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "PeerName", + "Name": "Name", "AliasList": [ "ResourceName" ], @@ -91058,14 +88815,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualRouterName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -91073,7 +88830,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -91107,11 +88864,44 @@ ] }, { - "Name": "VirtualRouterPeerResourceIdParameterSet", + "Name": "Expand", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ExpandResource", "Type": { "Namespace": "System", "Name": "System.String", @@ -91187,27 +88977,23 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualRouterPeerAdvertisedRoute", - "Name": "Get-AzVirtualRouterPeerAdvertisedRoute", - "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualRouterPeerAdvertisedRouteCommand", + "NounName": "AzVirtualNetworkAvailableEndpointService", + "Name": "Get-AzVirtualNetworkAvailableEndpointService", + "ClassName": "Microsoft.Azure.Commands.Network.Automation.GetAzureRMVirtualNetworkAvailableEndpointServiceCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "VirtualRouterPeerNameParameterSet", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEndpointServiceResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Weight": "System.Nullable`1[System.Int32]", - "LocalAddress": "System.String", - "Network": "System.String", - "NextHop": "System.String", - "SourcePeer": "System.String", - "Origin": "System.String", - "AsPath": "System.String" + "Name": "System.String", + "Id": "System.String", + "Type": "System.String" }, "Methods": [ { @@ -91246,28 +89032,7 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualRouterName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PeerName", - "AliasList": [ - "ResourceName" - ], + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -91275,32 +89040,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PeerIp": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -91324,44 +89063,11 @@ ], "ParameterSets": [ { - "Name": "VirtualRouterPeerNameParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "VirtualRouterName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "PeerName", - "AliasList": [ - "ResourceName" - ], + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -91374,21 +89080,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -91416,93 +89107,182 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVirtualNetworkGateway", + "Name": "Get-AzVirtualNetworkGateway", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkGatewayCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "VirtualRouterPeerObjectParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PeerIp": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", + "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "Name", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "ResourceName" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -91536,19 +89316,19 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualRouterPeerLearnedRoute", - "Name": "Get-AzVirtualRouterPeerLearnedRoute", - "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualRouterPeerLearnedRouteCommand", + "NounName": "AzVirtualNetworkGatewayAdvertisedRoute", + "Name": "Get-AzVirtualNetworkGatewayAdvertisedRoute", + "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualNetworkGatewayAdvertisedRouteCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "VirtualRouterPeerNameParameterSet", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Weight": "System.Nullable`1[System.Int32]", "LocalAddress": "System.String", @@ -91595,7 +89375,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "VirtualNetworkGatewayName", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -91604,7 +89387,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualRouterName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -91613,10 +89396,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PeerName", - "AliasList": [ - "ResourceName" - ], + "Name": "Peer", "Type": { "Namespace": "System", "Name": "System.String", @@ -91624,23 +89404,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PeerIp": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "AsJob", "Type": { @@ -91673,11 +89436,14 @@ ], "ParameterSets": [ { - "Name": "VirtualRouterPeerNameParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VirtualNetworkGatewayName", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -91692,7 +89458,7 @@ }, { "ParameterMetadata": { - "Name": "VirtualRouterName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -91707,10 +89473,7 @@ }, { "ParameterMetadata": { - "Name": "PeerName", - "AliasList": [ - "ResourceName" - ], + "Name": "Peer", "Type": { "Namespace": "System", "Name": "System.String", @@ -91765,79 +89528,182 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVirtualNetworkGatewayBGPPeerStatus", + "Name": "Get-AzVirtualNetworkGatewayBGPPeerStatus", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkGatewayBGPPeerStatus", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "VirtualRouterPeerObjectParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PeerIp": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBGPPeerStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Asn": "System.Nullable`1[System.Int32]", + "RoutesReceived": "System.Nullable`1[System.Int64]", + "MessagesSent": "System.Nullable`1[System.Int64]", + "MessagesReceived": "System.Nullable`1[System.Int64]", + "LocalAddress": "System.String", + "Neighbor": "System.String", + "State": "System.String", + "ConnectedDuration": "System.String" }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "VirtualNetworkGatewayName", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Peer", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualNetworkGatewayName", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Peer", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "AsJob", @@ -91885,32 +89751,62 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualWan", - "Name": "Get-AzVirtualWan", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand", + "NounName": "AzVirtualNetworkGatewayConnection", + "Name": "Get-AzVirtualNetworkGatewayConnection", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkGatewayConnectionCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ListBySubscriptionId", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", + "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetworkGateway1": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "VirtualNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "EnablePrivateLinkFastPath": "System.Boolean", + "ExpressRouteGatewayBypass": "System.Boolean", + "UseLocalAzureIpAddress": "System.Boolean", + "EnableBgp": "System.Boolean", + "UsePolicyBasedTrafficSelectors": "System.Boolean", + "GatewayCustomBgpIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", + "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", + "TunnelConnectionStatus": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]", "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", + "DpdTimeoutSeconds": "System.Int32", + "RoutingWeight": "System.Int32", + "IngressBytesTransferred": "System.Nullable`1[System.Int64]", + "EgressBytesTransferred": "System.Nullable`1[System.Int64]", + "IngressNatRulesText": "System.String", "Location": "System.String", - "ResourceGuid": "System.String", + "ResourceGroupName": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", + "GatewayCustomBgpIpAddressesText": "System.String", + "EgressNatRulesText": "System.String", + "ResourceGuid": "System.String", + "TunnelConnectionStatusText": "System.String", + "AuthorizationKey": "System.String", + "LocalNetworkGateway2Text": "System.String", + "VirtualNetworkGateway2Text": "System.String", + "VirtualNetworkGateway1Text": "System.String", + "ConnectionProtocol": "System.String", "Etag": "System.String", + "ProvisioningState": "System.String", + "ConnectionStatus": "System.String", + "SharedKey": "System.String", + "ConnectionMode": "System.String", + "ConnectionType": "System.String", + "PeerText": "System.String", "Id": "System.String" }, "Methods": [ @@ -91950,7 +89846,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -91959,10 +89858,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -91993,11 +89889,14 @@ ], "ParameterSets": [ { - "Name": "ListByResourceGroupName", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -92008,14 +89907,11 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -92023,10 +89919,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -92055,86 +89951,26 @@ "ValueFromPipelineByPropertyName": false } ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] } ] }, { "VerbName": "Get", - "NounName": "AzVirtualWanVpnConfiguration", - "Name": "Get-AzVirtualWanVpnConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanVpnSitesConfigurationCommand", - "SupportsShouldProcess": true, + "NounName": "AzVirtualNetworkGatewayConnectionIkeSa", + "Name": "Get-AzVirtualNetworkGatewayConnectionIkeSa", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzVirtualNetworkGatewayConnectionIkeSaCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualWanNameByVpnSiteObject", + "DefaultParameterSetName": "ByName", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SasUrl": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa" ] }, "ParameterSets": [ @@ -92144,7 +89980,11 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "ConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -92153,11 +89993,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualWanName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -92167,26 +90003,53 @@ }, { "Name": "InputObject", - "AliasList": [ - "VirtualWan" - ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", + "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetworkGateway1": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "VirtualNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "EnablePrivateLinkFastPath": "System.Boolean", + "ExpressRouteGatewayBypass": "System.Boolean", + "UseLocalAzureIpAddress": "System.Boolean", + "EnableBgp": "System.Boolean", + "UsePolicyBasedTrafficSelectors": "System.Boolean", + "GatewayCustomBgpIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", + "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", + "TunnelConnectionStatus": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]", "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", + "DpdTimeoutSeconds": "System.Int32", + "RoutingWeight": "System.Int32", + "IngressBytesTransferred": "System.Nullable`1[System.Int64]", + "EgressBytesTransferred": "System.Nullable`1[System.Int64]", + "IngressNatRulesText": "System.String", "Location": "System.String", - "ResourceGuid": "System.String", + "ResourceGroupName": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", + "GatewayCustomBgpIpAddressesText": "System.String", + "EgressNatRulesText": "System.String", + "ResourceGuid": "System.String", + "TunnelConnectionStatusText": "System.String", + "AuthorizationKey": "System.String", + "LocalNetworkGateway2Text": "System.String", + "VirtualNetworkGateway2Text": "System.String", + "VirtualNetworkGateway1Text": "System.String", + "ConnectionProtocol": "System.String", "Etag": "System.String", + "ProvisioningState": "System.String", + "ConnectionStatus": "System.String", + "SharedKey": "System.String", + "ConnectionMode": "System.String", + "ConnectionType": "System.String", + "PeerText": "System.String", "Id": "System.String" } }, @@ -92194,18 +90057,6 @@ }, { "Name": "ResourceId", - "AliasList": [ - "VirtualWanId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "StorageSasUrl", "Type": { "Namespace": "System", "Name": "System.String", @@ -92214,24 +90065,13 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VpnSiteId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VpnSite", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -92256,29 +90096,14 @@ ], "ParameterSets": [ { - "Name": "ByVirtualWanNameByVpnSiteObject", + "Name": "ByName", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ "ResourceName", - "VirtualWanName" + "ConnectionName" ], "Type": { "Namespace": "System", @@ -92294,12 +90119,11 @@ }, { "ParameterMetadata": { - "Name": "VpnSite", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -92310,15 +90134,15 @@ }, { "ParameterMetadata": { - "Name": "StorageSasUrl", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -92352,69 +90176,79 @@ ] }, { - "Name": "ByVirtualWanNameByVpnSiteResourceId", + "Name": "ByInputObject", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualWanName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnSiteId", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetworkGateway1": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "VirtualNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "EnablePrivateLinkFastPath": "System.Boolean", + "ExpressRouteGatewayBypass": "System.Boolean", + "UseLocalAzureIpAddress": "System.Boolean", + "EnableBgp": "System.Boolean", + "UsePolicyBasedTrafficSelectors": "System.Boolean", + "GatewayCustomBgpIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", + "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", + "TunnelConnectionStatus": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]", + "Tag": "System.Collections.Hashtable", + "DpdTimeoutSeconds": "System.Int32", + "RoutingWeight": "System.Int32", + "IngressBytesTransferred": "System.Nullable`1[System.Int64]", + "EgressBytesTransferred": "System.Nullable`1[System.Int64]", + "IngressNatRulesText": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "GatewayCustomBgpIpAddressesText": "System.String", + "EgressNatRulesText": "System.String", + "ResourceGuid": "System.String", + "TunnelConnectionStatusText": "System.String", + "AuthorizationKey": "System.String", + "LocalNetworkGateway2Text": "System.String", + "VirtualNetworkGateway2Text": "System.String", + "VirtualNetworkGateway1Text": "System.String", + "ConnectionProtocol": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "ConnectionStatus": "System.String", + "SharedKey": "System.String", + "ConnectionMode": "System.String", + "ConnectionType": "System.String", + "PeerText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "StorageSasUrl", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -92448,68 +90282,34 @@ ] }, { - "Name": "ByVirtualWanObjectByVpnSiteObject", + "Name": "ByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "VirtualWan" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnSite", + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "StorageSasUrl", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -92543,68 +90343,19 @@ ] }, { - "Name": "ByVirtualWanObjectByVpnSiteResourceId", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "VirtualWan" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnSiteId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageSasUrl", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -92636,15 +90387,82 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVirtualNetworkGatewayConnectionSharedKey", + "Name": "Get-AzVirtualNetworkGatewayConnectionSharedKey", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkGatewayConnectionSharedKeyCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByVirtualWanResourceIdByVpnSiteObject", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Name", "AliasList": [ - "VirtualWanId" + "ResourceName" ], "Type": { "Namespace": "System", @@ -92653,30 +90471,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnSite", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageSasUrl", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -92687,7 +90489,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -92716,15 +90518,109 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVirtualNetworkGatewayConnectionVpnDeviceConfigScript", + "Name": "Get-AzVirtualNetworkGatewayConnectionVpnDeviceConfigScript", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualNetworkGatewayConnectionVpnDeviceConfigScript", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByVirtualWanResourceIdByVpnSiteResourceId", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceVendor", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceFamily", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "FirmwareVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Name", "AliasList": [ - "VirtualWanId" + "ResourceName" ], "Type": { "Namespace": "System", @@ -92740,23 +90636,22 @@ }, { "ParameterMetadata": { - "Name": "VpnSiteId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "StorageSasUrl", + "Name": "DeviceVendor", "Type": { "Namespace": "System", "Name": "System.String", @@ -92767,42 +90662,26 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DeviceFamily", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "StorageSasUrl", + "Name": "FirmwareVersion", "Type": { "Namespace": "System", "Name": "System.String", @@ -92813,7 +90692,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -92847,22 +90726,27 @@ }, { "VerbName": "Get", - "NounName": "AzVirtualWanVpnServerConfiguration", - "Name": "Get-AzVirtualWanVpnServerConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanVpnServerConfigurationsCommand", + "NounName": "AzVirtualNetworkGatewayLearnedRoute", + "Name": "Get-AzVirtualNetworkGatewayLearnedRoute", + "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualNetworkGatewayLearnedRouteCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualWanName", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VpnServerConfigurationResourceIds": "System.Collections.Generic.List`1[System.String]", - "VpnServerConfigurationResourceIdsText": "System.String" + "Weight": "System.Nullable`1[System.Int32]", + "LocalAddress": "System.String", + "Network": "System.String", + "NextHop": "System.String", + "SourcePeer": "System.String", + "Origin": "System.String", + "AsPath": "System.String" }, "Methods": [ { @@ -92901,7 +90785,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "VirtualNetworkGatewayName", "AliasList": [ "ResourceName" ], @@ -92922,43 +90806,13 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualWanObject", - "AliasList": [ - "VirtualWan" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceId", - "AliasList": [ - "VirtualWanId" - ], + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -92983,11 +90837,11 @@ ], "ParameterSets": [ { - "Name": "ByVirtualWanName", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "VirtualNetworkGatewayName", "AliasList": [ "ResourceName" ], @@ -93018,6 +90872,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -93045,170 +90914,36 @@ "ValueFromPipelineByPropertyName": false } ] - }, - { - "Name": "ByVirtualWanObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualWanObject", - "AliasList": [ - "VirtualWan" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualWanResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "AliasList": [ - "VirtualWanId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzVirtualWanVpnServerConfigurationVpnProfile", - "Name": "Get-AzVirtualWanVpnServerConfigurationVpnProfile", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanVpnServerConfigurationVpnProfileCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualWanNameByVpnServerConfigurationObject", - "OutputTypes": [ + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVirtualNetworkGatewayNatRule", + "Name": "Get-AzVirtualNetworkGatewayNatRule", + "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.GetAzureVirtualNetworkGatewayNatRule", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByVirtualNetworkGatewayName", + "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ProfileUrl": "System.String" + "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", + "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", + "VirtualNetworkGatewayNatRulePropertiesType": "System.String", + "Mode": "System.String", + "IpConfigurationId": "System.String", + "ProvisioningState": "System.String", + "InternalMappingsText": "System.String", + "ExternalMappingsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -93246,18 +90981,6 @@ } ], "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "ResourceGroupName", "Type": { @@ -93268,36 +90991,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualWanObject", - "AliasList": [ - "VirtualWan" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceId", + "Name": "ParentResourceName", "AliasList": [ - "VirtualWanId" + "ParentVirtualNetworkGatewayName", + "VirtualNetworkGatewayName" ], "Type": { "Namespace": "System", @@ -93307,69 +91004,87 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VpnServerConfiguration", + "Name": "ParentObject", + "AliasList": [ + "ParentVirtualNetworkGateway", + "VirtualNetworkGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", "Name": "System.String", + "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", + "AdminState": "System.String", "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VpnServerConfigurationId", + "Name": "ParentResourceId", + "AliasList": [ + "ParentVirtualNetworkGatewayId", + "VirtualNetworkGatewayId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AuthenticationMethod", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualNetworkGatewayNatRuleName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -93394,26 +91109,8 @@ ], "ParameterSets": [ { - "Name": "ByVirtualWanNameByVpnServerConfigurationObject", + "Name": "ByVirtualNetworkGatewayName", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -93431,108 +91128,10 @@ }, { "ParameterMetadata": { - "Name": "VpnServerConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", - "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AuthenticationMethod", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualWanNameByVpnServerConfigurationResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", + "Name": "ParentResourceName", "AliasList": [ - "ResourceName" + "ParentVirtualNetworkGatewayName", + "VirtualNetworkGatewayName" ], "Type": { "Namespace": "System", @@ -93541,21 +91140,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, @@ -93563,32 +91147,17 @@ }, { "ParameterMetadata": { - "Name": "VpnServerConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AuthenticationMethod", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualNetworkGatewayNatRuleName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -93624,84 +91193,65 @@ ] }, { - "Name": "ByVirtualWanObjectByVpnServerConfigurationObject", + "Name": "ByVirtualNetworkGatewayObject", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualWanObject", + "Name": "ParentObject", "AliasList": [ - "VirtualWan" + "ParentVirtualNetworkGateway", + "VirtualNetworkGateway" ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnServerConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", "TagsTable": "System.String", - "Name": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", + "AdminState": "System.String", "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -93710,115 +91260,17 @@ }, { "ParameterMetadata": { - "Name": "AuthenticationMethod", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualWanObjectByVpnServerConfigurationResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualWanObject", + "Name": "Name", "AliasList": [ - "VirtualWan" + "ResourceName", + "VirtualNetworkGatewayNatRuleName" ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnServerConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AuthenticationMethod", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -93854,13 +91306,14 @@ ] }, { - "Name": "ByVirtualWanResourceIdByVpnServerConfigurationObject", + "Name": "ByVirtualNetworkGatewayResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "ParentResourceId", "AliasList": [ - "VirtualWanId" + "ParentVirtualNetworkGatewayId", + "VirtualNetworkGatewayId" ], "Type": { "Namespace": "System", @@ -93876,108 +91329,10 @@ }, { "ParameterMetadata": { - "Name": "VpnServerConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", - "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AuthenticationMethod", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualWanResourceIdByVpnServerConfigurationResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Name", "AliasList": [ - "VirtualWanId" + "ResourceName", + "VirtualNetworkGatewayNatRuleName" ], "Type": { "Namespace": "System", @@ -93986,40 +91341,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "VpnServerConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AuthenticationMethod", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -94058,17 +91379,17 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "AuthenticationMethod", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualNetworkGatewayNatRuleName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -94107,51 +91428,19 @@ }, { "VerbName": "Get", - "NounName": "AzVpnClientConfiguration", - "Name": "Get-AzVpnClientConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.GetAzureVpnClientConfigurationCommand", - "SupportsShouldProcess": true, + "NounName": "AzVirtualNetworkGatewaySupportedVpnDevice", + "Name": "Get-AzVirtualNetworkGatewaySupportedVpnDevice", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualNetworkGatewaySupportedVpnDevice", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VpnProfileSASUrl": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -94218,7 +91507,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -94270,28 +91559,32 @@ }, { "VerbName": "Get", - "NounName": "AzVpnClientIpsecParameter", - "Name": "Get-AzVpnClientIpsecParameter", - "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.GetAzureVpnClientIpsecParametersCommand", - "SupportsShouldProcess": false, + "NounName": "AzVirtualNetworkGatewayVpnClientConnectionHealth", + "Name": "Get-AzVirtualNetworkGatewayVpnClientConnectionHealth", + "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.GetVpnclientConnectionHealthCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByFactoryName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealthDetail, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SaLifeTimeSeconds": "System.Int32", - "SaDataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" + "VpnConnectionDuration": "System.Nullable`1[System.Int64]", + "MaxBandwidth": "System.Nullable`1[System.Int64]", + "EgressPacketsTransferred": "System.Nullable`1[System.Int64]", + "EgressBytesTransferred": "System.Nullable`1[System.Int64]", + "IngressPacketsTransferred": "System.Nullable`1[System.Int64]", + "IngressBytesTransferred": "System.Nullable`1[System.Int64]", + "MaxPacketsPerSecond": "System.Nullable`1[System.Int64]", + "VpnConnectionId": "System.String", + "VpnConnectionTime": "System.String", + "PublicIpAddress": "System.String", + "PrivateIpAddress": "System.String", + "VpnUserName": "System.String" }, "Methods": [ { @@ -94330,7 +91623,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "VirtualNetworkGatewayName", "AliasList": [ "ResourceName" ], @@ -94341,6 +91634,74 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "ResourceId", + "AliasList": [ + "VirtualNetworkGatewayId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "AliasList": [ + "VirtualNetworkGateway" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", + "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "ResourceGroupName", "Type": { @@ -94350,6 +91711,15 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -94373,11 +91743,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByFactoryName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "VirtualNetworkGatewayName", "AliasList": [ "ResourceName" ], @@ -94388,7 +91758,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -94408,6 +91778,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -94435,135 +91820,196 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Get", - "NounName": "AzVpnClientPackage", - "Name": "Get-AzVpnClientPackage", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVpnClientPackage", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualNetworkGatewayName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true }, { - "Name": "ProcessorArchitecture", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Amd64", - "X86" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ResourceId", + "AliasList": [ + "VirtualNetworkGatewayId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkGatewayName", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFactoryObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [ + "VirtualNetworkGateway" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", + "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ProcessorArchitecture", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "Amd64", - "X86" + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -94597,9 +92043,9 @@ }, { "VerbName": "Get", - "NounName": "AzVpnClientRevokedCertificate", - "Name": "Get-AzVpnClientRevokedCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVpnClientRevokedCertificates", + "NounName": "AzVirtualNetworkPeering", + "Name": "Get-AzVirtualNetworkPeering", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkPeeringCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -94608,13 +92054,32 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Thumbprint": "System.String", - "ProvisioningState": "System.String", + "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RemoteBgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "RemoteVirtualNetworkEncryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "RemoteGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AllowVirtualNetworkAccess": "System.Nullable`1[System.Boolean]", + "AllowForwardedTraffic": "System.Nullable`1[System.Boolean]", + "AllowGatewayTransit": "System.Nullable`1[System.Boolean]", + "UseRemoteGateways": "System.Nullable`1[System.Boolean]", "Name": "System.String", + "RemoteVirtualNetworkEncryptionText": "System.String", + "RemoteBgpCommunitiesText": "System.String", + "RemoteVirtualNetworkAddressSpaceText": "System.String", + "PeeredRemoteAddressSpaceText": "System.String", + "RemoteGatewaysText": "System.String", + "ResourceGroupName": "System.String", + "ProvisioningState": "System.String", "Etag": "System.String", + "PeeringSyncLevel": "System.String", + "PeeringState": "System.String", + "VirtualNetworkName": "System.String", + "RemoteVirtualNetworkText": "System.String", "Id": "System.String" }, "Methods": [ @@ -94654,10 +92119,7 @@ ], "Parameters": [ { - "Name": "VpnClientRevokedCertificateName", - "AliasList": [ - "ResourceName" - ], + "Name": "VirtualNetworkName", "Type": { "Namespace": "System", "Name": "System.String", @@ -94666,7 +92128,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualNetworkGatewayName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -94675,7 +92137,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -94710,10 +92172,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "VpnClientRevokedCertificateName", - "AliasList": [ - "ResourceName" - ], + "Name": "VirtualNetworkName", "Type": { "Namespace": "System", "Name": "System.String", @@ -94721,14 +92180,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualNetworkGatewayName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -94743,7 +92202,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -94751,7 +92210,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -94788,27 +92247,81 @@ }, { "VerbName": "Get", - "NounName": "AzVpnClientRootCertificate", - "Name": "Get-AzVpnClientRootCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVpnClientRootCertificates", + "NounName": "AzVirtualNetworkSubnetConfig", + "Name": "Get-AzVirtualNetworkSubnetConfig", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVirtualNetworkSubnetConfigCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "GetByVirtualNetwork", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PublicCertData": "System.String", - "ProvisioningState": "System.String", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeServiceEndpointPolicies", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeServiceEndpoints", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeResourceNavigationLinks", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializePrivateEndpoints", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeDelegations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeServiceAssociationLinks", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -94845,34 +92358,66 @@ ], "Parameters": [ { - "Name": "VpnClientRootCertificateName", - "AliasList": [ - "ResourceName" - ], + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "VirtualNetworkGatewayName", + "Name": "VirtualNetwork", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -94897,50 +92442,113 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "GetByVirtualNetwork", "Parameters": [ { "ParameterMetadata": { - "Name": "VpnClientRootCertificateName", - "AliasList": [ - "ResourceName" - ], + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkGatewayName", + "Name": "VirtualNetwork", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "GetByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -94974,44 +92582,71 @@ "ValueFromPipelineByPropertyName": false } ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] } ] }, { "VerbName": "Get", - "NounName": "AzVpnConnection", - "Name": "Get-AzVpnConnection", - "ClassName": "Microsoft.Azure.Commands.Network.Cortex.VpnGateway.GetAzureRmVpnConnectionCommand", - "SupportsShouldProcess": false, + "NounName": "AzVirtualNetworkTap", + "Name": "Get-AzVirtualNetworkTap", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualNetworkTap", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVpnGatewayName", + "DefaultParameterSetName": "ListParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "UsePolicyBasedTrafficSelectors": "System.Boolean", - "UseLocalAzureIpAddress": "System.Boolean", - "EnableBgp": "System.Boolean", - "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", - "VpnLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]", - "ConnectionBandwidth": "System.Int32", - "EgressBytesTransferred": "System.Nullable`1[System.Int64]", - "IngressBytesTransferred": "System.Nullable`1[System.Int64]", - "Etag": "System.String", - "ConnectionStatus": "System.String", - "ProvisioningState": "System.String", - "VpnConnectionProtocolType": "System.String", - "SharedKey": "System.String", - "RoutingConfigurationText": "System.String", + "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", + "NetworkInterfaceTapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "Tag": "System.Collections.Hashtable", + "DestinationPort": "System.Nullable`1[System.Int32]", + "NetworkInterfaceTapConfigurationsText": "System.String", + "DestinationNetworkInterfaceIPConfigurationText": "System.String", + "DestinationLoadBalancerFrontEndIPConfigurationText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ @@ -95060,57 +92695,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ParentResourceName", - "AliasList": [ - "ParentVpnGatewayName", - "VpnGatewayName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ParentObject", - "AliasList": [ - "ParentVpnGateway", - "VpnGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ParentResourceId", - "AliasList": [ - "ParentVpnGatewayId", - "VpnGatewayId" - ], + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -95119,11 +92704,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -95154,7 +92735,7 @@ ], "ParameterSets": [ { - "Name": "ByVpnGatewayName", + "Name": "ListParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -95166,126 +92747,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ParentResourceName", - "AliasList": [ - "ParentVpnGatewayName", - "VpnGatewayName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVpnGatewayObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ParentObject", - "AliasList": [ - "ParentVpnGateway", - "VpnGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -95296,7 +92765,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -95327,15 +92796,11 @@ ] }, { - "Name": "ByVpnGatewayResourceId", + "Name": "GetByResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentResourceId", - "AliasList": [ - "ParentVpnGatewayId", - "VpnGatewayId" - ], + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -95348,25 +92813,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -95398,25 +92844,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -95449,38 +92876,26 @@ }, { "VerbName": "Get", - "NounName": "AzVpnGateway", - "Name": "Get-AzVpnGateway", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand", + "NounName": "AzVirtualNetworkUsageList", + "Name": "Get-AzVirtualNetworkUsageList", + "ClassName": "Microsoft.Azure.Commands.Network.Automation.GetAzureRmVirtualNetworkUsageList", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ListBySubscriptionId", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkUsage, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" + "Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName", + "CurrentValue": "System.Double", + "Limit": "System.Double", + "Id": "System.String", + "Unit": "System.String", + "NameText": "System.String" }, "Methods": [ { @@ -95529,10 +92944,6 @@ }, { "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -95563,7 +92974,7 @@ ], "ParameterSets": [ { - "Name": "ListByResourceGroupName", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { @@ -95575,18 +92986,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -95594,10 +93001,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -95626,71 +93033,41 @@ "ValueFromPipelineByPropertyName": false } ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] } ] }, { "VerbName": "Get", - "NounName": "AzVpnGatewayNatRule", - "Name": "Get-AzVpnGatewayNatRule", - "ClassName": "Microsoft.Azure.Commands.Network.Cortex.VpnGateway.GetAzureRmVpnGatewayNatRuleCommand", + "NounName": "AzVirtualRouter", + "Name": "Get-AzVirtualRouter", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualRouter", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVpnGatewayName", + "DefaultParameterSetName": "VirtualRouterSubscriptionIdParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", - "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", - "VpnGatewayNatRulePropertiesType": "System.String", - "Mode": "System.String", - "IpConfigurationId": "System.String", + "AllowBranchToBranchTraffic": "System.Boolean", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", - "InternalMappingsText": "System.String", - "ExternalMappingsText": "System.String", - "IngressVpnSiteLinkConnectionsText": "System.String", - "EgressVpnSiteLinkConnectionsText": "System.String", + "HostedSubnet": "System.String", + "PeeringsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", - "Id": "System.String" + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" }, "Methods": [ { @@ -95719,6 +93096,15 @@ "Constructors": [ { "Name": "" + }, + { + "Name": "", + "Parameters": [ + { + "Name": "virtualHub", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] } ] }, @@ -95738,56 +93124,9 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ParentResourceName", - "AliasList": [ - "ParentVpnGatewayName", - "VpnGatewayName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ParentObject", - "AliasList": [ - "ParentVpnGateway", - "VpnGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ParentResourceId", + "Name": "RouterName", "AliasList": [ - "ParentVpnGatewayId", - "VpnGatewayId" + "ResourceName" ], "Type": { "Namespace": "System", @@ -95797,11 +93136,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayNatRuleName" - ], + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -95832,7 +93167,7 @@ ], "ParameterSets": [ { - "Name": "ByVpnGatewayName", + "Name": "VirtualRouterNameParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -95847,14 +93182,13 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ParentResourceName", + "Name": "RouterName", "AliasList": [ - "ParentVpnGatewayName", - "VpnGatewayName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -95863,18 +93197,45 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DefaultProfile", "AliasList": [ - "ResourceName", - "VpnGatewayNatRuleName" + "AzContext", + "AzureRmContext", + "AzureCredential" ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "VirtualRouterResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -95882,10 +93243,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -95916,53 +93277,181 @@ ] }, { - "Name": "ByVpnGatewayObject", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentObject", + "Name": "DefaultProfile", "AliasList": [ - "ParentVpnGateway", - "VpnGateway" + "AzContext", + "AzureRmContext", + "AzureCredential" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVirtualRouterPeer", + "Name": "Get-AzVirtualRouterPeer", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualRouterPeer", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "VirtualRouterPeerNameParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PeerIp": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "PeerAsn": "System.UInt32" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PeerName", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VirtualRouterName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "VirtualRouterPeerNameParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PeerName", "AliasList": [ - "ResourceName", - "VpnGatewayNatRuleName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -95971,10 +93460,25 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualRouterName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -96005,15 +93509,11 @@ ] }, { - "Name": "ByVpnGatewayResourceId", + "Name": "VirtualRouterPeerResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentResourceId", - "AliasList": [ - "ParentVpnGatewayId", - "VpnGatewayId" - ], + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -96026,25 +93526,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayNatRuleName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -96076,25 +93557,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayNatRuleName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -96127,52 +93589,27 @@ }, { "VerbName": "Get", - "NounName": "AzVpnServerConfiguration", - "Name": "Get-AzVpnServerConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand", + "NounName": "AzVirtualRouterPeerAdvertisedRoute", + "Name": "Get-AzVirtualRouterPeerAdvertisedRoute", + "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualRouterPeerAdvertisedRouteCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ListBySubscriptionId", + "DefaultParameterSetName": "VirtualRouterPeerNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", - "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", - "Id": "System.String" + "Weight": "System.Nullable`1[System.Int32]", + "LocalAddress": "System.String", + "Network": "System.String", + "NextHop": "System.String", + "SourcePeer": "System.String", + "Origin": "System.String", + "AsPath": "System.String" }, "Methods": [ { @@ -96220,10 +93657,18 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "VirtualRouterName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PeerName", "AliasList": [ - "ResourceName", - "VpnServerConfigurationName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -96232,6 +93677,32 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PeerIp": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "PeerAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -96255,7 +93726,7 @@ ], "ParameterSets": [ { - "Name": "ListByResourceGroupName", + "Name": "VirtualRouterPeerNameParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -96267,17 +93738,31 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "VirtualRouterName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PeerName", "AliasList": [ - "ResourceName", - "VpnServerConfigurationName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -96286,6 +93771,90 @@ }, "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "VirtualRouterPeerObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PeerIp": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "PeerAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -96322,6 +93891,21 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -96354,30 +93938,27 @@ }, { "VerbName": "Get", - "NounName": "AzVpnServerConfigurationPolicyGroup", - "Name": "Get-AzVpnServerConfigurationPolicyGroup", - "ClassName": "Microsoft.Azure.Commands.Network.Cortex.VpnServerConfiguration.GetAzureRmVpnServerConfigurationPolicyGroupCommand", + "NounName": "AzVirtualRouterPeerLearnedRoute", + "Name": "Get-AzVirtualRouterPeerLearnedRoute", + "ClassName": "Microsoft.Azure.Commands.Network.GetVirtualRouterPeerLearnedRouteCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVpnServerConfigurationName", + "DefaultParameterSetName": "VirtualRouterPeerNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "IsDefault": "System.Boolean", - "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PolicyMembers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember]", - "Priority": "System.Int32", - "ProvisioningState": "System.String", - "PolicyMembersText": "System.String", - "P2SConnectionConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Weight": "System.Nullable`1[System.Int32]", + "LocalAddress": "System.String", + "Network": "System.String", + "NextHop": "System.String", + "SourcePeer": "System.String", + "Origin": "System.String", + "AsPath": "System.String" }, "Methods": [ { @@ -96425,11 +94006,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ServerConfigurationName", - "AliasList": [ - "ParentVpnServerConfigurationName", - "VpnServerConfigurationName" - ], + "Name": "VirtualRouterName", "Type": { "Namespace": "System", "Name": "System.String", @@ -96438,10 +94015,9 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "PeerName", "AliasList": [ - "ResourceName", - "VpnServerConfigurationPolicyGroupName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -96451,64 +94027,30 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ServerConfigurationObject", - "AliasList": [ - "ParentVpnServerConfiguration", - "VpnServerConfiguration" - ], + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", + "PeerIp": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", - "Id": "System.String" + "Id": "System.String", + "PeerAsn": "System.UInt32" } }, "ValidateNotNullOrEmpty": true }, { - "Name": "ServerConfigurationResourceId", - "AliasList": [ - "ParentVpnServerConfigurationId", - "VpnServerConfigurationId" - ], + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -96533,7 +94075,7 @@ ], "ParameterSets": [ { - "Name": "ByVpnServerConfigurationName", + "Name": "VirtualRouterPeerNameParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -96548,15 +94090,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ServerConfigurationName", - "AliasList": [ - "ParentVpnServerConfigurationName", - "VpnServerConfigurationName" - ], + "Name": "VirtualRouterName", "Type": { "Namespace": "System", "Name": "System.String", @@ -96567,14 +94105,13 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PeerName", "AliasList": [ - "ResourceName", - "VpnServerConfigurationPolicyGroupName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -96583,29 +94120,18 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -96613,30 +94139,6 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnServerConfigurationPolicyGroupName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -96667,52 +94169,22 @@ ] }, { - "Name": "ByVpnServerConfigurationObject", + "Name": "VirtualRouterPeerObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ServerConfigurationObject", - "AliasList": [ - "ParentVpnServerConfiguration", - "VpnServerConfiguration" - ], + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", + "PeerIp": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", - "Id": "System.String" + "Id": "System.String", + "PeerAsn": "System.UInt32" } }, "ValidateNotNullOrEmpty": true @@ -96724,17 +94196,13 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnServerConfigurationPolicyGroupName" - ], + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -96770,40 +94238,17 @@ ] }, { - "Name": "ByVpnServerConfigurationResourceId", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ServerConfigurationResourceId", - "AliasList": [ - "ParentVpnServerConfigurationId", - "VpnServerConfigurationId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnServerConfigurationPolicyGroupName" - ], + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -96842,9 +94287,9 @@ }, { "VerbName": "Get", - "NounName": "AzVpnSite", - "Name": "Get-AzVpnSite", - "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand", + "NounName": "AzVirtualWan", + "Name": "Get-AzVirtualWan", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -96853,26 +94298,21 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", - "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", "Tag": "System.Collections.Hashtable", - "IsSecuritySite": "System.Nullable`1[System.Boolean]", - "IpAddress": "System.String", "ProvisioningState": "System.String", - "Etag": "System.String", + "VirtualWANType": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ @@ -96923,8 +94363,7 @@ { "Name": "Name", "AliasList": [ - "ResourceName", - "VpnSiteName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -96977,8 +94416,7 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName", - "VpnSiteName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -97055,21 +94493,50 @@ }, { "VerbName": "Get", - "NounName": "AzVpnSiteLinkConnectionIkeSa", - "Name": "Get-AzVpnSiteLinkConnectionIkeSa", - "ClassName": "Microsoft.Azure.Commands.Network.Cortex.VpnConnection.GetAzVpnSiteLinkConnectionIkeSaCommand", - "SupportsShouldProcess": false, + "NounName": "AzVirtualWanVpnConfiguration", + "Name": "Get-AzVirtualWanVpnConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanVpnSitesConfigurationCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByName", + "DefaultParameterSetName": "ByVirtualWanNameByVpnSiteObject", "OutputTypes": [ { "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWanVpnSitesConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SasUrl": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } ] }, "ParameterSets": [ @@ -97088,9 +94555,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VpnGatewayName", + "Name": "Name", "AliasList": [ - "GrandParentName" + "ResourceName", + "VirtualWanName" ], "Type": { "Namespace": "System", @@ -97100,22 +94568,36 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VpnConnectionName", + "Name": "InputObject", "AliasList": [ - "ParentName" + "VirtualWan" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "VirtualWANType": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "ResourceId", "AliasList": [ - "ResourceName", - "VpnSiteLinkConnectionName" + "VirtualWanId" ], "Type": { "Namespace": "System", @@ -97125,59 +94607,33 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", - "AliasList": [ - "VpnSiteLinkConnection" - ], + "Name": "StorageSasUrl", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "UsePolicyBasedTrafficSelectors": "System.Boolean", - "EnableBgp": "System.Boolean", - "UseLocalAzureIpAddress": "System.Boolean", - "VpnGatewayCustomBgpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", - "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConnectionBandwidth": "System.Int32", - "RoutingWeight": "System.Int32", - "EgressBytesTransferred": "System.Nullable`1[System.Int64]", - "IngressBytesTransferred": "System.Nullable`1[System.Int64]", - "Etag": "System.String", - "ProvisioningState": "System.String", - "ConnectionStatus": "System.String", - "VpnConnectionProtocolType": "System.String", - "VpnLinkConnectionMode": "System.String", - "IngressNatRulesText": "System.String", - "EgressNatRulesText": "System.String", - "VpnGatewayCustomBgpAddressesText": "System.String", - "Name": "System.String", - "SharedKey": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "VpnSiteId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, { - "Name": "AsJob", + "Name": "VpnSite", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -97202,7 +94658,7 @@ ], "ParameterSets": [ { - "Name": "ByName", + "Name": "ByVirtualWanNameByVpnSiteObject", "Parameters": [ { "ParameterMetadata": { @@ -97221,9 +94677,10 @@ }, { "ParameterMetadata": { - "Name": "VpnGatewayName", + "Name": "Name", "AliasList": [ - "GrandParentName" + "ResourceName", + "VirtualWanName" ], "Type": { "Namespace": "System", @@ -97239,14 +94696,12 @@ }, { "ParameterMetadata": { - "Name": "VpnConnectionName", - "AliasList": [ - "ParentName" - ], + "Name": "VpnSite", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite" }, "ValidateNotNullOrEmpty": true }, @@ -97257,11 +94712,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnSiteLinkConnectionName" - ], + "Name": "StorageSasUrl", "Type": { "Namespace": "System", "Name": "System.String", @@ -97274,21 +94725,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -97318,123 +94754,69 @@ ] }, { - "Name": "ByInputObject", + "Name": "ByVirtualWanNameByVpnSiteResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "VpnSiteLinkConnection" - ], + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "UsePolicyBasedTrafficSelectors": "System.Boolean", - "EnableBgp": "System.Boolean", - "UseLocalAzureIpAddress": "System.Boolean", - "VpnGatewayCustomBgpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", - "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConnectionBandwidth": "System.Int32", - "RoutingWeight": "System.Int32", - "EgressBytesTransferred": "System.Nullable`1[System.Int64]", - "IngressBytesTransferred": "System.Nullable`1[System.Int64]", - "Etag": "System.String", - "ProvisioningState": "System.String", - "ConnectionStatus": "System.String", - "VpnConnectionProtocolType": "System.String", - "VpnLinkConnectionMode": "System.String", - "IngressNatRulesText": "System.String", - "EgressNatRulesText": "System.String", - "VpnGatewayCustomBgpAddressesText": "System.String", - "Name": "System.String", - "SharedKey": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "Name", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "ResourceName", + "VirtualWanName" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByResourceId", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "VpnSiteId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "StorageSasUrl", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -97468,321 +94850,69 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "ByVirtualWanObjectByVpnSiteObject", "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "InputObject", + "AliasList": [ + "VirtualWan" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "VirtualWANType": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Invoke", - "NounName": "AzFirewallPacketCapture", - "Name": "Invoke-AzFirewallPacketCapture", - "ClassName": "Microsoft.Azure.Commands.Network.InvokeAzureFirewallPacketCaptureCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Flags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags]", - "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule]", - "SasUrl": "System.String", - "FileName": "System.String", - "Protocol": "System.String", - "FlagsText": "System.String", - "FiltersText": "System.String", - "DurationInSeconds": "System.UInt32", - "NumberOfPacketsToCapture": "System.UInt32" - }, - "Methods": [ - { - "Name": "AddFilter", - "Parameters": [ - { - "Name": "rule", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AzureFirewall", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", - "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", - "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", - "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", - "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "NetworkRuleCollectionsText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "DNSServersText": "System.String", - "PrivateRangeText": "System.String", - "ThreatIntelWhitelistText": "System.String", - "Name": "System.String", - "NatRuleCollectionsText": "System.String", - "EnableFatFlowLogging": "System.String", - "ManagementIpConfigurationText": "System.String", - "IpConfigurationsText": "System.String", - "RouteServerId": "System.String", - "EnableUDPLogOptimization": "System.String", - "Etag": "System.String", - "AllowActiveFTP": "System.String", - "ProvisioningState": "System.String", - "DNSEnableProxy": "System.String", - "ThreatIntelMode": "System.String", - "ApplicationRuleCollectionsText": "System.String", - "Id": "System.String", - "DNSServer": "System.String[]", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Parameter", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Flags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags]", - "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule]", - "SasUrl": "System.String", - "FileName": "System.String", - "Protocol": "System.String", - "FlagsText": "System.String", - "FiltersText": "System.String", - "DurationInSeconds": "System.UInt32", - "NumberOfPacketsToCapture": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AzureFirewall", + "Name": "VpnSite", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", - "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", - "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", - "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", - "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "NetworkRuleCollectionsText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "DNSServersText": "System.String", - "PrivateRangeText": "System.String", - "ThreatIntelWhitelistText": "System.String", - "Name": "System.String", - "NatRuleCollectionsText": "System.String", - "EnableFatFlowLogging": "System.String", - "ManagementIpConfigurationText": "System.String", - "IpConfigurationsText": "System.String", - "RouteServerId": "System.String", - "EnableUDPLogOptimization": "System.String", - "Etag": "System.String", - "AllowActiveFTP": "System.String", - "ProvisioningState": "System.String", - "DNSEnableProxy": "System.String", - "ThreatIntelMode": "System.String", - "ApplicationRuleCollectionsText": "System.String", - "Id": "System.String", - "DNSServer": "System.String[]", - "PrivateRange": "System.String[]" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Parameter", + "Name": "StorageSasUrl", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Flags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags]", - "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule]", - "SasUrl": "System.String", - "FileName": "System.String", - "Protocol": "System.String", - "FlagsText": "System.String", - "FiltersText": "System.String", - "DurationInSeconds": "System.UInt32", - "NumberOfPacketsToCapture": "System.UInt32" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, @@ -97813,198 +94943,26 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Invoke", - "NounName": "AzNetworkWatcherNetworkConfigurationDiagnostic", - "Name": "Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic", - "ClassName": "Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]", - "ResultsText": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkWatcherName", - "AliasList": [ - "Name" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TargetResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VerbosityLevel", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Profile", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" - ] - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "SetByResource", + "Name": "ByVirtualWanObjectByVpnSiteResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcher", + "Name": "InputObject", + "AliasList": [ + "VirtualWan" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", + "VirtualWANType": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", @@ -98015,7 +94973,7 @@ "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -98024,22 +94982,23 @@ }, { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "VpnSiteId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VerbosityLevel", + "Name": "StorageSasUrl", "Type": { "Namespace": "System", "Name": "System.String", @@ -98047,44 +95006,11 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Profile", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" - ] - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -98114,13 +95040,13 @@ ] }, { - "Name": "SetByName", + "Name": "ByVirtualWanResourceIdByVpnSiteObject", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcherName", + "Name": "ResourceId", "AliasList": [ - "Name" + "VirtualWanId" ], "Type": { "Namespace": "System", @@ -98132,63 +95058,16 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TargetResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VerbosityLevel", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Profile", + "Name": "VpnSite", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSite" }, "ValidateNotNullOrEmpty": true }, @@ -98199,83 +95078,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByLocation", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TargetResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "VerbosityLevel", + "Name": "StorageSasUrl", "Type": { "Namespace": "System", "Name": "System.String", @@ -98283,44 +95086,11 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Profile", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" - ] - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -98350,17 +95120,20 @@ ] }, { - "Name": "SetByResourceId", + "Name": "ByVirtualWanResourceIdByVpnSiteResourceId", "Parameters": [ { "ParameterMetadata": { "Name": "ResourceId", + "AliasList": [ + "VirtualWanId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -98369,22 +95142,23 @@ }, { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "VpnSiteId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VerbosityLevel", + "Name": "StorageSasUrl", "Type": { "Namespace": "System", "Name": "System.String", @@ -98392,44 +95166,11 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Profile", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" - ] - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -98463,22 +95204,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "TargetResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "VerbosityLevel", + "Name": "StorageSasUrl", "Type": { "Namespace": "System", "Name": "System.String", @@ -98486,44 +95212,11 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Profile", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" - ] - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -98555,53 +95248,23 @@ ] }, { - "VerbName": "Move", - "NounName": "AzExpressRouteCircuit", - "Name": "Move-AzExpressRouteCircuit", - "ClassName": "Microsoft.Azure.Commands.Network.MoveAzureExpressRouteCircuitCommand", - "SupportsShouldProcess": true, + "VerbName": "Get", + "NounName": "AzVirtualWanVpnServerConfiguration", + "Name": "Get-AzVirtualWanVpnServerConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanVpnServerConfigurationsCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByVirtualWanName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationsResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" + "VpnServerConfigurationResourceIds": "System.Collections.Generic.List`1[System.String]", + "VpnServerConfigurationResourceIdsText": "System.String" }, "Methods": [ { @@ -98661,16 +95324,37 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "VirtualWanObject", + "AliasList": [ + "VirtualWan" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "VirtualWANType": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "ServiceKey", + "Name": "ResourceId", + "AliasList": [ + "VirtualWanId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -98678,33 +95362,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -98728,7 +95385,7 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByVirtualWanName", "Parameters": [ { "ParameterMetadata": { @@ -98765,56 +95422,86 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "ServiceKey", + "Name": "VirtualWanObject", + "AliasList": [ + "VirtualWan" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "VirtualWANType": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -98822,21 +95509,29 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "ByVirtualWanResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceId", + "AliasList": [ + "VirtualWanId" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -98865,94 +95560,57 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGateway", - "Name": "New-AzApplicationGateway", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "IdentityByUserAssignedIdentityId", + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVirtualWanVpnServerConfigurationVpnProfile", + "Name": "Get-AzVirtualWanVpnServerConfigurationVpnProfile", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVirtualWanVpnServerConfigurationVpnProfileCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByVirtualWanNameByVpnServerConfigurationObject", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfileResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" + "ProfileUrl": "System.String" }, "Methods": [ { @@ -99012,281 +95670,20 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Sku", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Capacity": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "Tier": "System.String", - "Family": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SslPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", - "CipherSuites": "System.Collections.Generic.List`1[System.String]", - "PolicyType": "System.String", - "PolicyName": "System.String", - "MinProtocolVersion": "System.String", - "DisabledSslProtocolsText": "System.String", - "CipherSuitesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "GatewayIPConfigurations", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SslCertificates", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AuthenticationCertificates", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TrustedRootCertificate", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TrustedClientCertificates", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FrontendIPConfigurations", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FrontendPorts", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Probes", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendAddressPools", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendHttpSettingsCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendSettingsCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SslProfiles", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpListeners", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Listeners", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UrlPathMaps", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RequestRoutingRules", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RoutingRules", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RewriteRuleSet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RedirectConfigurations", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "WebApplicationFirewallConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Enabled": "System.Boolean", - "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", - "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", - "RequestBodyCheck": "System.Nullable`1[System.Boolean]", - "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", - "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", - "FirewallMode": "System.String", - "RuleSetType": "System.String", - "RuleSetVersion": "System.String", - "DisabledRuleGroupsText": "System.String", - "ExclusionsText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FirewallPolicyId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FirewallPolicy", + "Name": "VirtualWanObject", + "AliasList": [ + "VirtualWan" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", "Tag": "System.Collections.Hashtable", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "CustomBlockResponseBody": "System.String", + "ProvisioningState": "System.String", + "VirtualWANType": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", @@ -99297,95 +95694,12 @@ "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AutoscaleConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "MinCapacity": "System.Int32", - "MaxCapacity": "System.Nullable`1[System.Int32]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableHttp2", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableFIPS", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableRequestBuffering", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableResponseBuffering", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ForceFirewallPolicyAssociation", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "UserAssignedIdentityId", + "Name": "ResourceId", "AliasList": [ - "UserAssignedIdentity" + "VirtualWanId" ], "Type": { "Namespace": "System", @@ -99395,56 +95709,68 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Identity", + "Name": "VpnServerConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "VpnServerConfigurationId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "CustomErrorConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PrivateLinkConfiguration", + "Name": "AuthenticationMethod", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], "ValidateNotNullOrEmpty": false }, { @@ -99470,7 +95796,7 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByVirtualWanNameByVpnServerConfigurationObject", "Parameters": [ { "ParameterMetadata": { @@ -99485,10 +95811,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -99503,59 +95829,93 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "VpnServerConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "AuthenticationMethod", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Capacity": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "Tier": "System.String", - "Family": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SslPolicy", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", - "CipherSuites": "System.Collections.Generic.List`1[System.String]", - "PolicyType": "System.String", - "PolicyName": "System.String", - "MinProtocolVersion": "System.String", - "DisabledSslProtocolsText": "System.String", - "CipherSuitesText": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -99563,350 +95923,527 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanNameByVpnServerConfigurationResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "GatewayIPConfigurations", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SslCertificates", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AuthenticationCertificates", + "Name": "VpnServerConfigurationId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TrustedRootCertificate", + "Name": "AuthenticationMethod", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TrustedClientCertificates", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanObjectByVpnServerConfigurationObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "FrontendIPConfigurations", + "Name": "VirtualWanObject", + "AliasList": [ + "VirtualWan" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "VirtualWANType": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FrontendPorts", + "Name": "VpnServerConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Probes", + "Name": "AuthenticationMethod", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendAddressPools", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanObjectByVpnServerConfigurationResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "BackendHttpSettingsCollection", + "Name": "VirtualWanObject", + "AliasList": [ + "VirtualWan" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "VirtualWANType": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendSettingsCollection", + "Name": "VpnServerConfigurationId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SslProfiles", + "Name": "AuthenticationMethod", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpListeners", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanResourceIdByVpnServerConfigurationObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "Listeners", + "Name": "ResourceId", + "AliasList": [ + "VirtualWanId" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "UrlPathMaps", + "Name": "VpnServerConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RequestRoutingRules", + "Name": "AuthenticationMethod", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingRules", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanResourceIdByVpnServerConfigurationResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "RewriteRuleSet", + "Name": "ResourceId", + "AliasList": [ + "VirtualWanId" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RedirectConfigurations", + "Name": "VpnServerConfigurationId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "WebApplicationFirewallConfiguration", + "Name": "AuthenticationMethod", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Enabled": "System.Boolean", - "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", - "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", - "RequestBodyCheck": "System.Nullable`1[System.Boolean]", - "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", - "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", - "FirewallMode": "System.String", - "RuleSetType": "System.String", - "RuleSetVersion": "System.String", - "DisabledRuleGroupsText": "System.String", - "ExclusionsText": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AutoscaleConfiguration", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "MinCapacity": "System.Int32", - "MaxCapacity": "System.Nullable`1[System.Int32]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -99914,16 +96451,25 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableHttp2", + "Name": "AuthenticationMethod", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "EAPTLS", + "EAPMSCHAPv2" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -99933,11 +96479,22 @@ }, { "ParameterMetadata": { - "Name": "EnableFIPS", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -99945,50 +96502,162 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnClientConfiguration", + "Name": "Get-AzVpnClientConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.GetAzureVpnClientConfigurationCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VpnProfileSASUrl": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableRequestBuffering", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableResponseBuffering", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ForceFirewallPolicyAssociation", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -99996,45 +96665,169 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnClientIpsecParameter", + "Name": "Get-AzVpnClientIpsecParameter", + "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.GetAzureVpnClientIpsecParametersCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SaLifeTimeSeconds": "System.Int32", + "SaDataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Zone", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -100042,50 +96835,134 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnClientPackage", + "Name": "Get-AzVpnClientPackage", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVpnClientPackage", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VirtualNetworkGatewayName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProcessorArchitecture", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Amd64", + "X86" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomErrorConfiguration", + "Name": "VirtualNetworkGatewayName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateLinkConfiguration", + "Name": "ProcessorArchitecture", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Amd64", + "X86" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -100117,28 +96994,125 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnClientRevokedCertificate", + "Name": "Get-AzVpnClientRevokedCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVpnClientRevokedCertificates", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Thumbprint": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "VpnClientRevokedCertificateName", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "SetByResourceId", + "Name": "VirtualNetworkGatewayName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "FirewallPolicyId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", + "Name": "VpnClientRevokedCertificateName", "AliasList": [ "ResourceName" ], @@ -100149,14 +97123,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VirtualNetworkGatewayName", "Type": { "Namespace": "System", "Name": "System.String", @@ -100171,7 +97145,7 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -100186,40 +97160,21 @@ }, { "ParameterMetadata": { - "Name": "Sku", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Capacity": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "Tier": "System.String", - "Family": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SslPolicy", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", - "CipherSuites": "System.Collections.Generic.List`1[System.String]", - "PolicyType": "System.String", - "PolicyName": "System.String", - "MinProtocolVersion": "System.String", - "DisabledSslProtocolsText": "System.String", - "CipherSuitesText": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -100227,82 +97182,137 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "GatewayIPConfigurations", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnClientRootCertificate", + "Name": "Get-AzVpnClientRootCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureVpnClientRootCertificates", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicCertData": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "SslCertificates", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AuthenticationCertificates", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TrustedRootCertificate", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "VpnClientRootCertificateName", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VirtualNetworkGatewayName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "TrustedClientCertificates", + "Name": "VpnClientRootCertificateName", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -100311,30 +97321,28 @@ }, { "ParameterMetadata": { - "Name": "FrontendIPConfigurations", + "Name": "VirtualNetworkGatewayName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FrontendPorts", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -100343,234 +97351,441 @@ }, { "ParameterMetadata": { - "Name": "Probes", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnConnection", + "Name": "Get-AzVpnConnection", + "ClassName": "Microsoft.Azure.Commands.Network.Cortex.VpnGateway.GetAzureRmVpnConnectionCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByVpnGatewayName", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "UsePolicyBasedTrafficSelectors": "System.Boolean", + "UseLocalAzureIpAddress": "System.Boolean", + "EnableBgp": "System.Boolean", + "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", + "VpnLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]", + "ConnectionBandwidth": "System.Int32", + "EgressBytesTransferred": "System.Nullable`1[System.Int64]", + "IngressBytesTransferred": "System.Nullable`1[System.Int64]", + "Etag": "System.String", + "ConnectionStatus": "System.String", + "ProvisioningState": "System.String", + "VpnConnectionProtocolType": "System.String", + "SharedKey": "System.String", + "RoutingConfigurationText": "System.String", + "Name": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "BackendAddressPools", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendHttpSettingsCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendSettingsCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ParentResourceName", + "AliasList": [ + "ParentVpnGatewayName", + "VpnGatewayName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ParentObject", + "AliasList": [ + "ParentVpnGateway", + "VpnGateway" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ParentResourceId", + "AliasList": [ + "ParentVpnGatewayId", + "VpnGatewayId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnConnectionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByVpnGatewayName", + "Parameters": [ { "ParameterMetadata": { - "Name": "SslProfiles", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpListeners", + "Name": "ParentResourceName", + "AliasList": [ + "ParentVpnGatewayName", + "VpnGatewayName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Listeners", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnConnectionName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UrlPathMaps", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVpnGatewayObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "RequestRoutingRules", + "Name": "ParentObject", + "AliasList": [ + "ParentVpnGateway", + "VpnGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingRules", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnConnectionName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RewriteRuleSet", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVpnGatewayResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "RedirectConfigurations", + "Name": "ParentResourceId", + "AliasList": [ + "ParentVpnGatewayId", + "VpnGatewayId" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "WebApplicationFirewallConfiguration", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnConnectionName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Enabled": "System.Boolean", - "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", - "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", - "RequestBodyCheck": "System.Nullable`1[System.Boolean]", - "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", - "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", - "FirewallMode": "System.String", - "RuleSetType": "System.String", - "RuleSetVersion": "System.String", - "DisabledRuleGroupsText": "System.String", - "ExclusionsText": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AutoscaleConfiguration", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "MinCapacity": "System.Int32", - "MaxCapacity": "System.Nullable`1[System.Int32]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -100578,17 +97793,26 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableHttp2", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnConnectionName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -100597,11 +97821,22 @@ }, { "ParameterMetadata": { - "Name": "EnableFIPS", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -100609,19 +97844,138 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnGateway", + "Name": "Get-AzVpnGateway", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVpnGatewayCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ListBySubscriptionId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ListByResourceGroupName", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableRequestBuffering", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -100630,16 +97984,17 @@ }, { "ParameterMetadata": { - "Name": "EnableResponseBuffering", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayName" + ], "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -100648,11 +98003,22 @@ }, { "ParameterMetadata": { - "Name": "ForceFirewallPolicyAssociation", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -100660,15 +98026,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Zone", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -100676,83 +98057,237 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnGatewayNatRule", + "Name": "Get-AzVpnGatewayNatRule", + "ClassName": "Microsoft.Azure.Commands.Network.Cortex.VpnGateway.GetAzureRmVpnGatewayNatRuleCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByVpnGatewayName", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", + "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", + "VpnGatewayNatRulePropertiesType": "System.String", + "Mode": "System.String", + "IpConfigurationId": "System.String", + "ProvisioningState": "System.String", + "InternalMappingsText": "System.String", + "ExternalMappingsText": "System.String", + "IngressVpnSiteLinkConnectionsText": "System.String", + "EgressVpnSiteLinkConnectionsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ParentResourceName", + "AliasList": [ + "ParentVpnGatewayName", + "VpnGatewayName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ParentObject", + "AliasList": [ + "ParentVpnGateway", + "VpnGateway" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ParentResourceId", + "AliasList": [ + "ParentVpnGatewayId", + "VpnGatewayId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayNatRuleName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByVpnGatewayName", + "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomErrorConfiguration", + "Name": "ParentResourceName", + "AliasList": [ + "ParentVpnGatewayName", + "VpnGatewayName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateLinkConfiguration", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayNatRuleName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -100783,44 +98318,53 @@ ] }, { - "Name": "SetByResource", + "Name": "ByVpnGatewayObject", "Parameters": [ { "ParameterMetadata": { - "Name": "FirewallPolicy", + "Name": "ParentObject", + "AliasList": [ + "ParentVpnGateway", + "VpnGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", "Tag": "System.Collections.Hashtable", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "CustomBlockResponseBody": "System.String", + "VpnGatewayScaleUnit": "System.Int32", + "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Etag": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", + "ProvisioningState": "System.String", "TagsTable": "System.String", "Name": "System.String", - "Etag": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName" + "ResourceName", + "VpnGatewayNatRuleName" ], "Type": { "Namespace": "System", @@ -100829,29 +98373,49 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVpnGatewayResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "ParentResourceId", + "AliasList": [ + "ParentVpnGatewayId", + "VpnGatewayId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -100866,40 +98430,40 @@ }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayNatRuleName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Capacity": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "Tier": "System.String", - "Family": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SslPolicy", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", - "CipherSuites": "System.Collections.Generic.List`1[System.String]", - "PolicyType": "System.String", - "PolicyName": "System.String", - "MinProtocolVersion": "System.String", - "DisabledSslProtocolsText": "System.String", - "CipherSuitesText": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -100907,331 +98471,592 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "GatewayIPConfigurations", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayNatRuleName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SslCertificates", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AuthenticationCertificates", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TrustedRootCertificate", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnServerConfiguration", + "Name": "Get-AzVpnServerConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVpnServerConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ListBySubscriptionId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "TrustedClientCertificates", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendIPConfigurations", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPorts", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnServerConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ListByResourceGroupName", + "Parameters": [ { "ParameterMetadata": { - "Name": "Probes", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendAddressPools", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendHttpSettingsCollection", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnServerConfigurationName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendSettingsCollection", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "SslProfiles", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnServerConfigurationPolicyGroup", + "Name": "Get-AzVpnServerConfigurationPolicyGroup", + "ClassName": "Microsoft.Azure.Commands.Network.Cortex.VpnServerConfiguration.GetAzureRmVpnServerConfigurationPolicyGroupCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByVpnServerConfigurationName", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IsDefault": "System.Boolean", + "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PolicyMembers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember]", + "Priority": "System.Int32", + "ProvisioningState": "System.String", + "PolicyMembersText": "System.String", + "P2SConnectionConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "HttpListeners", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Listeners", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServerConfigurationName", + "AliasList": [ + "ParentVpnServerConfigurationName", + "VpnServerConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnServerConfigurationPolicyGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServerConfigurationObject", + "AliasList": [ + "ParentVpnServerConfiguration", + "VpnServerConfiguration" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServerConfigurationResourceId", + "AliasList": [ + "ParentVpnServerConfigurationId", + "VpnServerConfigurationId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByVpnServerConfigurationName", + "Parameters": [ { "ParameterMetadata": { - "Name": "UrlPathMaps", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RequestRoutingRules", + "Name": "ServerConfigurationName", + "AliasList": [ + "ParentVpnServerConfigurationName", + "VpnServerConfigurationName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingRules", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnServerConfigurationPolicyGroupName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RewriteRuleSet", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "RedirectConfigurations", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnServerConfigurationPolicyGroupName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "WebApplicationFirewallConfiguration", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Enabled": "System.Boolean", - "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", - "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", - "RequestBodyCheck": "System.Nullable`1[System.Boolean]", - "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", - "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", - "FirewallMode": "System.String", - "RuleSetType": "System.String", - "RuleSetVersion": "System.String", - "DisabledRuleGroupsText": "System.String", - "ExclusionsText": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -101239,36 +99064,79 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVpnServerConfigurationObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "AutoscaleConfiguration", + "Name": "ServerConfigurationObject", + "AliasList": [ + "ParentVpnServerConfiguration", + "VpnServerConfiguration" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "MinCapacity": "System.Int32", - "MaxCapacity": "System.Nullable`1[System.Int32]" + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableHttp2", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnServerConfigurationPolicyGroupName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -101277,11 +99145,22 @@ }, { "ParameterMetadata": { - "Name": "EnableFIPS", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -101289,37 +99168,44 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "ByVpnServerConfigurationResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableRequestBuffering", + "Name": "ServerConfigurationResourceId", + "AliasList": [ + "ParentVpnServerConfigurationId", + "VpnServerConfigurationId" + ], "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableResponseBuffering", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnServerConfigurationPolicyGroupName" + ], "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -101328,11 +99214,22 @@ }, { "ParameterMetadata": { - "Name": "ForceFirewallPolicyAssociation", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -101340,62 +99237,138 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnSite", + "Name": "Get-AzVpnSite", + "ClassName": "Microsoft.Azure.Commands.Network.GetAzureRmVpnSiteCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ListBySubscriptionId", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", + "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", + "Tag": "System.Collections.Hashtable", + "IsSecuritySite": "System.Nullable`1[System.Boolean]", + "IpAddress": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ListByResourceGroupName", + "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -101404,12 +99377,15 @@ }, { "ParameterMetadata": { - "Name": "CustomErrorConfiguration", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -101418,22 +99394,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PrivateLinkConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -101463,62 +99423,192 @@ ] }, { - "Name": "IdentityByUserAssignedIdentityId", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", + "Name": "DefaultProfile", "AliasList": [ - "UserAssignedIdentity" + "AzContext", + "AzureRmContext", + "AzureCredential" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Get", + "NounName": "AzVpnSiteLinkConnectionIkeSa", + "Name": "Get-AzVpnSiteLinkConnectionIkeSa", + "ClassName": "Microsoft.Azure.Commands.Network.Cortex.VpnConnection.GetAzVpnSiteLinkConnectionIkeSaCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByName", + "OutputTypes": [ + { + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa" + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnGatewayName", + "AliasList": [ + "GrandParentName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnConnectionName", + "AliasList": [ + "ParentName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteLinkConnectionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "AliasList": [ + "VpnSiteLinkConnection" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "UsePolicyBasedTrafficSelectors": "System.Boolean", + "EnableBgp": "System.Boolean", + "UseLocalAzureIpAddress": "System.Boolean", + "VpnGatewayCustomBgpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", + "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConnectionBandwidth": "System.Int32", + "RoutingWeight": "System.Int32", + "EgressBytesTransferred": "System.Nullable`1[System.Int64]", + "IngressBytesTransferred": "System.Nullable`1[System.Int64]", + "Etag": "System.String", + "ProvisioningState": "System.String", + "ConnectionStatus": "System.String", + "VpnConnectionProtocolType": "System.String", + "VpnLinkConnectionMode": "System.String", + "IngressNatRulesText": "System.String", + "EgressNatRulesText": "System.String", + "VpnGatewayCustomBgpAddressesText": "System.String", + "Name": "System.String", + "SharedKey": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByName", + "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -101529,159 +99619,207 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "VpnGatewayName", + "AliasList": [ + "GrandParentName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Capacity": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "Tier": "System.String", - "Family": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SslPolicy", + "Name": "VpnConnectionName", + "AliasList": [ + "ParentName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", - "CipherSuites": "System.Collections.Generic.List`1[System.String]", - "PolicyType": "System.String", - "PolicyName": "System.String", - "MinProtocolVersion": "System.String", - "DisabledSslProtocolsText": "System.String", - "CipherSuitesText": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GatewayIPConfigurations", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteLinkConnectionName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SslCertificates", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AuthenticationCertificates", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByInputObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "TrustedRootCertificate", + "Name": "InputObject", + "AliasList": [ + "VpnSiteLinkConnection" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "UsePolicyBasedTrafficSelectors": "System.Boolean", + "EnableBgp": "System.Boolean", + "UseLocalAzureIpAddress": "System.Boolean", + "VpnGatewayCustomBgpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", + "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConnectionBandwidth": "System.Int32", + "RoutingWeight": "System.Int32", + "EgressBytesTransferred": "System.Nullable`1[System.Int64]", + "IngressBytesTransferred": "System.Nullable`1[System.Int64]", + "Etag": "System.String", + "ProvisioningState": "System.String", + "ConnectionStatus": "System.String", + "VpnConnectionProtocolType": "System.String", + "VpnLinkConnectionMode": "System.String", + "IngressNatRulesText": "System.String", + "EgressNatRulesText": "System.String", + "VpnGatewayCustomBgpAddressesText": "System.String", + "Name": "System.String", + "SharedKey": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TrustedClientCertificates", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FrontendIPConfigurations", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "FrontendPorts", + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -101690,234 +99828,682 @@ }, { "ParameterMetadata": { - "Name": "Probes", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendAddressPools", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "BackendHttpSettingsCollection", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendSettingsCollection", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Invoke", + "NounName": "AzFirewallPacketCapture", + "Name": "Invoke-AzFirewallPacketCapture", + "ClassName": "Microsoft.Azure.Commands.Network.InvokeAzureFirewallPacketCaptureCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Flags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags]", + "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule]", + "SasUrl": "System.String", + "FileName": "System.String", + "Protocol": "System.String", + "FlagsText": "System.String", + "FiltersText": "System.String", + "DurationInSeconds": "System.UInt32", + "NumberOfPacketsToCapture": "System.UInt32" }, + "Methods": [ + { + "Name": "AddFilter", + "Parameters": [ + { + "Name": "rule", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "AzureFirewall", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", + "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", + "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", + "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", + "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", + "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", + "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "NetworkRuleCollectionsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "DNSServersText": "System.String", + "PrivateRangeText": "System.String", + "ThreatIntelWhitelistText": "System.String", + "Name": "System.String", + "NatRuleCollectionsText": "System.String", + "EnableFatFlowLogging": "System.String", + "ManagementIpConfigurationText": "System.String", + "IpConfigurationsText": "System.String", + "RouteServerId": "System.String", + "EnableUDPLogOptimization": "System.String", + "Etag": "System.String", + "AllowActiveFTP": "System.String", + "ProvisioningState": "System.String", + "DNSEnableProxy": "System.String", + "ThreatIntelMode": "System.String", + "ApplicationRuleCollectionsText": "System.String", + "Id": "System.String", + "DNSServer": "System.String[]", + "PrivateRange": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Parameter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Flags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags]", + "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule]", + "SasUrl": "System.String", + "FileName": "System.String", + "Protocol": "System.String", + "FlagsText": "System.String", + "FiltersText": "System.String", + "DurationInSeconds": "System.UInt32", + "NumberOfPacketsToCapture": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "SslProfiles", + "Name": "AzureFirewall", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", + "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", + "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", + "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", + "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", + "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", + "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "NetworkRuleCollectionsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "DNSServersText": "System.String", + "PrivateRangeText": "System.String", + "ThreatIntelWhitelistText": "System.String", + "Name": "System.String", + "NatRuleCollectionsText": "System.String", + "EnableFatFlowLogging": "System.String", + "ManagementIpConfigurationText": "System.String", + "IpConfigurationsText": "System.String", + "RouteServerId": "System.String", + "EnableUDPLogOptimization": "System.String", + "Etag": "System.String", + "AllowActiveFTP": "System.String", + "ProvisioningState": "System.String", + "DNSEnableProxy": "System.String", + "ThreatIntelMode": "System.String", + "ApplicationRuleCollectionsText": "System.String", + "Id": "System.String", + "DNSServer": "System.String[]", + "PrivateRange": "System.String[]" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HttpListeners", + "Name": "Parameter", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Flags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags]", + "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule]", + "SasUrl": "System.String", + "FileName": "System.String", + "Protocol": "System.String", + "FlagsText": "System.String", + "FiltersText": "System.String", + "DurationInSeconds": "System.UInt32", + "NumberOfPacketsToCapture": "System.UInt32" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Listeners", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UrlPathMaps", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Invoke", + "NounName": "AzNetworkWatcherNetworkConfigurationDiagnostic", + "Name": "Invoke-AzNetworkWatcherNetworkConfigurationDiagnostic", + "ClassName": "Microsoft.Azure.Commands.Network.InvokeNetworkWatcherNetworkConfigurationDiagnosticCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "SetByResource", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]", + "ResultsText": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkWatcherName", + "AliasList": [ + "Name" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TargetResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VerbosityLevel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Profile", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "SetByResource", + "Parameters": [ { "ParameterMetadata": { - "Name": "RequestRoutingRules", + "Name": "NetworkWatcher", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingRules", + "Name": "TargetResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RewriteRuleSet", + "Name": "VerbosityLevel", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RedirectConfigurations", + "Name": "Profile", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" + ] }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "WebApplicationFirewallConfiguration", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Enabled": "System.Boolean", - "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", - "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", - "RequestBodyCheck": "System.Nullable`1[System.Boolean]", - "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", - "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", - "FirewallMode": "System.String", - "RuleSetType": "System.String", - "RuleSetVersion": "System.String", - "DisabledRuleGroupsText": "System.String", - "ExclusionsText": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AutoscaleConfiguration", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "MinCapacity": "System.Int32", - "MaxCapacity": "System.Nullable`1[System.Int32]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -101925,99 +100511,70 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByName", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableHttp2", + "Name": "NetworkWatcherName", + "AliasList": [ + "Name" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableFIPS", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableRequestBuffering", + "Name": "TargetResourceId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableResponseBuffering", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ForceFirewallPolicyAssociation", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "VerbosityLevel", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -102026,30 +100583,18 @@ }, { "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", + "Name": "Profile", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" + ] }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -102069,38 +100614,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "CustomErrorConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateLinkConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -102130,50 +100643,26 @@ ] }, { - "Name": "IdentityByIdentityObject", + "Name": "SetByLocation", "Parameters": [ { "ParameterMetadata": { - "Name": "Identity", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -102188,7 +100677,7 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "VerbosityLevel", "Type": { "Namespace": "System", "Name": "System.String", @@ -102196,160 +100685,82 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Sku", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Capacity": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "Tier": "System.String", - "Family": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SslPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", - "CipherSuites": "System.Collections.Generic.List`1[System.String]", - "PolicyType": "System.String", - "PolicyName": "System.String", - "MinProtocolVersion": "System.String", - "DisabledSslProtocolsText": "System.String", - "CipherSuitesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GatewayIPConfigurations", + "Name": "Profile", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" + ] }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SslCertificates", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AuthenticationCertificates", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TrustedRootCertificate", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TrustedClientCertificates", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FrontendIPConfigurations", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "FrontendPorts", + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -102360,30 +100771,13 @@ }, { "ParameterMetadata": { - "Name": "Probes", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendAddressPools", + "Name": "TargetResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -102392,229 +100786,40 @@ }, { "ParameterMetadata": { - "Name": "BackendHttpSettingsCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendSettingsCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SslProfiles", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "HttpListeners", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Listeners", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "UrlPathMaps", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "RequestRoutingRules", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "RoutingRules", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "RewriteRuleSet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "RedirectConfigurations", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "WebApplicationFirewallConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Enabled": "System.Boolean", - "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", - "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", - "RequestBodyCheck": "System.Nullable`1[System.Boolean]", - "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", - "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", - "FirewallMode": "System.String", - "RuleSetType": "System.String", - "RuleSetVersion": "System.String", - "DisabledRuleGroupsText": "System.String", - "ExclusionsText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AutoscaleConfiguration", + "Name": "VerbosityLevel", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "MinCapacity": "System.Int32", - "MaxCapacity": "System.Nullable`1[System.Int32]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableHttp2", + "Name": "Profile", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" + ] }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableFIPS", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -102629,14 +100834,22 @@ }, { "ParameterMetadata": { - "Name": "EnableRequestBuffering", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -102644,50 +100857,36 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableResponseBuffering", + "Name": "TargetResourceId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ForceFirewallPolicyAssociation", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "VerbosityLevel", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -102696,30 +100895,18 @@ }, { "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", + "Name": "Profile", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile" + ] }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -102739,38 +100926,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "CustomErrorConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateLinkConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -102802,10 +100957,10 @@ ] }, { - "VerbName": "New", - "NounName": "AzApplicationGatewayAuthenticationCertificate", - "Name": "New-AzApplicationGatewayAuthenticationCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayAuthenticationCertificateCommand", + "VerbName": "Move", + "NounName": "AzExpressRouteCircuit", + "Name": "Move-AzExpressRouteCircuit", + "ClassName": "Microsoft.Azure.Commands.Network.MoveAzureExpressRouteCircuitCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -102814,14 +100969,40 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Data": "System.String", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Tag": "System.Collections.Hashtable", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", "ProvisioningState": "System.String", - "Type": "System.String", "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" }, "Methods": [ @@ -102862,6 +101043,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -102870,7 +101054,25 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "CertificateFile", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServiceKey", "Type": { "Namespace": "System", "Name": "System.String", @@ -102878,6 +101080,33 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -102906,6 +101135,9 @@ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -102916,11 +101148,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "CertificateFile", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -102931,164 +101163,75 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayAutoscaleConfiguration", - "Name": "New-AzApplicationGatewayAutoscaleConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayAutoscaleConfigurationCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "MinCapacity": "System.Int32", - "MaxCapacity": "System.Nullable`1[System.Int32]" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" + { + "ParameterMetadata": { + "Name": "ServiceKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MinCapacity", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaxCapacity", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "MinCapacity", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MaxCapacity", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -103129,39 +101272,91 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayBackendAddressPool", - "Name": "New-AzApplicationGatewayBackendAddressPool", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand", + "NounName": "AzApplicationGateway", + "Name": "New-AzApplicationGateway", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "IdentityByUserAssignedIdentityId", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", "Id": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeBackendAddresses", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeBackendIpConfigurations", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -103199,6 +101394,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -103207,336 +101405,326 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "BackendIPAddresses", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "BackendFqdns", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Sku", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "Capacity": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "Tier": "System.String", + "Family": "System.String" } }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BackendIPAddresses", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BackendFqdns", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayBackendHttpSetting", - "Name": "New-AzApplicationGatewayBackendHttpSetting", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + "ValidateNotNullOrEmpty": true + }, { + "Name": "SslPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", - "Name": "System.String", - "CookieBasedAffinity": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "ShouldSerializePort", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeRequestTimeout", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeAuthenticationCertificates", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", + "CipherSuites": "System.Collections.Generic.List`1[System.String]", + "PolicyType": "System.String", + "PolicyName": "System.String", + "MinProtocolVersion": "System.String", + "DisabledSslProtocolsText": "System.String", + "CipherSuitesText": "System.String" + } }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ + "ValidateNotNullOrEmpty": false + }, { - "Name": "Name", + "Name": "GatewayIPConfigurations", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" }, "ValidateNotNullOrEmpty": true }, { - "Name": "Port", + "Name": "SslCertificates", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Protocol", + "Name": "AuthenticationCertificates", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" }, - "ValidateSet": [ - "Http", - "Https" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "CookieBasedAffinity", + "Name": "TrustedRootCertificate", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, - "ValidateSet": [ - "Enabled", - "Disabled" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "RequestTimeout", + "Name": "TrustedClientCertificates", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ConnectionDraining", + "Name": "FrontendIPConfigurations", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FrontendPorts", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Probes", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendAddressPools", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendHttpSettingsCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendSettingsCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SslProfiles", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HttpListeners", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Listeners", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UrlPathMaps", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RequestRoutingRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RoutingRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RewriteRuleSet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RedirectConfigurations", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "WebApplicationFirewallConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", - "DrainTimeoutInSec": "System.Int32" + "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", + "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", + "RequestBodyCheck": "System.Nullable`1[System.Boolean]", + "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", + "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", + "FirewallMode": "System.String", + "RuleSetType": "System.String", + "RuleSetVersion": "System.String", + "DisabledRuleGroupsText": "System.String", + "ExclusionsText": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ProbeId", + "Name": "FirewallPolicyId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Probe", + "Name": "FirewallPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", - "Interval": "System.Nullable`1[System.Int32]", - "Timeout": "System.Nullable`1[System.Int32]", - "UnhealthyThreshold": "System.Nullable`1[System.Int32]", - "MinServers": "System.Nullable`1[System.Int32]", - "Port": "System.Nullable`1[System.Int32]", - "Protocol": "System.String", - "Host": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", + "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", + "Tag": "System.Collections.Hashtable", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "CustomBlockResponseBody": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", - "MatchText": "System.String", + "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "AuthenticationCertificates", + "Name": "AutoscaleConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MinCapacity": "System.Int32", + "MaxCapacity": "System.Nullable`1[System.Int32]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "TrustedRootCertificate", + "Name": "EnableHttp2", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "PickHostNameFromBackendAddress", + "Name": "EnableFIPS", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -103545,25 +101733,62 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "HostName", + "Name": "EnableRequestBuffering", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "AffinityCookieName", + "Name": "EnableResponseBuffering", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Path", + "Name": "ForceFirewallPolicyAssociation", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -103571,6 +101796,59 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "Identity", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomErrorConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PrivateLinkConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -103599,6 +101877,9 @@ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -103609,142 +101890,114 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Port", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Http", - "Https" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "CookieBasedAffinity", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Enabled", - "Disabled" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RequestTimeout", + "Name": "Sku", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Capacity": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "Tier": "System.String", + "Family": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ConnectionDraining", + "Name": "SslPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Enabled": "System.Boolean", - "DrainTimeoutInSec": "System.Int32" + "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", + "CipherSuites": "System.Collections.Generic.List`1[System.String]", + "PolicyType": "System.String", + "PolicyName": "System.String", + "MinProtocolVersion": "System.String", + "DisabledSslProtocolsText": "System.String", + "CipherSuitesText": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ProbeId", + "Name": "GatewayIPConfigurations", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Probe", + "Name": "SslCertificates", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", - "Interval": "System.Nullable`1[System.Int32]", - "Timeout": "System.Nullable`1[System.Int32]", - "UnhealthyThreshold": "System.Nullable`1[System.Int32]", - "MinServers": "System.Nullable`1[System.Int32]", - "Port": "System.Nullable`1[System.Int32]", - "Protocol": "System.String", - "Host": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "MatchText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -103752,15 +102005,15 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -103768,657 +102021,294 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PickHostNameFromBackendAddress", + "Name": "TrustedClientCertificates", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "HostName", + "Name": "FrontendIPConfigurations", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AffinityCookieName", + "Name": "FrontendPorts", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Path", + "Name": "Probes", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "BackendAddressPools", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ], - "AliasList": [ - "New-AzApplicationGatewayBackendHttpSettings" - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayBackendSetting", - "Name": "New-AzApplicationGatewayBackendSetting", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendSettingsCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "Timeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ProbeText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "ShouldSerializePort", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeTimeout", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeAuthenticationCertificates", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Port", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "TCP", - "TLS" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Timeout", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ProbeId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Probe", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", - "Interval": "System.Nullable`1[System.Int32]", - "Timeout": "System.Nullable`1[System.Int32]", - "UnhealthyThreshold": "System.Nullable`1[System.Int32]", - "MinServers": "System.Nullable`1[System.Int32]", - "Port": "System.Nullable`1[System.Int32]", - "Protocol": "System.String", - "Host": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "MatchText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "TrustedRootCertificate", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PickHostNameFromBackendAddress", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HostName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "BackendHttpSettingsCollection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Port", + "Name": "BackendSettingsCollection", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "SslProfiles", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" }, - "ValidateSet": [ - "TCP", - "TLS" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Timeout", + "Name": "HttpListeners", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ProbeId", + "Name": "Listeners", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Probe", + "Name": "UrlPathMaps", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", - "Interval": "System.Nullable`1[System.Int32]", - "Timeout": "System.Nullable`1[System.Int32]", - "UnhealthyThreshold": "System.Nullable`1[System.Int32]", - "MinServers": "System.Nullable`1[System.Int32]", - "Port": "System.Nullable`1[System.Int32]", - "Protocol": "System.String", - "Host": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "MatchText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TrustedRootCertificate", + "Name": "RequestRoutingRules", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PickHostNameFromBackendAddress", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "HostName", + "Name": "RoutingRules", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "RewriteRuleSet", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayClientAuthConfiguration", - "Name": "New-AzApplicationGatewayClientAuthConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayClientAuthConfigurationCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", - "VerifyClientRevocation": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "VerifyClientCertIssuerDN", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VerifyClientRevocation", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "OCSP" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "VerifyClientCertIssuerDN", + "Name": "RedirectConfigurations", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VerifyClientRevocation", + "Name": "WebApplicationFirewallConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Enabled": "System.Boolean", + "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", + "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", + "RequestBodyCheck": "System.Nullable`1[System.Boolean]", + "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", + "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", + "FirewallMode": "System.String", + "RuleSetType": "System.String", + "RuleSetVersion": "System.String", + "DisabledRuleGroupsText": "System.String", + "ExclusionsText": "System.String" + } }, - "ValidateSet": [ - "None", - "OCSP" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "AutoscaleConfiguration", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "MinCapacity": "System.Int32", + "MaxCapacity": "System.Nullable`1[System.Int32]" } }, "ValidateNotNullOrEmpty": false @@ -104426,158 +102316,48 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayConnectionDraining", - "Name": "New-AzApplicationGatewayConnectionDraining", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Enabled": "System.Boolean", - "DrainTimeoutInSec": "System.Int32" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Enabled", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DrainTimeoutInSec", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Enabled", + "Name": "EnableHttp2", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DrainTimeoutInSec", + "Name": "EnableFIPS", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "EnableRequestBuffering", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, @@ -104585,157 +102365,48 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayCustomError", - "Name": "New-AzApplicationGatewayCustomError", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "StatusCode": "System.String", - "CustomErrorPageUrl": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "StatusCode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "CustomErrorPageUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "StatusCode", + "Name": "EnableResponseBuffering", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomErrorPageUrl", + "Name": "ForceFirewallPolicyAssociation", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Zone", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -104743,222 +102414,46 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallCondition", - "Name": "New-AzApplicationGatewayFirewallCondition", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "MatchVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]", - "MatchValues": "System.Collections.Generic.List`1[System.String]", - "Transforms": "System.Collections.Generic.List`1[System.String]", - "NegationConditon": "System.Nullable`1[System.Boolean]", - "OperatorProperty": "System.String", - "MatchVariablesText": "System.String", - "MatchValuesText": "System.String", - "TransformsText": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MatchVariable", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Operator", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPMatch", - "Equal", - "Contains", - "LessThan", - "GreaterThan", - "LessThanOrEqual", - "GreaterThanOrEqual", - "BeginsWith", - "EndsWith", - "Regex", - "GeoMatch", - "Any" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NegationCondition", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "MatchValue", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Transform", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateSet": [ - "Uppercase", - "Lowercase", - "Trim", - "UrlDecode", - "UrlEncode", - "RemoveNulls", - "HtmlEntityDecode" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "MatchVariable", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Operator", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "IPMatch", - "Equal", - "Contains", - "LessThan", - "GreaterThan", - "LessThanOrEqual", - "GreaterThanOrEqual", - "BeginsWith", - "EndsWith", - "Regex", - "GeoMatch", - "Any" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NegationCondition", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -104967,12 +102462,12 @@ }, { "ParameterMetadata": { - "Name": "MatchValue", + "Name": "CustomErrorConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true }, @@ -104983,28 +102478,19 @@ }, { "ParameterMetadata": { - "Name": "Transform", + "Name": "PrivateLinkConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" }, - "ValidateSet": [ - "Uppercase", - "Lowercase", - "Trim", - "UrlDecode", - "UrlEncode", - "RemoveNulls", - "HtmlEntityDecode" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -105033,807 +102519,441 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallCustomRule", - "Name": "New-AzApplicationGatewayFirewallCustomRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]", - "GroupByUserSession": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession]", - "Priority": "System.Int32", - "RateLimitThreshold": "System.Int32", - "Name": "System.String", - "RateLimitDuration": "System.String", - "RuleType": "System.String", - "Action": "System.String", - "State": "System.String", - "MatchConditionsText": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RateLimitDuration", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "OneMin", - "FiveMins" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RateLimitThreshold", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RuleType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "MatchRule", - "RateLimitRule" - ], - "ValidateNotNullOrEmpty": true }, { - "Name": "MatchCondition", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "GroupByUserSession", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Action", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Allow", - "Block", - "Log" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Disabled", - "Enabled" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "FirewallPolicyId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RateLimitDuration", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "OneMin", - "FiveMins" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RateLimitThreshold", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RuleType", + "Name": "Sku", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Capacity": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "Tier": "System.String", + "Family": "System.String" + } }, - "ValidateSet": [ - "MatchRule", - "RateLimitRule" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "MatchCondition", + "Name": "SslPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", + "CipherSuites": "System.Collections.Generic.List`1[System.String]", + "PolicyType": "System.String", + "PolicyName": "System.String", + "MinProtocolVersion": "System.String", + "DisabledSslProtocolsText": "System.String", + "CipherSuitesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "GatewayIPConfigurations", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "GroupByUserSession", + "Name": "SslCertificates", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Action", + "Name": "AuthenticationCertificates", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" }, - "ValidateSet": [ - "Allow", - "Block", - "Log" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "State", + "Name": "TrustedRootCertificate", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, - "ValidateSet": [ - "Disabled", - "Enabled" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "TrustedClientCertificates", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallCustomRuleGroupByUserSession", - "Name": "New-AzApplicationGatewayFirewallCustomRuleGroupByUserSession", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByUserSessionCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "GroupByVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable]" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "FrontendIPConfigurations", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPorts", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Probes", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "GroupByVariable", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "GroupByVariable", + "Name": "BackendAddressPools", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "BackendHttpSettingsCollection", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallCustomRuleGroupByVariable", - "Name": "New-AzApplicationGatewayFirewallCustomRuleGroupByVariable", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByVariableCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VariableName": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" + { + "ParameterMetadata": { + "Name": "BackendSettingsCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SslProfiles", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "VariableName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "ClientAddr", - "GeoLocation", - "None" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "VariableName", + "Name": "HttpListeners", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" }, - "ValidateSet": [ - "ClientAddr", - "GeoLocation", - "None" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Listeners", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallDisabledRuleGroupConfig", - "Name": "New-AzApplicationGatewayFirewallDisabledRuleGroupConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Rules": "System.Collections.Generic.List`1[System.Int32]", - "RuleGroupName": "System.String", - "RulesText": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "UrlPathMaps", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RequestRoutingRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RoutingRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "RuleGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Rules", - "Type": { - "Namespace": "System", - "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.Int32" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "RuleGroupName", + "Name": "RewriteRuleSet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Rules", + "Name": "RedirectConfigurations", "Type": { - "Namespace": "System", - "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.Int32" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "WebApplicationFirewallConfiguration", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "Enabled": "System.Boolean", + "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", + "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", + "RequestBodyCheck": "System.Nullable`1[System.Boolean]", + "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", + "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", + "FirewallMode": "System.String", + "RuleSetType": "System.String", + "RuleSetVersion": "System.String", + "DisabledRuleGroupsText": "System.String", + "ExclusionsText": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -105841,186 +102961,87 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallExclusionConfig", - "Name": "New-AzApplicationGatewayFirewallExclusionConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExclusionManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]", - "MatchVariable": "System.String", - "SelectorMatchOperator": "System.String", - "Selector": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" + { + "ParameterMetadata": { + "Name": "AutoscaleConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MinCapacity": "System.Int32", + "MaxCapacity": "System.Nullable`1[System.Int32]" } - ], - "ReturnType": "System.Boolean" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Variable", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Operator", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Selector", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ExclusionManagedRuleSet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "Variable", + "Name": "EnableHttp2", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Operator", + "Name": "EnableFIPS", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Selector", + "Name": "EnableRequestBuffering", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ExclusionManagedRuleSet", + "Name": "EnableResponseBuffering", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -106029,22 +103050,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ForceFirewallPolicyAssociation", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -106052,151 +103062,76 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallMatchVariable", - "Name": "New-AzApplicationGatewayFirewallMatchVariable", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VariableName": "System.String", - "Selector": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "VariableName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "RemoteAddr", - "RequestMethod", - "QueryString", - "PostArgs", - "RequestUri", - "RequestHeaders", - "RequestBody", - "RequestCookies" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Selector", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "VariableName", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "RemoteAddr", - "RequestMethod", - "QueryString", - "PostArgs", - "RequestUri", - "RequestHeaders", - "RequestBody", - "RequestCookies" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Selector", + "Name": "CustomErrorConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true }, @@ -106205,6 +103140,22 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "PrivateLinkConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -106232,204 +103183,41 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicy", - "Name": "New-AzApplicationGatewayFirewallPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", - "Tag": "System.Collections.Hashtable", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "CustomBlockResponseBody": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "CustomRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PolicySetting", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", - "RequestBodyCheck": "System.Boolean", - "MaxRequestBodySizeInKb": "System.Int32", - "FileUploadLimitInMb": "System.Int32", - "RequestBodyEnforcement": "System.Nullable`1[System.Boolean]", - "FileUploadEnforcement": "System.Nullable`1[System.Boolean]", - "RequestBodyInspectLimitInKB": "System.Nullable`1[System.Int32]", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "JSChallengeCookieExpirationInMins": "System.Nullable`1[System.Int32]", - "State": "System.String", - "Mode": "System.String", - "CustomBlockResponseBody": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ManagedRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", - "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByResource", "Parameters": [ + { + "ParameterMetadata": { + "Name": "FirewallPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", + "Tag": "System.Collections.Hashtable", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "CustomBlockResponseBody": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Name", @@ -106480,40 +103268,40 @@ }, { "ParameterMetadata": { - "Name": "CustomRule", + "Name": "Sku", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Capacity": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "Tier": "System.String", + "Family": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PolicySetting", + "Name": "SslPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", - "RequestBodyCheck": "System.Boolean", - "MaxRequestBodySizeInKb": "System.Int32", - "FileUploadLimitInMb": "System.Int32", - "RequestBodyEnforcement": "System.Nullable`1[System.Boolean]", - "FileUploadEnforcement": "System.Nullable`1[System.Boolean]", - "RequestBodyInspectLimitInKB": "System.Nullable`1[System.Int32]", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "JSChallengeCookieExpirationInMins": "System.Nullable`1[System.Int32]", - "State": "System.String", - "Mode": "System.String", - "CustomBlockResponseBody": "System.String" + "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", + "CipherSuites": "System.Collections.Generic.List`1[System.String]", + "PolicyType": "System.String", + "PolicyName": "System.String", + "MinProtocolVersion": "System.String", + "DisabledSslProtocolsText": "System.String", + "CipherSuitesText": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -106525,15 +103313,28 @@ }, { "ParameterMetadata": { - "Name": "ManagedRule", + "Name": "GatewayIPConfigurations", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", - "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SslCertificates", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" }, "ValidateNotNullOrEmpty": false }, @@ -106544,11 +103345,12 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "AuthenticationCertificates", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" }, "ValidateNotNullOrEmpty": false }, @@ -106559,793 +103361,279 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "TrustedRootCertificate", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "TrustedClientCertificates", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "FrontendIPConfigurations", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicyExclusion", - "Name": "New-AzApplicationGatewayFirewallPolicyExclusion", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExclusionManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]", - "MatchVariable": "System.String", - "SelectorMatchOperator": "System.String", - "Selector": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MatchVariable", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "RequestHeaderNames", - "RequestCookieNames", - "RequestArgNames", - "RequestHeaderKeys", - "RequestCookieKeys", - "RequestArgKeys", - "RequestHeaderValues", - "RequestCookieValues", - "RequestArgValues" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SelectorMatchOperator", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Equals", - "Contains", - "StartsWith", - "EndsWith", - "EqualsAny" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Selector", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ExclusionManagedRuleSet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "MatchVariable", + "Name": "FrontendPorts", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" }, - "ValidateSet": [ - "RequestHeaderNames", - "RequestCookieNames", - "RequestArgNames", - "RequestHeaderKeys", - "RequestCookieKeys", - "RequestArgKeys", - "RequestHeaderValues", - "RequestCookieValues", - "RequestArgValues" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SelectorMatchOperator", + "Name": "Probes", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" }, - "ValidateSet": [ - "Equals", - "Contains", - "StartsWith", - "EndsWith", - "EqualsAny" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Selector", + "Name": "BackendAddressPools", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExclusionManagedRuleSet", + "Name": "BackendHttpSettingsCollection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "BackendSettingsCollection", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicyExclusionManagedRule", - "Name": "New-AzApplicationGatewayFirewallPolicyExclusionManagedRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RuleId": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "RuleId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "RuleId", + "Name": "SslProfiles", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "HttpListeners", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup", - "Name": "New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleGroupCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule]", - "RuleGroupName": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "RuleGroupName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Rule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "RuleGroupName" - ], + "Name": "Listeners", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Rule", + "Name": "UrlPathMaps", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "RequestRoutingRules", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet", - "Name": "New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleSetCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup]", - "RuleSetVersion": "System.String", - "RuleSetType": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Type", - "AliasList": [ - "RuleSetType" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Version", - "AliasList": [ - "RuleSetVersion" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RuleGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Type", - "AliasList": [ - "RuleSetType" - ], + "Name": "RoutingRules", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Version", - "AliasList": [ - "RuleSetVersion" - ], + "Name": "RewriteRuleSet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RuleGroup", + "Name": "RedirectConfigurations", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "WebApplicationFirewallConfiguration", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "Enabled": "System.Boolean", + "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", + "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", + "RequestBodyCheck": "System.Nullable`1[System.Boolean]", + "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", + "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", + "FirewallMode": "System.String", + "RuleSetType": "System.String", + "RuleSetVersion": "System.String", + "DisabledRuleGroupsText": "System.String", + "ExclusionsText": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -107353,168 +103641,34 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration", - "Name": "New-AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingConfigurationCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ScrubbingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule]", - "State": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Enabled", - "Disabled" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ScrubbingRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Enabled", - "Disabled" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ScrubbingRule", + "Name": "AutoscaleConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MinCapacity": "System.Int32", + "MaxCapacity": "System.Nullable`1[System.Int32]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "EnableHttp2", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -107522,215 +103676,67 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicyLogScrubbingRule", - "Name": "New-AzApplicationGatewayFirewallPolicyLogScrubbingRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingRuleCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "State": "System.String", - "MatchVariable": "System.String", - "SelectorMatchOperator": "System.String", - "Selector": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Enabled", - "Disabled" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "MatchVariable", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "RequestHeaderNames", - "RequestCookieNames", - "RequestArgNames", - "RequestPostArgNames", - "RequestJSONArgNames", - "RequestIPAddress" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SelectorMatchOperator", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Equals", - "EqualsAny" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Selector", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "State", + "Name": "EnableFIPS", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "Enabled", - "Disabled" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MatchVariable", + "Name": "EnableRequestBuffering", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateSet": [ - "RequestHeaderNames", - "RequestCookieNames", - "RequestArgNames", - "RequestPostArgNames", - "RequestJSONArgNames", - "RequestIPAddress" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SelectorMatchOperator", + "Name": "EnableResponseBuffering", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateSet": [ - "Equals", - "EqualsAny" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Selector", + "Name": "ForceFirewallPolicyAssociation", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -107739,22 +103745,12 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Zone", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -107762,137 +103758,31 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicyManagedRule", - "Name": "New-AzApplicationGatewayFirewallPolicyManagedRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", - "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ManagedRuleSet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Exclusion", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "ManagedRuleSet", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Exclusion", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -107901,22 +103791,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -107924,140 +103803,38 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride", - "Name": "New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]", - "RuleGroupName": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "RuleGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Rule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "RuleGroupName", + "Name": "CustomErrorConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Rule", + "Name": "PrivateLinkConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -108086,146 +103863,16 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicyManagedRuleOverride", - "Name": "New-AzApplicationGatewayFirewallPolicyManagedRuleOverride", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RuleId": "System.String", - "State": "System.String", - "Action": "System.String", - "Sensitivity": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "RuleId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Disabled", - "Enabled" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Action", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "AnomalyScoring", - "Allow", - "Block", - "Log" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Sensitivity", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "Low", - "Medium", - "High" - ], - "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "IdentityByUserAssignedIdentityId", "Parameters": [ { "ParameterMetadata": { - "Name": "RuleId", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -108233,740 +103880,427 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "State", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Disabled", - "Enabled" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Action", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "AnomalyScoring", - "Allow", - "Block", - "Log" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Sensitivity", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "None", - "Low", - "Medium", - "High" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Sku", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "Capacity": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "Tier": "System.String", + "Family": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicyManagedRuleSet", - "Name": "New-AzApplicationGatewayFirewallPolicyManagedRuleSet", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]", - "RuleSetVersion": "System.String", - "RuleSetType": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" + { + "ParameterMetadata": { + "Name": "SslPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", + "CipherSuites": "System.Collections.Generic.List`1[System.String]", + "PolicyType": "System.String", + "PolicyName": "System.String", + "MinProtocolVersion": "System.String", + "DisabledSslProtocolsText": "System.String", + "CipherSuitesText": "System.String" } - ], - "ReturnType": "System.Boolean" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "RuleSetType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RuleSetVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RuleGroupOverride", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "RuleSetType", + "Name": "GatewayIPConfigurations", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RuleSetVersion", + "Name": "SslCertificates", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RuleGroupOverride", + "Name": "AuthenticationCertificates", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "TrustedRootCertificate", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFirewallPolicySetting", - "Name": "New-AzApplicationGatewayFirewallPolicySetting", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", - "RequestBodyCheck": "System.Boolean", - "MaxRequestBodySizeInKb": "System.Int32", - "FileUploadLimitInMb": "System.Int32", - "RequestBodyEnforcement": "System.Nullable`1[System.Boolean]", - "FileUploadEnforcement": "System.Nullable`1[System.Boolean]", - "RequestBodyInspectLimitInKB": "System.Nullable`1[System.Int32]", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "JSChallengeCookieExpirationInMins": "System.Nullable`1[System.Int32]", - "State": "System.String", - "Mode": "System.String", - "CustomBlockResponseBody": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "TrustedClientCertificates", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendIPConfigurations", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPorts", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Mode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Prevention", - "Detection" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "State", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Disabled", - "Enabled" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DisableRequestBodyEnforcement", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RequestBodyInspectLimitInKB", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DisableRequestBodyCheck", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaxRequestBodySizeInKb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DisableFileUploadEnforcement", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "MaxFileUploadInMb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "CustomBlockResponseStatusCode", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "CustomBlockResponseBody", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "LogScrubbing", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ScrubbingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule]", - "State": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "JSChallengeCookieExpirationInMins", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 5, - "ValidateRangeMax": 1440, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "Mode", + "Name": "Probes", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" }, - "ValidateSet": [ - "Prevention", - "Detection" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "State", + "Name": "BackendAddressPools", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" }, - "ValidateSet": [ - "Disabled", - "Enabled" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DisableRequestBodyEnforcement", + "Name": "BackendHttpSettingsCollection", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RequestBodyInspectLimitInKB", + "Name": "BackendSettingsCollection", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DisableRequestBodyCheck", + "Name": "SslProfiles", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "MaxRequestBodySizeInKb", + "Name": "HttpListeners", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DisableFileUploadEnforcement", + "Name": "Listeners", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "MaxFileUploadInMb", + "Name": "UrlPathMaps", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "CustomBlockResponseStatusCode", + "Name": "RequestRoutingRules", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "CustomBlockResponseBody", + "Name": "RoutingRules", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LogScrubbing", + "Name": "RewriteRuleSet", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ScrubbingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule]", - "State": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "JSChallengeCookieExpirationInMins", + "Name": "RedirectConfigurations", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" }, - "ValidateRangeMin": 5, - "ValidateRangeMax": 1440, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "WebApplicationFirewallConfiguration", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "Enabled": "System.Boolean", + "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", + "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", + "RequestBodyCheck": "System.Nullable`1[System.Boolean]", + "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", + "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", + "FirewallMode": "System.String", + "RuleSetType": "System.String", + "RuleSetVersion": "System.String", + "DisabledRuleGroupsText": "System.String", + "ExclusionsText": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -108974,270 +104308,85 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayFrontendIPConfig", - "Name": "New-AzApplicationGatewayFrontendIPConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateLinkConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateIPAddress": "System.String", - "PrivateIPAllocationMethod": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "SubnetText": "System.String", - "PublicIpAddressText": "System.String", - "PrivateLinkConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "AutoscaleConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MinCapacity": "System.Int32", + "MaxCapacity": "System.Nullable`1[System.Int32]" + } + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableHttp2", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableFIPS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PrivateIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubnetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PublicIPAddressId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PublicIPAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateLinkConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "IpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateLinkConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "Name", + "Name": "EnableRequestBuffering", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateIPAddress", + "Name": "EnableResponseBuffering", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, @@ -109248,22 +104397,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ForceFirewallPolicyAssociation", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -109271,19 +104409,15 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceId", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "PrivateIPAddress", + "Name": "Zone", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -109294,26 +104428,26 @@ }, { "ParameterMetadata": { - "Name": "SubnetId", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PublicIPAddressId", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -109324,11 +104458,11 @@ }, { "ParameterMetadata": { - "Name": "PrivateLinkConfigurationId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -109339,19 +104473,36 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "CustomErrorConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "PrivateLinkConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -109381,132 +104532,113 @@ ] }, { - "Name": "SetByResource", + "Name": "IdentityByIdentityObject", "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateIPAddress", + "Name": "Identity", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Subnet", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PublicIPAddress", + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Sku", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", + "Capacity": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" + "Tier": "System.String", + "Family": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateLinkConfiguration", + "Name": "SslPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "IpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", + "CipherSuites": "System.Collections.Generic.List`1[System.String]", + "PolicyType": "System.String", + "PolicyName": "System.String", + "MinProtocolVersion": "System.String", + "DisabledSslProtocolsText": "System.String", + "CipherSuitesText": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -109514,31 +104646,541 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "GatewayIPConfigurations", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "SslCertificates", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AuthenticationCertificates", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TrustedRootCertificate", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TrustedClientCertificates", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendIPConfigurations", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPorts", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Probes", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BackendAddressPools", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BackendHttpSettingsCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BackendSettingsCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SslProfiles", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "HttpListeners", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Listeners", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "UrlPathMaps", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RequestRoutingRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RoutingRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RewriteRuleSet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RedirectConfigurations", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "WebApplicationFirewallConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Enabled": "System.Boolean", + "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", + "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", + "RequestBodyCheck": "System.Nullable`1[System.Boolean]", + "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", + "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", + "FirewallMode": "System.String", + "RuleSetType": "System.String", + "RuleSetVersion": "System.String", + "DisabledRuleGroupsText": "System.String", + "ExclusionsText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AutoscaleConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MinCapacity": "System.Int32", + "MaxCapacity": "System.Nullable`1[System.Int32]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableHttp2", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableFIPS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableRequestBuffering", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableResponseBuffering", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceFirewallPolicyAssociation", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomErrorConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateLinkConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", @@ -109563,10 +105205,10 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayFrontendPort", - "Name": "New-AzApplicationGatewayFrontendPort", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand", - "SupportsShouldProcess": false, + "NounName": "AzApplicationGatewayAuthenticationCertificate", + "Name": "New-AzApplicationGatewayAuthenticationCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayAuthenticationCertificateCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -109574,10 +105216,10 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Port": "System.Int32", + "Data": "System.String", "ProvisioningState": "System.String", "Type": "System.String", "Name": "System.String", @@ -109630,11 +105272,11 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Port", + "Name": "CertificateFile", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -109680,11 +105322,11 @@ }, { "ParameterMetadata": { - "Name": "Port", + "Name": "CertificateFile", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -109725,10 +105367,10 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayHeaderValueMatcher", - "Name": "New-AzApplicationGatewayHeaderValueMatcher", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHeaderValueMatcherCommand", - "SupportsShouldProcess": false, + "NounName": "AzApplicationGatewayAutoscaleConfiguration", + "Name": "New-AzApplicationGatewayAutoscaleConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayAutoscaleConfigurationCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -109736,12 +105378,11 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "IgnoreCase": "System.Nullable`1[System.Boolean]", - "Negate": "System.Nullable`1[System.Boolean]", - "Pattern": "System.String" + "MinCapacity": "System.Int32", + "MaxCapacity": "System.Nullable`1[System.Int32]" }, "Methods": [ { @@ -109780,29 +105421,23 @@ ], "Parameters": [ { - "Name": "Pattern", + "Name": "MinCapacity", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IgnoreCase", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Negate", + "Name": "MaxCapacity", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -109833,11 +105468,11 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Pattern", + "Name": "MinCapacity", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -109848,26 +105483,14 @@ }, { "ParameterMetadata": { - "Name": "IgnoreCase", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Negate", + "Name": "MaxCapacity", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -109908,10 +105531,10 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayHttpListener", - "Name": "New-AzApplicationGatewayHttpListener", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand", - "SupportsShouldProcess": false, + "NounName": "AzApplicationGatewayBackendAddressPool", + "Name": "New-AzApplicationGatewayBackendAddressPool", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendAddressPoolCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -109919,31 +105542,28 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequireServerNameIndication": "System.Boolean", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "HostNames": "System.Collections.Generic.List`1[System.String]", + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", "ProvisioningState": "System.String", "Type": "System.String", - "Etag": "System.String", - "HostName": "System.String", - "Protocol": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", - "FirewallPolicyText": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeBackendAddresses", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeBackendIpConfigurations", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -109989,40 +105609,214 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "FrontendIPConfigurationId", + "Name": "BackendIPAddresses", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, { - "Name": "FrontendIPConfiguration", + "Name": "BackendFqdns", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BackendIPAddresses", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BackendFqdns", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayBackendHttpSetting", + "Name": "New-AzApplicationGatewayBackendHttpSetting", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendHttpSettingsCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateLinkConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateIPAddress": "System.String", - "PrivateIPAllocationMethod": "System.String", + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", "ProvisioningState": "System.String", "Type": "System.String", - "SubnetText": "System.String", - "PublicIpAddressText": "System.String", - "PrivateLinkConfigurationText": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", "Name": "System.String", - "Etag": "System.String", + "CookieBasedAffinity": "System.String", "Id": "System.String" - } + }, + "Methods": [ + { + "Name": "ShouldSerializePort", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeRequestTimeout", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeAuthenticationCertificates", + "ReturnType": "System.Boolean" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] }, - "ValidateNotNullOrEmpty": true - }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ { - "Name": "FrontendPortId", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -110031,166 +105825,151 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "FrontendPort", + "Name": "Port", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Port": "System.Int32", - "ProvisioningState": "System.String", - "Type": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "SslCertificateId", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Http", + "Https" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "FirewallPolicyId", + "Name": "CookieBasedAffinity", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateNotNullOrEmpty": true }, { - "Name": "FirewallPolicy", + "Name": "RequestTimeout", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", - "Tag": "System.Collections.Hashtable", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "CustomBlockResponseBody": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "SslCertificate", + "Name": "ConnectionDraining", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Password": "System.Security.SecureString", - "Data": "System.String", - "PublicCertData": "System.String", - "KeyVaultSecretId": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Enabled": "System.Boolean", + "DrainTimeoutInSec": "System.Int32" } }, "ValidateNotNullOrEmpty": true }, { - "Name": "SslProfileId", + "Name": "ProbeId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "SslProfile", + "Name": "Probe", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", + "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", + "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", + "Interval": "System.Nullable`1[System.Int32]", + "Timeout": "System.Nullable`1[System.Int32]", + "UnhealthyThreshold": "System.Nullable`1[System.Int32]", + "MinServers": "System.Nullable`1[System.Int32]", + "Port": "System.Nullable`1[System.Int32]", + "Protocol": "System.String", + "Host": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "MatchText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "HostName", + "Name": "AuthenticationCertificates", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" }, "ValidateNotNullOrEmpty": true }, { - "Name": "HostNames", + "Name": "TrustedRootCertificate", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": true }, { - "Name": "RequireServerNameIndication", + "Name": "PickHostNameFromBackendAddress", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HostName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "true", - "false" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Protocol", + "Name": "AffinityCookieName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Http", - "Https" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "CustomErrorConfiguration", + "Name": "Path", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -110236,65 +106015,49 @@ }, { "ParameterMetadata": { - "Name": "HostName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HostNames", + "Name": "Port", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RequireServerNameIndication", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "true", - "false" + "Http", + "Https" ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "CookieBasedAffinity", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Http", - "Https" + "Enabled", + "Disabled" ], "ValidateNotNullOrEmpty": true }, @@ -110305,12 +106068,11 @@ }, { "ParameterMetadata": { - "Name": "CustomErrorConfiguration", + "Name": "RequestTimeout", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -110321,38 +106083,26 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ConnectionDraining", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "Enabled": "System.Boolean", + "DrainTimeoutInSec": "System.Int32" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceId", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "FrontendIPConfigurationId", + "Name": "ProbeId", "Type": { "Namespace": "System", "Name": "System.String", @@ -110367,11 +106117,29 @@ }, { "ParameterMetadata": { - "Name": "FrontendPortId", + "Name": "Probe", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", + "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", + "Interval": "System.Nullable`1[System.Int32]", + "Timeout": "System.Nullable`1[System.Int32]", + "UnhealthyThreshold": "System.Nullable`1[System.Int32]", + "MinServers": "System.Nullable`1[System.Int32]", + "Port": "System.Nullable`1[System.Int32]", + "Protocol": "System.String", + "Host": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "MatchText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, @@ -110382,11 +106150,12 @@ }, { "ParameterMetadata": { - "Name": "SslCertificateId", + "Name": "AuthenticationCertificates", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" }, "ValidateNotNullOrEmpty": true }, @@ -110397,13 +106166,14 @@ }, { "ParameterMetadata": { - "Name": "FirewallPolicyId", + "Name": "TrustedRootCertificate", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -110412,11 +106182,11 @@ }, { "ParameterMetadata": { - "Name": "SslProfileId", + "Name": "PickHostNameFromBackendAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -110425,21 +106195,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "HostName", @@ -110448,23 +106203,7 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HostNames", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -110473,16 +106212,12 @@ }, { "ParameterMetadata": { - "Name": "RequireServerNameIndication", + "Name": "AffinityCookieName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "true", - "false" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -110492,32 +106227,12 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Path", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Http", - "Https" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CustomErrorConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" - }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -110552,140 +106267,277 @@ "ValueFromPipelineByPropertyName": false } ] + } + ], + "AliasList": [ + "New-AzApplicationGatewayBackendHttpSettings" + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayBackendSetting", + "Name": "New-AzApplicationGatewayBackendSetting", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayBackendSettingsCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "Timeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ProbeText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "ShouldSerializePort", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeTimeout", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeAuthenticationCertificates", + "ReturnType": "System.Boolean" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "SetByResource", + "Name": "Port", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "TCP", + "TLS" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Timeout", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProbeId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Probe", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", + "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", + "Interval": "System.Nullable`1[System.Int32]", + "Timeout": "System.Nullable`1[System.Int32]", + "UnhealthyThreshold": "System.Nullable`1[System.Int32]", + "MinServers": "System.Nullable`1[System.Int32]", + "Port": "System.Nullable`1[System.Int32]", + "Protocol": "System.String", + "Host": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "MatchText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TrustedRootCertificate", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PickHostNameFromBackendAddress", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HostName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "FrontendIPConfiguration", + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateLinkConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateIPAddress": "System.String", - "PrivateIPAllocationMethod": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "SubnetText": "System.String", - "PublicIpAddressText": "System.String", - "PrivateLinkConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FrontendPort", + "Name": "Port", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Port": "System.Int32", - "ProvisioningState": "System.String", - "Type": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FirewallPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", - "Tag": "System.Collections.Hashtable", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "CustomBlockResponseBody": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SslCertificate", + "Name": "Protocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Password": "System.Security.SecureString", - "Data": "System.String", - "PublicCertData": "System.String", - "KeyVaultSecretId": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "TCP", + "TLS" + ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SslProfile", + "Name": "Timeout", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -110694,7 +106546,7 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ProbeId", "Type": { "Namespace": "System", "Name": "System.String", @@ -110702,18 +106554,36 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HostName", + "Name": "Probe", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", + "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", + "Interval": "System.Nullable`1[System.Int32]", + "Timeout": "System.Nullable`1[System.Int32]", + "UnhealthyThreshold": "System.Nullable`1[System.Int32]", + "MinServers": "System.Nullable`1[System.Int32]", + "Port": "System.Nullable`1[System.Int32]", + "Protocol": "System.String", + "Host": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "MatchText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, @@ -110724,12 +106594,12 @@ }, { "ParameterMetadata": { - "Name": "HostNames", + "Name": "TrustedRootCertificate", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": true }, @@ -110740,17 +106610,13 @@ }, { "ParameterMetadata": { - "Name": "RequireServerNameIndication", + "Name": "PickHostNameFromBackendAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "true", - "false" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -110759,33 +106625,13 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "HostName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Http", - "Https" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CustomErrorConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -110824,10 +106670,10 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayIdentity", - "Name": "New-AzApplicationGatewayIdentity", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIdentityCommand", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewayClientAuthConfiguration", + "Name": "New-AzApplicationGatewayClientAuthConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayClientAuthConfigurationCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -110835,13 +106681,11 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" + "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", + "VerifyClientRevocation": "System.String" }, "Methods": [ { @@ -110880,16 +106724,26 @@ ], "Parameters": [ { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], + "Name": "VerifyClientCertIssuerDN", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VerifyClientRevocation", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "None", + "OCSP" + ], + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -110918,21 +106772,37 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], + "Name": "VerifyClientCertIssuerDN", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VerifyClientRevocation", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "None", + "OCSP" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -110966,9 +106836,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayIPConfiguration", - "Name": "New-AzApplicationGatewayIPConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand", + "NounName": "AzApplicationGatewayConnectionDraining", + "Name": "New-AzApplicationGatewayConnectionDraining", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayConnectionDrainingCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -110977,16 +106847,11 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ProvisioningState": "System.String", - "Type": "System.String", - "SubnetText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Enabled": "System.Boolean", + "DrainTimeoutInSec": "System.Int32" }, "Methods": [ { @@ -111025,65 +106890,23 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "Enabled", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "SubnetId", + "Name": "DrainTimeoutInSec", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -111111,72 +106934,11 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SubnetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", + "Name": "Enabled", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -111187,90 +106949,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResource", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", + "Name": "DrainTimeoutInSec", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -111311,35 +106994,22 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayListener", - "Name": "New-AzApplicationGatewayListener", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayListenerCommand", + "NounName": "AzApplicationGatewayCustomError", + "Name": "New-AzApplicationGatewayCustomError", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayCustomErrorCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "HostNames": "System.Collections.Generic.List`1[System.String]", - "Protocol": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "StatusCode": "System.String", + "CustomErrorPageUrl": "System.String" }, "Methods": [ { @@ -111378,75 +107048,7 @@ ], "Parameters": [ { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FrontendIPConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FrontendIPConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateLinkConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateIPAddress": "System.String", - "PrivateIPAllocationMethod": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "SubnetText": "System.String", - "PublicIpAddressText": "System.String", - "PrivateLinkConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FrontendPortId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FrontendPort", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Port": "System.Int32", - "ProvisioningState": "System.String", - "Type": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SslCertificateId", + "Name": "StatusCode", "Type": { "Namespace": "System", "Name": "System.String", @@ -111455,75 +107057,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "SslCertificate", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Password": "System.Security.SecureString", - "Data": "System.String", - "PublicCertData": "System.String", - "KeyVaultSecretId": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SslProfileId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SslProfile", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Protocol", + "Name": "CustomErrorPageUrl", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "TCP", - "TLS" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "HostNames", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, "ValidateNotNullOrEmpty": true }, { @@ -111553,7 +107092,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "StatusCode", "Type": { "Namespace": "System", "Name": "System.String", @@ -111568,16 +107107,12 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "CustomErrorPageUrl", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "TCP", - "TLS" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -111585,22 +107120,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "HostNames", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -111628,77 +107147,174 @@ "ValueFromPipelineByPropertyName": false } ] - }, - { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "FrontendIPConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayFirewallCondition", + "Name": "New-AzApplicationGatewayFirewallCondition", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallConditionCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MatchVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]", + "MatchValues": "System.Collections.Generic.List`1[System.String]", + "Transforms": "System.Collections.Generic.List`1[System.String]", + "NegationConditon": "System.Nullable`1[System.Boolean]", + "OperatorProperty": "System.String", + "MatchVariablesText": "System.String", + "MatchValuesText": "System.String", + "TransformsText": "System.String" }, - { - "ParameterMetadata": { - "Name": "FrontendPortId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SslCertificateId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SslProfileId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MatchVariable", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Operator", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPMatch", + "Equal", + "Contains", + "LessThan", + "GreaterThan", + "LessThanOrEqual", + "GreaterThanOrEqual", + "BeginsWith", + "EndsWith", + "Regex", + "GeoMatch", + "Any" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NegationCondition", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "MatchValue", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Transform", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "Uppercase", + "Lowercase", + "Trim", + "UrlDecode", + "UrlEncode", + "RemoveNulls", + "HtmlEntityDecode" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "MatchVariable", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable" }, "ValidateNotNullOrEmpty": true }, @@ -111709,15 +107325,25 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Operator", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "TCP", - "TLS" + "IPMatch", + "Equal", + "Contains", + "LessThan", + "GreaterThan", + "LessThanOrEqual", + "GreaterThanOrEqual", + "BeginsWith", + "EndsWith", + "Regex", + "GeoMatch", + "Any" ], "ValidateNotNullOrEmpty": true }, @@ -111728,122 +107354,11 @@ }, { "ParameterMetadata": { - "Name": "HostNames", + "Name": "NegationCondition", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResource", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "FrontendIPConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateLinkConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateIPAddress": "System.String", - "PrivateIPAllocationMethod": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "SubnetText": "System.String", - "PublicIpAddressText": "System.String", - "PrivateLinkConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FrontendPort", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Port": "System.Int32", - "ProvisioningState": "System.String", - "Type": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SslCertificate", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Password": "System.Security.SecureString", - "Data": "System.String", - "PublicCertData": "System.String", - "KeyVaultSecretId": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -111854,73 +107369,38 @@ }, { "ParameterMetadata": { - "Name": "SslProfile", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Protocol", + "Name": "MatchValue", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "TCP", - "TLS" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HostNames", + "Name": "Transform", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, + "ValidateSet": [ + "Uppercase", + "Lowercase", + "Trim", + "UrlDecode", + "UrlEncode", + "RemoveNulls", + "HtmlEntityDecode" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -111960,9 +107440,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayPathRuleConfig", - "Name": "New-AzApplicationGatewayPathRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand", + "NounName": "AzApplicationGatewayFirewallCustomRule", + "Name": "New-AzApplicationGatewayFirewallCustomRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -111971,25 +107451,19 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Paths": "System.Collections.Generic.List`1[System.String]", - "Type": "System.String", - "PathsText": "System.String", - "BackendAddressPoolText": "System.String", - "BackendHttpSettingsText": "System.String", - "RedirectConfigurationText": "System.String", - "RewriteRuleSetText": "System.String", - "FirewallPolicyText": "System.String", + "MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]", + "GroupByUserSession": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession]", + "Priority": "System.Int32", + "RateLimitThreshold": "System.Int32", "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "RateLimitDuration": "System.String", + "RuleType": "System.String", + "Action": "System.String", + "State": "System.String", + "MatchConditionsText": "System.String" }, "Methods": [ { @@ -112037,180 +107511,95 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Paths", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "BackendAddressPoolId", + "Name": "RateLimitDuration", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "OneMin", + "FiveMins" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "BackendAddressPool", + "Name": "RateLimitThreshold", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "BackendHttpSettingsId", + "Name": "RuleType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "MatchRule", + "RateLimitRule" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "BackendHttpSettings", + "Name": "MatchCondition", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", - "Name": "System.String", - "CookieBasedAffinity": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RewriteRuleSetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition" }, "ValidateNotNullOrEmpty": true }, { - "Name": "RewriteRuleSet", + "Name": "GroupByUserSession", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession" }, "ValidateNotNullOrEmpty": true }, { - "Name": "RedirectConfigurationId", + "Name": "Action", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Allow", + "Block", + "Log" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "RedirectConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "IncludePath": "System.Nullable`1[System.Boolean]", - "IncludeQueryString": "System.Nullable`1[System.Boolean]", - "RedirectType": "System.String", - "TargetUrl": "System.String", - "Type": "System.String", - "TargetListenerText": "System.String", - "RequestRoutingRulesText": "System.String", - "UrlPathMapsText": "System.String", - "PathRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FirewallPolicyId", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FirewallPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", - "Tag": "System.Collections.Hashtable", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "CustomBlockResponseBody": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Disabled", + "Enabled" + ], + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -112254,12 +107643,11 @@ }, { "ParameterMetadata": { - "Name": "Paths", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -112270,43 +107658,16 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "BackendAddressPoolId", + "Name": "RateLimitDuration", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "OneMin", + "FiveMins" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -112316,11 +107677,11 @@ }, { "ParameterMetadata": { - "Name": "BackendHttpSettingsId", + "Name": "RateLimitThreshold", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -112331,43 +107692,49 @@ }, { "ParameterMetadata": { - "Name": "RewriteRuleSetId", + "Name": "RuleType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "MatchRule", + "RateLimitRule" + ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RedirectConfigurationId", + "Name": "MatchCondition", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FirewallPolicyId", + "Name": "GroupByUserSession", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -112376,12 +107743,17 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Action", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Allow", + "Block", + "Log" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -112391,16 +107763,19 @@ }, { "ParameterMetadata": { - "Name": "Paths", + "Name": "State", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Disabled", + "Enabled" + ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -112432,184 +107807,106 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayFirewallCustomRuleGroupByUserSession", + "Name": "New-AzApplicationGatewayFirewallCustomRuleGroupByUserSession", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByUserSessionCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "SetByResource", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "BackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "GroupByVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable]" }, - { - "ParameterMetadata": { - "Name": "BackendHttpSettings", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", - "Name": "System.String", - "CookieBasedAffinity": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RewriteRuleSet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RedirectConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "IncludePath": "System.Nullable`1[System.Boolean]", - "IncludeQueryString": "System.Nullable`1[System.Boolean]", - "RedirectType": "System.String", - "TargetUrl": "System.String", - "Type": "System.String", - "TargetListenerText": "System.String", - "RequestRoutingRulesText": "System.String", - "UrlPathMapsText": "System.String", - "PathRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": true + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "GroupByVariable", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "FirewallPolicy", + "Name": "GroupByVariable", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", - "Tag": "System.Collections.Hashtable", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "CustomBlockResponseBody": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Paths", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable" }, "ValidateNotNullOrEmpty": true }, @@ -112650,9 +107947,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayPrivateLinkConfiguration", - "Name": "New-AzApplicationGatewayPrivateLinkConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand", + "NounName": "AzApplicationGatewayFirewallCustomRuleGroupByVariable", + "Name": "New-AzApplicationGatewayFirewallCustomRuleGroupByVariable", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallCustomRuleGroupByVariableCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -112661,16 +107958,10 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "IpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "VariableName": "System.String" }, "Methods": [ { @@ -112709,22 +108000,17 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "VariableName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "IpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration" - }, + "ValidateSet": [ + "ClientAddr", + "GeoLocation", + "None" + ], "ValidateNotNullOrEmpty": true }, { @@ -112754,12 +108040,17 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "VariableName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "ClientAddr", + "GeoLocation", + "None" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -112767,22 +108058,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "IpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -112815,9 +108090,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayPrivateLinkIpConfiguration", - "Name": "New-AzApplicationGatewayPrivateLinkIpConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand", + "NounName": "AzApplicationGatewayFirewallDisabledRuleGroupConfig", + "Name": "New-AzApplicationGatewayFirewallDisabledRuleGroupConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallDisabledRuleGroupConfigCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -112826,19 +108101,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Primary": "System.Nullable`1[System.Boolean]", - "PrivateIPAllocationMethod": "System.String", - "PrivateIPAddress": "System.String", - "ProvisioningState": "System.String", - "PrivateIPAddressVersion": "System.String", - "SubnetText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Rules": "System.Collections.Generic.List`1[System.Int32]", + "RuleGroupName": "System.String", + "RulesText": "System.String" }, "Methods": [ { @@ -112877,7 +108145,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "RuleGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -112886,74 +108154,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateIpAddressVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPv4" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateIpAddress", + "Name": "Rules", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Primary", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Int32[]", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false }, @@ -112984,7 +108190,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "RuleGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -112999,92 +108205,12 @@ }, { "ParameterMetadata": { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPv4" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "Rules", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Primary", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Int32[]", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.Int32" }, "ValidateNotNullOrEmpty": false }, @@ -113125,9 +108251,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayProbeConfig", - "Name": "New-AzApplicationGatewayProbeConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand", + "NounName": "AzApplicationGatewayFirewallExclusionConfig", + "Name": "New-AzApplicationGatewayFirewallExclusionConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallExclusionConfigCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -113136,25 +108262,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", - "Interval": "System.Nullable`1[System.Int32]", - "Timeout": "System.Nullable`1[System.Int32]", - "UnhealthyThreshold": "System.Nullable`1[System.Int32]", - "MinServers": "System.Nullable`1[System.Int32]", - "Port": "System.Nullable`1[System.Int32]", - "Protocol": "System.String", - "Host": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "MatchText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "ExclusionManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]", + "MatchVariable": "System.String", + "SelectorMatchOperator": "System.String", + "Selector": "System.String" }, "Methods": [ { @@ -113193,31 +108307,16 @@ ], "Parameters": [ { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Protocol", + "Name": "Variable", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Http", - "Https", - "TCP", - "TLS" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "HostName", + "Name": "Operator", "Type": { "Namespace": "System", "Name": "System.String", @@ -113226,7 +108325,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Path", + "Name": "Selector", "Type": { "Namespace": "System", "Name": "System.String", @@ -113235,74 +108334,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Interval", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Timeout", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "UnhealthyThreshold", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PickHostNameFromBackendHttpSettings", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MinServers", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 0, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Port", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 65535, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Match", + "Name": "ExclusionManagedRuleSet", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "StatusCodes": "System.Collections.Generic.List`1[System.String]", - "Body": "System.String", - "StatusCodesText": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet" }, "ValidateNotNullOrEmpty": true }, @@ -113333,7 +108370,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "Variable", "Type": { "Namespace": "System", "Name": "System.String", @@ -113348,18 +108385,12 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Operator", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Http", - "Https", - "TCP", - "TLS" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -113369,22 +108400,7 @@ }, { "ParameterMetadata": { - "Name": "HostName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Path", + "Name": "Selector", "Type": { "Namespace": "System", "Name": "System.String", @@ -113392,51 +108408,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Interval", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Timeout", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UnhealthyThreshold", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, @@ -113444,65 +108415,12 @@ }, { "ParameterMetadata": { - "Name": "PickHostNameFromBackendHttpSettings", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MinServers", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 0, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Port", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 65535, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Match", + "Name": "ExclusionManagedRuleSet", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "StatusCodes": "System.Collections.Generic.List`1[System.String]", - "Body": "System.String", - "StatusCodesText": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet" }, "ValidateNotNullOrEmpty": true }, @@ -113543,9 +108461,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayProbeHealthResponseMatch", - "Name": "New-AzApplicationGatewayProbeHealthResponseMatch", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand", + "NounName": "AzApplicationGatewayFirewallMatchVariable", + "Name": "New-AzApplicationGatewayFirewallMatchVariable", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallMatchVariableCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -113554,12 +108472,11 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "StatusCodes": "System.Collections.Generic.List`1[System.String]", - "Body": "System.String", - "StatusCodesText": "System.String" + "VariableName": "System.String", + "Selector": "System.String" }, "Methods": [ { @@ -113598,21 +108515,30 @@ ], "Parameters": [ { - "Name": "Body", + "Name": "VariableName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "RemoteAddr", + "RequestMethod", + "QueryString", + "PostArgs", + "RequestUri", + "RequestHeaders", + "RequestBody", + "RequestCookies" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "StatusCode", + "Name": "Selector", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -113643,27 +108569,36 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Body", + "Name": "VariableName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "RemoteAddr", + "RequestMethod", + "QueryString", + "PostArgs", + "RequestUri", + "RequestHeaders", + "RequestBody", + "RequestCookies" + ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StatusCode", + "Name": "Selector", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -113704,10 +108639,10 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayRedirectConfiguration", - "Name": "New-AzApplicationGatewayRedirectConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand", - "SupportsShouldProcess": false, + "NounName": "AzApplicationGatewayFirewallPolicy", + "Name": "New-AzApplicationGatewayFirewallPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -113715,22 +108650,20 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "IncludePath": "System.Nullable`1[System.Boolean]", - "IncludeQueryString": "System.Nullable`1[System.Boolean]", - "RedirectType": "System.String", - "TargetUrl": "System.String", + "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", + "Tag": "System.Collections.Hashtable", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "CustomBlockResponseBody": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", - "TargetListenerText": "System.String", - "RequestRoutingRulesText": "System.String", - "UrlPathMapsText": "System.String", - "PathRulesText": "System.String", + "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -113773,6 +108706,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -113781,22 +108717,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RedirectType", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Permanent", - "Found", - "SeeOther", - "Temporary" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "TargetListenerID", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -113805,66 +108735,75 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "TargetListener", + "Name": "CustomRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PolicySetting", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequireServerNameIndication": "System.Boolean", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "HostNames": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "Type": "System.String", - "Etag": "System.String", - "HostName": "System.String", - "Protocol": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", - "FirewallPolicyText": "System.String", - "Name": "System.String", - "Id": "System.String" + "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", + "RequestBodyCheck": "System.Boolean", + "MaxRequestBodySizeInKb": "System.Int32", + "FileUploadLimitInMb": "System.Int32", + "RequestBodyEnforcement": "System.Nullable`1[System.Boolean]", + "FileUploadEnforcement": "System.Nullable`1[System.Boolean]", + "RequestBodyInspectLimitInKB": "System.Nullable`1[System.Int32]", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "JSChallengeCookieExpirationInMins": "System.Nullable`1[System.Int32]", + "State": "System.String", + "Mode": "System.String", + "CustomBlockResponseBody": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "TargetUrl", + "Name": "ManagedRule", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", + "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "IncludePath", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "IncludeQueryString", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -113896,6 +108835,9 @@ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -113906,82 +108848,74 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RedirectType", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Permanent", - "Found", - "SeeOther", - "Temporary" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IncludePath", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IncludeQueryString", + "Name": "CustomRule", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "PolicySetting", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", + "RequestBodyCheck": "System.Boolean", + "MaxRequestBodySizeInKb": "System.Int32", + "FileUploadLimitInMb": "System.Int32", + "RequestBodyEnforcement": "System.Nullable`1[System.Boolean]", + "FileUploadEnforcement": "System.Nullable`1[System.Boolean]", + "RequestBodyInspectLimitInKB": "System.Nullable`1[System.Int32]", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "JSChallengeCookieExpirationInMins": "System.Nullable`1[System.Int32]", + "State": "System.String", + "Mode": "System.String", + "CustomBlockResponseBody": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -113989,74 +108923,49 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "TargetListenerID", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ManagedRule", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", + "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RedirectType", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Permanent", - "Found", - "SeeOther", - "Temporary" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IncludePath", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -114067,14 +108976,11 @@ }, { "ParameterMetadata": { - "Name": "IncludeQueryString", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -114110,55 +109016,165 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayFirewallPolicyExclusion", + "Name": "New-AzApplicationGatewayFirewallPolicyExclusion", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "SetByResource", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "TargetListener", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequireServerNameIndication": "System.Boolean", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "HostNames": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "Type": "System.String", - "Etag": "System.String", - "HostName": "System.String", - "Protocol": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", - "FirewallPolicyText": "System.String", - "Name": "System.String", - "Id": "System.String" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExclusionManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]", + "MatchVariable": "System.String", + "SelectorMatchOperator": "System.String", + "Selector": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": true + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MatchVariable", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "RequestHeaderNames", + "RequestCookieNames", + "RequestArgNames", + "RequestHeaderKeys", + "RequestCookieKeys", + "RequestArgKeys", + "RequestHeaderValues", + "RequestCookieValues", + "RequestArgValues" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SelectorMatchOperator", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Equals", + "Contains", + "StartsWith", + "EndsWith", + "EqualsAny" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Selector", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ExclusionManagedRuleSet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "MatchVariable", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "RequestHeaderNames", + "RequestCookieNames", + "RequestArgNames", + "RequestHeaderKeys", + "RequestCookieKeys", + "RequestArgKeys", + "RequestHeaderValues", + "RequestCookieValues", + "RequestArgValues" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -114168,17 +109184,18 @@ }, { "ParameterMetadata": { - "Name": "RedirectType", + "Name": "SelectorMatchOperator", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Permanent", - "Found", - "SeeOther", - "Temporary" + "Equals", + "Contains", + "StartsWith", + "EndsWith", + "EqualsAny" ], "ValidateNotNullOrEmpty": true }, @@ -114189,34 +109206,29 @@ }, { "ParameterMetadata": { - "Name": "IncludePath", + "Name": "Selector", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IncludeQueryString", + "Name": "ExclusionManagedRuleSet", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -114250,93 +109262,108 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayFirewallPolicyExclusionManagedRule", + "Name": "New-AzApplicationGatewayFirewallPolicyExclusionManagedRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "SetByURL", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "TargetUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RuleId": "System.String" }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RedirectType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Permanent", - "Found", - "SeeOther", - "Temporary" - ], - "ValidateNotNullOrEmpty": true + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IncludePath", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "RuleId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "IncludeQueryString", + "Name": "RuleId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -114373,9 +109400,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayRequestRoutingRule", - "Name": "New-AzApplicationGatewayRequestRoutingRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand", + "NounName": "AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup", + "Name": "New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleGroup", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleGroupCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -114384,28 +109411,11 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "HttpListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "UrlPathMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Priority": "System.Nullable`1[System.Int32]", - "RuleType": "System.String", - "Name": "System.String", - "RedirectConfigurationText": "System.String", - "RewriteRuleSetText": "System.String", - "UrlPathMapText": "System.String", - "Type": "System.String", - "BackendHttpSettingsText": "System.String", - "BackendAddressPoolText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "HttpListenerText": "System.String", - "Id": "System.String" + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule]", + "RuleGroupName": "System.String" }, "Methods": [ { @@ -114445,212 +109455,9 @@ "Parameters": [ { "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RuleType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Basic", - "PathBasedRouting" + "AliasList": [ + "RuleGroupName" ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendHttpSettingsId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "BackendHttpSettings", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", - "Name": "System.String", - "CookieBasedAffinity": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "HttpListenerId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "HttpListener", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequireServerNameIndication": "System.Boolean", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "HostNames": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "Type": "System.String", - "Etag": "System.String", - "HostName": "System.String", - "Protocol": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", - "FirewallPolicyText": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "BackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "BackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "UrlPathMapId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "UrlPathMap", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultRewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultRedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", - "Type": "System.String", - "ProvisioningState": "System.String", - "DefaultBackendAddressPoolText": "System.String", - "DefaultBackendHttpSettingsText": "System.String", - "DefaultRedirectConfigurationText": "System.String", - "PathRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RewriteRuleSetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RewriteRuleSet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RedirectConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -114659,29 +109466,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RedirectConfiguration", + "Name": "Rule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "IncludePath": "System.Nullable`1[System.Boolean]", - "IncludeQueryString": "System.Nullable`1[System.Boolean]", - "RedirectType": "System.String", - "TargetUrl": "System.String", - "Type": "System.String", - "TargetListenerText": "System.String", - "RequestRoutingRulesText": "System.String", - "UrlPathMapsText": "System.String", - "PathRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule" }, "ValidateNotNullOrEmpty": true }, @@ -114713,166 +109503,9 @@ { "ParameterMetadata": { "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuleType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Basic", - "PathBasedRouting" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "RuleGroupName" ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "BackendHttpSettingsId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpListenerId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UrlPathMapId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RewriteRuleSetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RedirectConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -114880,40 +109513,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuleType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Basic", - "PathBasedRouting" - ], - "ValidateNotNullOrEmpty": true - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, @@ -114921,292 +109520,15 @@ }, { "ParameterMetadata": { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResource", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "BackendHttpSettings", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", - "Name": "System.String", - "CookieBasedAffinity": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HttpListener", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequireServerNameIndication": "System.Boolean", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "HostNames": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "Type": "System.String", - "Etag": "System.String", - "HostName": "System.String", - "Protocol": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", - "FirewallPolicyText": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UrlPathMap", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultRewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultRedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", - "Type": "System.String", - "ProvisioningState": "System.String", - "DefaultBackendAddressPoolText": "System.String", - "DefaultBackendHttpSettingsText": "System.String", - "DefaultRedirectConfigurationText": "System.String", - "PathRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RewriteRuleSet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RedirectConfiguration", + "Name": "Rule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "IncludePath": "System.Nullable`1[System.Boolean]", - "IncludeQueryString": "System.Nullable`1[System.Boolean]", - "RedirectType": "System.String", - "TargetUrl": "System.String", - "Type": "System.String", - "TargetListenerText": "System.String", - "RequestRoutingRulesText": "System.String", - "UrlPathMapsText": "System.String", - "PathRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuleType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule" }, - "ValidateSet": [ - "Basic", - "PathBasedRouting" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -115244,9 +109566,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayRewriteRule", - "Name": "New-AzApplicationGatewayRewriteRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand", + "NounName": "AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet", + "Name": "New-AzApplicationGatewayFirewallPolicyExclusionManagedRuleSet", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyExclusionManagedRuleSetCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -115255,16 +109577,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ActionSet": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]", - "RuleSequence": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "ActionSetText": "System.String", - "ConditionsText": "System.String" + "RuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup]", + "RuleSetVersion": "System.String", + "RuleSetType": "System.String" }, "Methods": [ { @@ -115303,7 +109621,10 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "Type", + "AliasList": [ + "RuleSetType" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -115312,40 +109633,26 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ActionSet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "ResponseHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "RequestHeaderConfigurationsText": "System.String", - "ResponseHeaderConfigurationsText": "System.String", - "UrlConfigurationText": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RuleSequence", + "Name": "Version", + "AliasList": [ + "RuleSetVersion" + ], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Condition", + "Name": "RuleGroup", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -115374,7 +109681,10 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "Type", + "AliasList": [ + "RuleSetType" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -115389,19 +109699,14 @@ }, { "ParameterMetadata": { - "Name": "ActionSet", + "Name": "Version", + "AliasList": [ + "RuleSetVersion" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "ResponseHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "RequestHeaderConfigurationsText": "System.String", - "ResponseHeaderConfigurationsText": "System.String", - "UrlConfigurationText": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -115412,29 +109717,14 @@ }, { "ParameterMetadata": { - "Name": "RuleSequence", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Condition", + "Name": "RuleGroup", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -115473,9 +109763,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayRewriteRuleActionSet", - "Name": "New-AzApplicationGatewayRewriteRuleActionSet", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand", + "NounName": "AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration", + "Name": "New-AzApplicationGatewayFirewallPolicyLogScrubbingConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingConfigurationCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -115484,15 +109774,11 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "ResponseHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "RequestHeaderConfigurationsText": "System.String", - "ResponseHeaderConfigurationsText": "System.String", - "UrlConfigurationText": "System.String" + "ScrubbingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule]", + "State": "System.String" }, "Methods": [ { @@ -115531,40 +109817,25 @@ ], "Parameters": [ { - "Name": "RequestHeaderConfiguration", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration" - ] - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResponseHeaderConfiguration", + "Name": "State", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration" - ] + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "UrlConfiguration", + "Name": "ScrubbingRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Reroute": "System.Boolean", - "ModifiedQueryString": "System.String", - "ModifiedPath": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule" }, "ValidateNotNullOrEmpty": true }, @@ -115595,56 +109866,35 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "RequestHeaderConfiguration", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration" - ] - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResponseHeaderConfiguration", + "Name": "State", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration" - ] + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UrlConfiguration", + "Name": "ScrubbingRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Reroute": "System.Boolean", - "ModifiedQueryString": "System.String", - "ModifiedPath": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -115681,9 +109931,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayRewriteRuleCondition", - "Name": "New-AzApplicationGatewayRewriteRuleCondition", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand", + "NounName": "AzApplicationGatewayFirewallPolicyLogScrubbingRule", + "Name": "New-AzApplicationGatewayFirewallPolicyLogScrubbingRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyLogScrubbingRuleCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -115692,13 +109942,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "IgnoreCase": "System.Nullable`1[System.Boolean]", - "Negate": "System.Nullable`1[System.Boolean]", - "Variable": "System.String", - "Pattern": "System.String" + "State": "System.String", + "MatchVariable": "System.String", + "SelectorMatchOperator": "System.String", + "Selector": "System.String" }, "Methods": [ { @@ -115737,40 +109987,56 @@ ], "Parameters": [ { - "Name": "Variable", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "Pattern", + "Name": "MatchVariable", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "RequestHeaderNames", + "RequestCookieNames", + "RequestArgNames", + "RequestPostArgNames", + "RequestJSONArgNames", + "RequestIPAddress" + ], + "ValidateNotNullOrEmpty": true }, { - "Name": "IgnoreCase", + "Name": "SelectorMatchOperator", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Equals", + "EqualsAny" + ], + "ValidateNotNullOrEmpty": true }, { - "Name": "Negate", + "Name": "Selector", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -115799,12 +110065,16 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Variable", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -115814,43 +110084,55 @@ }, { "ParameterMetadata": { - "Name": "Pattern", + "Name": "MatchVariable", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "RequestHeaderNames", + "RequestCookieNames", + "RequestArgNames", + "RequestPostArgNames", + "RequestJSONArgNames", + "RequestIPAddress" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IgnoreCase", + "Name": "SelectorMatchOperator", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Equals", + "EqualsAny" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Negate", + "Name": "Selector", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -115889,9 +110171,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayRewriteRuleHeaderConfiguration", - "Name": "New-AzApplicationGatewayRewriteRuleHeaderConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand", + "NounName": "AzApplicationGatewayFirewallPolicyManagedRule", + "Name": "New-AzApplicationGatewayFirewallPolicyManagedRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRulesCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -115900,12 +110182,11 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "HeaderValueMatcher": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher", - "HeaderValue": "System.String", - "HeaderName": "System.String" + "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", + "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" }, "Methods": [ { @@ -115944,36 +110225,24 @@ ], "Parameters": [ { - "Name": "HeaderName", + "Name": "ManagedRuleSet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet" }, "ValidateNotNullOrEmpty": true }, { - "Name": "HeaderValue", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HeaderValueMatcher", + "Name": "Exclusion", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "IgnoreCase": "System.Nullable`1[System.Boolean]", - "Negate": "System.Nullable`1[System.Boolean]", - "Pattern": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -116002,29 +110271,15 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "HeaderName", + "Name": "ManagedRuleSet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HeaderValue", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -116032,18 +110287,14 @@ }, { "ParameterMetadata": { - "Name": "HeaderValueMatcher", + "Name": "Exclusion", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "IgnoreCase": "System.Nullable`1[System.Boolean]", - "Negate": "System.Nullable`1[System.Boolean]", - "Pattern": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -116082,9 +110333,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayRewriteRuleSet", - "Name": "New-AzApplicationGatewayRewriteRuleSet", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand", + "NounName": "AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride", + "Name": "New-AzApplicationGatewayFirewallPolicyManagedRuleGroupOverride", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleGroupOverrideCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -116093,22 +110344,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]", + "RuleGroupName": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeRewriteRules", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -116145,7 +110387,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "RuleGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -116154,14 +110396,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RewriteRule", + "Name": "Rule", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride" }, "ValidateNotNullOrEmpty": true }, @@ -116192,7 +110432,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "RuleGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -116207,18 +110447,16 @@ }, { "ParameterMetadata": { - "Name": "RewriteRule", + "Name": "Rule", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -116255,10 +110493,10 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayRewriteRuleUrlConfiguration", - "Name": "New-AzApplicationGatewayRewriteRuleUrlConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleUrlConfigurationCommand", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewayFirewallPolicyManagedRuleOverride", + "Name": "New-AzApplicationGatewayFirewallPolicyManagedRuleOverride", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleOverrideCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -116266,12 +110504,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Reroute": "System.Boolean", - "ModifiedQueryString": "System.String", - "ModifiedPath": "System.String" + "RuleId": "System.String", + "State": "System.String", + "Action": "System.String", + "Sensitivity": "System.String" }, "Methods": [ { @@ -116310,31 +110549,56 @@ ], "Parameters": [ { - "Name": "ModifiedPath", + "Name": "RuleId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ModifiedQueryString", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Disabled", + "Enabled" + ], + "ValidateNotNullOrEmpty": true }, { - "Name": "Reroute", + "Name": "Action", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "AnomalyScoring", + "Allow", + "Block", + "Log" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Sensitivity", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "Low", + "Medium", + "High" + ], + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -116363,13 +110627,32 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ModifiedPath", + "Name": "RuleId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "State", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Disabled", + "Enabled" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -116378,13 +110661,19 @@ }, { "ParameterMetadata": { - "Name": "ModifiedQueryString", + "Name": "Action", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "AnomalyScoring", + "Allow", + "Block", + "Log" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -116393,13 +110682,19 @@ }, { "ParameterMetadata": { - "Name": "Reroute", + "Name": "Sensitivity", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "None", + "Low", + "Medium", + "High" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -116438,33 +110733,23 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayRoutingRule", - "Name": "New-AzApplicationGatewayRoutingRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRoutingRuleCommand", + "NounName": "AzApplicationGatewayFirewallPolicyManagedRuleSet", + "Name": "New-AzApplicationGatewayFirewallPolicyManagedRuleSet", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicyManagedRuleSetCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BackendSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Listener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Priority": "System.Nullable`1[System.Int32]", - "RuleType": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressPoolText": "System.String", - "BackendSettingsText": "System.String", - "ListenerText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]", + "RuleSetVersion": "System.String", + "RuleSetType": "System.String" }, "Methods": [ { @@ -116503,76 +110788,7 @@ ], "Parameters": [ { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RuleType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Basic", - "PathBasedRouting" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendSettingsId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "BackendSettings", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "Timeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ProbeText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ListenerId", + "Name": "RuleSetType", "Type": { "Namespace": "System", "Name": "System.String", @@ -116581,33 +110797,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Listener", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "HostNames": "System.Collections.Generic.List`1[System.String]", - "Protocol": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "BackendAddressPoolId", + "Name": "RuleSetVersion", "Type": { "Namespace": "System", "Name": "System.String", @@ -116616,22 +110806,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "BackendAddressPool", + "Name": "RuleGroupOverride", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride" }, "ValidateNotNullOrEmpty": true }, @@ -116662,7 +110842,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "RuleSetType", "Type": { "Namespace": "System", "Name": "System.String", @@ -116677,16 +110857,12 @@ }, { "ParameterMetadata": { - "Name": "RuleType", + "Name": "RuleSetVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Basic", - "PathBasedRouting" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -116696,20 +110872,16 @@ }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "RuleGroupOverride", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -116741,18 +110913,248 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayFirewallPolicySetting", + "Name": "New-AzApplicationGatewayFirewallPolicySetting", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFirewallPolicySettingCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", + "RequestBodyCheck": "System.Boolean", + "MaxRequestBodySizeInKb": "System.Int32", + "FileUploadLimitInMb": "System.Int32", + "RequestBodyEnforcement": "System.Nullable`1[System.Boolean]", + "FileUploadEnforcement": "System.Nullable`1[System.Boolean]", + "RequestBodyInspectLimitInKB": "System.Nullable`1[System.Int32]", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "JSChallengeCookieExpirationInMins": "System.Nullable`1[System.Int32]", + "State": "System.String", + "Mode": "System.String", + "CustomBlockResponseBody": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Mode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Prevention", + "Detection" + ], + "ValidateNotNullOrEmpty": true }, { - "Name": "SetByResourceId", + "Name": "State", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Disabled", + "Enabled" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DisableRequestBodyEnforcement", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RequestBodyInspectLimitInKB", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DisableRequestBodyCheck", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MaxRequestBodySizeInKb", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DisableFileUploadEnforcement", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "MaxFileUploadInMb", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CustomBlockResponseStatusCode", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CustomBlockResponseBody", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "LogScrubbing", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ScrubbingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule]", + "State": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "JSChallengeCookieExpirationInMins", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 5, + "ValidateRangeMax": 1440, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "BackendSettingsId", + "Name": "Mode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Prevention", + "Detection" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -116762,12 +111164,16 @@ }, { "ParameterMetadata": { - "Name": "ListenerId", + "Name": "State", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Disabled", + "Enabled" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -116777,11 +111183,14 @@ }, { "ParameterMetadata": { - "Name": "BackendAddressPoolId", + "Name": "DisableRequestBodyEnforcement", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": true }, @@ -116792,111 +111201,62 @@ }, { "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuleType", + "Name": "RequestBodyInspectLimitInKB", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateSet": [ - "Basic", - "PathBasedRouting" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "DisableRequestBodyCheck", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "MaxRequestBodySizeInKb", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResource", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "BackendSettings", + "Name": "DisableFileUploadEnforcement", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "Timeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ProbeText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": true }, @@ -116907,28 +111267,11 @@ }, { "ParameterMetadata": { - "Name": "Listener", + "Name": "MaxFileUploadInMb", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "HostNames": "System.Collections.Generic.List`1[System.String]", - "Protocol": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -116939,22 +111282,14 @@ }, { "ParameterMetadata": { - "Name": "BackendAddressPool", + "Name": "CustomBlockResponseStatusCode", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": true }, @@ -116965,7 +111300,7 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "CustomBlockResponseBody", "Type": { "Namespace": "System", "Name": "System.String", @@ -116973,33 +111308,33 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleType", + "Name": "LogScrubbing", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ScrubbingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule]", + "State": "System.String" + } }, - "ValidateSet": [ - "Basic", - "PathBasedRouting" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "JSChallengeCookieExpirationInMins", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", @@ -117008,11 +111343,11 @@ "System.Int32" ] }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, - "ValidateNotNullOrEmpty": false + "ValidateRangeMin": 5, + "ValidateRangeMax": 1440, + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -117049,9 +111384,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewaySku", - "Name": "New-AzApplicationGatewaySku", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand", + "NounName": "AzApplicationGatewayFrontendIPConfig", + "Name": "New-AzApplicationGatewayFrontendIPConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendIPConfigCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -117060,13 +111395,22 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Capacity": "System.Nullable`1[System.Int32]", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateLinkConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateIPAddress": "System.String", + "PrivateIPAllocationMethod": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "SubnetText": "System.String", + "PublicIpAddressText": "System.String", + "PrivateLinkConfigurationText": "System.String", "Name": "System.String", - "Tier": "System.String", - "Family": "System.String" + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -117111,46 +111455,144 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Standard_Small", - "Standard_Medium", - "Standard_Large", - "WAF_Medium", - "WAF_Large", - "Standard_v2", - "WAF_v2", - "Basic" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "Tier", + "Name": "PrivateIPAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Standard", - "WAF", - "Standard_v2", - "WAF_v2", - "Basic" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Capacity", + "Name": "SubnetId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, + { + "Name": "Subnet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PublicIPAddressId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PublicIPAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateLinkConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "IpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateLinkConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -117184,16 +111626,6 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Standard_Small", - "Standard_Medium", - "Standard_Large", - "WAF_Medium", - "WAF_Large", - "Standard_v2", - "WAF_v2", - "Basic" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -117203,38 +111635,13 @@ }, { "ParameterMetadata": { - "Name": "Tier", + "Name": "PrivateIPAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Standard", - "WAF", - "Standard_v2", - "WAF_v2", - "Basic" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Capacity", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -117268,150 +111675,28 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewaySslCertificate", - "Name": "New-AzApplicationGatewaySslCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Password": "System.Security.SecureString", - "Data": "System.String", - "PublicCertData": "System.String", - "KeyVaultSecretId": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "CertificateFile", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Password", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "KeyVaultSecretId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "PrivateIPAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CertificateFile", + "Name": "SubnetId", "Type": { "Namespace": "System", "Name": "System.String", @@ -117426,13 +111711,13 @@ }, { "ParameterMetadata": { - "Name": "Password", + "Name": "PublicIPAddressId", "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -117441,19 +111726,34 @@ }, { "ParameterMetadata": { - "Name": "KeyVaultSecretId", + "Name": "PrivateLinkConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -117481,174 +111781,19 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewaySslPolicy", - "Name": "New-AzApplicationGatewaySslPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", - "CipherSuites": "System.Collections.Generic.List`1[System.String]", - "PolicyType": "System.String", - "PolicyName": "System.String", - "MinProtocolVersion": "System.String", - "DisabledSslProtocolsText": "System.String", - "CipherSuitesText": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "DisabledSslProtocols", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PolicyType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Predefined", - "Custom", - "CustomV2" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PolicyName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CipherSuite", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MinProtocolVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "DisabledSslProtocols", + "Name": "PrivateIPAddress", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -117657,17 +111802,45 @@ }, { "ParameterMetadata": { - "Name": "PolicyType", + "Name": "Subnet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } }, - "ValidateSet": [ - "Predefined", - "Custom", - "CustomV2" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -117677,11 +111850,42 @@ }, { "ParameterMetadata": { - "Name": "PolicyName", + "Name": "PublicIPAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -117692,12 +111896,20 @@ }, { "ParameterMetadata": { - "Name": "CipherSuite", + "Name": "PrivateLinkConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "IpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -117708,21 +111920,15 @@ }, { "ParameterMetadata": { - "Name": "MinProtocolVersion", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -117759,9 +111965,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewaySslProfile", - "Name": "New-AzApplicationGatewaySslProfile", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslProfileCommand", + "NounName": "AzApplicationGatewayFrontendPort", + "Name": "New-AzApplicationGatewayFrontendPort", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayFrontendPortCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -117770,15 +111976,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", + "Port": "System.Int32", + "ProvisioningState": "System.String", + "Type": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -117829,43 +112032,11 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "SslPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", - "CipherSuites": "System.Collections.Generic.List`1[System.String]", - "PolicyType": "System.String", - "PolicyName": "System.String", - "MinProtocolVersion": "System.String", - "DisabledSslProtocolsText": "System.String", - "CipherSuitesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ClientAuthConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", - "VerifyClientRevocation": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "TrustedClientCertificates", + "Name": "Port", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -117911,59 +112082,15 @@ }, { "ParameterMetadata": { - "Name": "SslPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", - "CipherSuites": "System.Collections.Generic.List`1[System.String]", - "PolicyType": "System.String", - "PolicyName": "System.String", - "MinProtocolVersion": "System.String", - "DisabledSslProtocolsText": "System.String", - "CipherSuitesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ClientAuthConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", - "VerifyClientRevocation": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TrustedClientCertificates", + "Name": "Port", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -118000,9 +112127,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayTrustedClientCertificate", - "Name": "New-AzApplicationGatewayTrustedClientCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayTrustedClientCertificateCommand", + "NounName": "AzApplicationGatewayHeaderValueMatcher", + "Name": "New-AzApplicationGatewayHeaderValueMatcher", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHeaderValueMatcherCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -118011,17 +112138,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Data": "System.String", - "ValidatedCertData": "System.String", - "ClientCertIssuerDN": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "IgnoreCase": "System.Nullable`1[System.Boolean]", + "Negate": "System.Nullable`1[System.Boolean]", + "Pattern": "System.String" }, "Methods": [ { @@ -118060,22 +112182,31 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "Pattern", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "CertificateFile", + "Name": "IgnoreCase", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Negate", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -118104,13 +112235,13 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "Pattern", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -118119,15 +112250,30 @@ }, { "ParameterMetadata": { - "Name": "CertificateFile", + "Name": "IgnoreCase", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Negate", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -118164,10 +112310,10 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayTrustedRootCertificate", - "Name": "New-AzApplicationGatewayTrustedRootCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayTrustedRootCertificateCommand", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewayHttpListener", + "Name": "New-AzApplicationGatewayHttpListener", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayHttpListenerCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -118175,14 +112321,28 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Data": "System.String", + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequireServerNameIndication": "System.Boolean", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "HostNames": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", "Type": "System.String", - "Name": "System.String", "Etag": "System.String", + "HostName": "System.String", + "Protocol": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "FirewallPolicyText": "System.String", + "Name": "System.String", "Id": "System.String" }, "Methods": [ @@ -118231,7 +112391,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "CertificateFile", + "Name": "FrontendIPConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -118240,159 +112400,31 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CertificateFile", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzApplicationGatewayUrlPathMapConfig", - "Name": "New-AzApplicationGatewayUrlPathMapConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "BackendSetByResource", - "OutputTypes": [ - { + "Name": "FrontendIPConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultRewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultRedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", - "Type": "System.String", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateLinkConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateIPAddress": "System.String", + "PrivateIPAllocationMethod": "System.String", "ProvisioningState": "System.String", - "DefaultBackendAddressPoolText": "System.String", - "DefaultBackendHttpSettingsText": "System.String", - "DefaultRedirectConfigurationText": "System.String", - "PathRulesText": "System.String", + "Type": "System.String", + "SubnetText": "System.String", + "PublicIpAddressText": "System.String", + "PrivateLinkConfigurationText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + } }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ + "ValidateNotNullOrEmpty": true + }, { - "Name": "Name", + "Name": "FrontendPortId", "Type": { "Namespace": "System", "Name": "System.String", @@ -118401,17 +112433,24 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PathRules", + "Name": "FrontendPort", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Port": "System.Int32", + "ProvisioningState": "System.String", + "Type": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultBackendAddressPoolId", + "Name": "SslCertificateId", "Type": { "Namespace": "System", "Name": "System.String", @@ -118420,76 +112459,81 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultBackendAddressPool", + "Name": "FirewallPolicyId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FirewallPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", + "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", + "Tag": "System.Collections.Hashtable", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "CustomBlockResponseBody": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", + "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultBackendHttpSettingsId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultBackendHttpSettings", + "Name": "SslCertificate", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", + "Password": "System.Security.SecureString", + "Data": "System.String", + "PublicCertData": "System.String", + "KeyVaultSecretId": "System.String", "ProvisioningState": "System.String", "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", "Name": "System.String", - "CookieBasedAffinity": "System.String", + "Etag": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultRewriteRuleSet", + "Name": "SslProfileId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SslProfile", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -118498,47 +112542,57 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultRewriteRuleSetId", + "Name": "HostName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultRedirectConfigurationId", + "Name": "HostNames", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RequireServerNameIndication", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "true", + "false" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultRedirectConfiguration", + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Http", + "Https" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CustomErrorConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "IncludePath": "System.Nullable`1[System.Boolean]", - "IncludeQueryString": "System.Nullable`1[System.Boolean]", - "RedirectType": "System.String", - "TargetUrl": "System.String", - "Type": "System.String", - "TargetListenerText": "System.String", - "RequestRoutingRulesText": "System.String", - "UrlPathMapsText": "System.String", - "PathRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true }, @@ -118584,13 +112638,66 @@ }, { "ParameterMetadata": { - "Name": "PathRules", + "Name": "HostName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HostNames", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RequireServerNameIndication", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "true", + "false" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Http", + "Https" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -118598,6 +112705,22 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "CustomErrorConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -118627,11 +112750,11 @@ ] }, { - "Name": "BackendSetByResourceId", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultBackendAddressPoolId", + "Name": "FrontendIPConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -118639,14 +112762,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultBackendHttpSettingsId", + "Name": "FrontendPortId", "Type": { "Namespace": "System", "Name": "System.String", @@ -118654,20 +112777,20 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultRewriteRuleSetId", + "Name": "SslCertificateId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -118676,147 +112799,93 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "FirewallPolicyId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PathRules", + "Name": "SslProfileId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "BackendSetByResource", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultBackendAddressPool", + "Name": "HostName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultBackendHttpSettings", + "Name": "HostNames", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", - "Name": "System.String", - "CookieBasedAffinity": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultRewriteRuleSet", + "Name": "RequireServerNameIndication", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "true", + "false" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -118825,12 +112894,16 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Http", + "Https" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -118840,16 +112913,16 @@ }, { "ParameterMetadata": { - "Name": "PathRules", + "Name": "CustomErrorConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -118883,26 +112956,32 @@ ] }, { - "Name": "RedirectSetByResource", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultRewriteRuleSet", + "Name": "FrontendIPConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateLinkConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateIPAddress": "System.String", + "PrivateIPAllocationMethod": "System.String", "ProvisioningState": "System.String", "Type": "System.String", - "RewriteRulesText": "System.String", + "SubnetText": "System.String", + "PublicIpAddressText": "System.String", + "PrivateLinkConfigurationText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -118911,25 +112990,15 @@ }, { "ParameterMetadata": { - "Name": "DefaultRedirectConfiguration", + "Name": "FrontendPort", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "IncludePath": "System.Nullable`1[System.Boolean]", - "IncludeQueryString": "System.Nullable`1[System.Boolean]", - "RedirectType": "System.String", - "TargetUrl": "System.String", + "Port": "System.Int32", + "ProvisioningState": "System.String", "Type": "System.String", - "TargetListenerText": "System.String", - "RequestRoutingRulesText": "System.String", - "UrlPathMapsText": "System.String", - "PathRulesText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -118937,59 +113006,85 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "FirewallPolicy", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", + "Tag": "System.Collections.Hashtable", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "CustomBlockResponseBody": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PathRules", + "Name": "SslCertificate", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Password": "System.Security.SecureString", + "Data": "System.String", + "PublicCertData": "System.String", + "KeyVaultSecretId": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "SslProfile", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -118998,21 +113093,31 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "RedirectSetByResourceId", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultRewriteRuleSetId", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HostName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -119021,27 +113126,51 @@ }, { "ParameterMetadata": { - "Name": "DefaultRedirectConfigurationId", + "Name": "HostNames", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RequireServerNameIndication", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "true", + "false" + ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Http", + "Https" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -119051,16 +113180,16 @@ }, { "ParameterMetadata": { - "Name": "PathRules", + "Name": "CustomErrorConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -119097,9 +113226,9 @@ }, { "VerbName": "New", - "NounName": "AzApplicationGatewayWebApplicationFirewallConfiguration", - "Name": "New-AzApplicationGatewayWebApplicationFirewallConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand", + "NounName": "AzApplicationGatewayIdentity", + "Name": "New-AzApplicationGatewayIdentity", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIdentityCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -119108,20 +113237,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Enabled": "System.Boolean", - "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", - "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", - "RequestBodyCheck": "System.Nullable`1[System.Boolean]", - "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", - "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", - "FirewallMode": "System.String", - "RuleSetType": "System.String", - "RuleSetVersion": "System.String", - "DisabledRuleGroupsText": "System.String", - "ExclusionsText": "System.String" + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" }, "Methods": [ { @@ -119160,96 +113282,15 @@ ], "Parameters": [ { - "Name": "Enabled", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FirewallMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Detection", - "Prevention" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RuleSetType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "OWASP" + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RuleSetVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DisabledRuleGroup", - "AliasList": [ - "DisabledRuleGroups" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RequestBodyCheck", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "MaxRequestBodySizeInKb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FileUploadLimitInMb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Exclusion", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion" - }, "ValidateNotNullOrEmpty": true }, { @@ -119279,150 +113320,21 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Enabled", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FirewallMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Detection", - "Prevention" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuleSetType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "OWASP" + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuleSetVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DisabledRuleGroup", - "AliasList": [ - "DisabledRuleGroups" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RequestBodyCheck", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MaxRequestBodySizeInKb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FileUploadLimitInMb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Exclusion", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion" - }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -119456,10 +113368,10 @@ }, { "VerbName": "New", - "NounName": "AzApplicationSecurityGroup", - "Name": "New-AzApplicationSecurityGroup", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmApplicationSecurityGroup", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewayIPConfiguration", + "Name": "New-AzApplicationGatewayIPConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayIPConfigurationCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -119467,16 +113379,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Tag": "System.Collections.Hashtable", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "SubnetText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -119517,20 +113426,8 @@ } ], "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -119539,7 +113436,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "SubnetId", "Type": { "Namespace": "System", "Name": "System.String", @@ -119548,29 +113445,44 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", + "Name": "Subnet", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -119601,7 +113513,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -119612,14 +113524,42 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DefaultProfile", "AliasList": [ - "ResourceName" + "AzContext", + "AzureRmContext", + "AzureCredential" ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SubnetId", "Type": { "Namespace": "System", "Name": "System.String", @@ -119627,14 +113567,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -119645,30 +113585,79 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResource", + "Parameters": [ { "ParameterMetadata": { - "Name": "Force", + "Name": "Subnet", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -119679,15 +113668,15 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -119724,62 +113713,37 @@ }, { "VerbName": "New", - "NounName": "AzBastion", - "Name": "New-AzBastion", - "ClassName": "Microsoft.Azure.Commands.Network.Bastion.NewAzBastionCommand", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewayListener", + "Name": "New-AzApplicationGatewayListener", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayListenerCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByPublicIpAddressByVirtualNetwork", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableShareableLink": "System.Nullable`1[System.Boolean]", - "EnableIpConnect": "System.Nullable`1[System.Boolean]", - "EnableTunneling": "System.Nullable`1[System.Boolean]", - "EnableSessionRecording": "System.Nullable`1[System.Boolean]", - "EnableKerberos": "System.Nullable`1[System.Boolean]", - "DisableCopyPaste": "System.Nullable`1[System.Boolean]", - "ScaleUnit": "System.Nullable`1[System.Int32]", + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "Protocol": "System.String", "ProvisioningState": "System.String", - "Etag": "System.String", - "IpConfigurationsText": "System.String", - "SkuText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", "Type": "System.String", - "DnsName": "System.String", - "TagsTable": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ - { - "Name": "Allocate", - "Parameters": [ - { - "Name": "virtualNetwork", - "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" - }, - { - "Name": "publicIpAddress", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "Deallocate", - "ReturnType": "System.Void" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -119806,27 +113770,6 @@ "Constructors": [ { "Name": "" - }, - { - "Name": "", - "Parameters": [ - { - "Name": "name", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "rgName", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "location", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "sku", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] } ] }, @@ -119837,7 +113780,7 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -119846,11 +113789,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], + "Name": "FrontendIPConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -119859,53 +113798,31 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PublicIpAddress", - "AliasList": [ - "PublicIpAddressObject" - ], + "Name": "FrontendIPConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateLinkConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateIPAddress": "System.String", + "PrivateIPAllocationMethod": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", + "SubnetText": "System.String", + "PublicIpAddressText": "System.String", + "PrivateLinkConfigurationText": "System.String", "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "PublicIpAddressId", - "AliasList": [ - "PublicIpAddressResourceId" - ], + "Name": "FrontendPortId", "Type": { "Namespace": "System", "Name": "System.String", @@ -119914,19 +113831,24 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PublicIpAddressRgName", - "AliasList": [ - "PublicIpAddressResourceGroupName" - ], + "Name": "FrontendPort", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Port": "System.Int32", + "ProvisioningState": "System.String", + "Type": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "PublicIpAddressName", + "Name": "SslCertificateId", "Type": { "Namespace": "System", "Name": "System.String", @@ -119935,199 +113857,76 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualNetwork", - "AliasList": [ - "VirtualNetworkObject" - ], + "Name": "SslCertificate", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", + "Password": "System.Security.SecureString", + "Data": "System.String", + "PublicCertData": "System.String", + "KeyVaultSecretId": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", + "Name": "System.String", "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualNetworkId", - "AliasList": [ - "VirtualNetworkResourceId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualNetworkRgName", - "AliasList": [ - "VirtualNetworkResourceGroupName" - ], + "Name": "SslProfileId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "VirtualNetworkName", + "Name": "SslProfile", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Sku", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Basic", - "Standard", - "Premium" + "TCP", + "TLS" ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ScaleUnit", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableKerberos", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DisableCopyPaste", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableTunneling", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableIpConnect", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableShareableLink", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "EnableSessionRecording", + "Name": "HostNames", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -120156,7 +113955,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -120171,16 +113970,16 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "TCP", + "TLS" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -120190,174 +113989,155 @@ }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "HostNames", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "Basic", - "Standard", - "Premium" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ScaleUnit", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableKerberos", + "Name": "FrontendIPConfigurationId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableCopyPaste", + "Name": "FrontendPortId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableTunneling", + "Name": "SslCertificateId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableIpConnect", + "Name": "SslProfileId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableShareableLink", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableSessionRecording", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "TCP", + "TLS" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "HostNames", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -120393,315 +114173,499 @@ ] }, { - "Name": "ByPublicIpAddressByVirtualNetwork", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "PublicIpAddress", - "AliasList": [ - "PublicIpAddressObject" - ], + "Name": "FrontendIPConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateLinkConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateIPAddress": "System.String", + "PrivateIPAllocationMethod": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", + "SubnetText": "System.String", + "PublicIpAddressText": "System.String", + "PrivateLinkConfigurationText": "System.String", "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetwork", - "AliasList": [ - "VirtualNetworkObject" - ], + "Name": "FrontendPort", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", + "Port": "System.Int32", + "ProvisioningState": "System.String", "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", + "Name": "System.String", "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "SslCertificate", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Password": "System.Security.SecureString", + "Data": "System.String", + "PublicCertData": "System.String", + "KeyVaultSecretId": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], + "Name": "SslProfile", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Basic", - "Standard", - "Premium" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ScaleUnit", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "TCP", + "TLS" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableKerberos", + "Name": "HostNames", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableCopyPaste", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayPathRuleConfig", + "Name": "New-AzApplicationGatewayPathRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPathRuleConfigCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Paths": "System.Collections.Generic.List`1[System.String]", + "Type": "System.String", + "PathsText": "System.String", + "BackendAddressPoolText": "System.String", + "BackendHttpSettingsText": "System.String", + "RedirectConfigurationText": "System.String", + "RewriteRuleSetText": "System.String", + "FirewallPolicyText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "EnableTunneling", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableIpConnect", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableShareableLink", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Paths", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackendAddressPoolId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackendHttpSettingsId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackendHttpSettings", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RewriteRuleSetId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RewriteRuleSet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RedirectConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RedirectConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "IncludePath": "System.Nullable`1[System.Boolean]", + "IncludeQueryString": "System.Nullable`1[System.Boolean]", + "RedirectType": "System.String", + "TargetUrl": "System.String", + "Type": "System.String", + "TargetListenerText": "System.String", + "RequestRoutingRulesText": "System.String", + "UrlPathMapsText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "FirewallPolicyId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FirewallPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", + "Tag": "System.Collections.Hashtable", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "CustomBlockResponseBody": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableSessionRecording", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Paths", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -120735,63 +114699,26 @@ ] }, { - "Name": "ByPublicIpAddressByVirtualNetworkRGNameByVirtualNetworkName", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "PublicIpAddress", - "AliasList": [ - "PublicIpAddressObject" - ], + "Name": "BackendAddressPoolId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkRgName", - "AliasList": [ - "VirtualNetworkResourceGroupName" - ], + "Name": "BackendHttpSettingsId", "Type": { "Namespace": "System", "Name": "System.String", @@ -120799,14 +114726,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkName", + "Name": "RewriteRuleSetId", "Type": { "Namespace": "System", "Name": "System.String", @@ -120814,14 +114741,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "RedirectConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -120829,202 +114756,266 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], + "Name": "FirewallPolicyId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Basic", - "Standard", - "Premium" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ScaleUnit", + "Name": "Paths", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableKerberos", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "SetByResource", + "Parameters": [ { "ParameterMetadata": { - "Name": "DisableCopyPaste", + "Name": "BackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableTunneling", + "Name": "BackendHttpSettings", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableIpConnect", + "Name": "RewriteRuleSet", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableShareableLink", + "Name": "RedirectConfiguration", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "IncludePath": "System.Nullable`1[System.Boolean]", + "IncludeQueryString": "System.Nullable`1[System.Boolean]", + "RedirectType": "System.String", + "TargetUrl": "System.String", + "Type": "System.String", + "TargetListenerText": "System.String", + "RequestRoutingRulesText": "System.String", + "UrlPathMapsText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableSessionRecording", + "Name": "FirewallPolicy", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", + "Tag": "System.Collections.Hashtable", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "CustomBlockResponseBody": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Paths", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -121056,65 +115047,116 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayPrivateLinkConfiguration", + "Name": "New-AzApplicationGatewayPrivateLinkConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "ByPublicIpAddressByVirtualNetworkId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "PublicIpAddress", - "AliasList": [ - "PublicIpAddressObject" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "IpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualNetworkId", - "AliasList": [ - "VirtualNetworkResourceId" - ], + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -121129,187 +115171,318 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "IpConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DefaultProfile", "AliasList": [ - "ResourceName", - "BastionName" + "AzContext", + "AzureRmContext", + "AzureCredential" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Sku", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateSet": [ - "Basic", - "Standard", - "Premium" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayPrivateLinkIpConfiguration", + "Name": "New-AzApplicationGatewayPrivateLinkIpConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayPrivateLinkIpConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Primary": "System.Nullable`1[System.Boolean]", + "PrivateIPAllocationMethod": "System.String", + "PrivateIPAddress": "System.String", + "ProvisioningState": "System.String", + "PrivateIPAddressVersion": "System.String", + "SubnetText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "ScaleUnit", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableKerberos", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DisableCopyPaste", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Subnet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateIpAddressVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateIpAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Primary", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableTunneling", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableIpConnect", + "Name": "Subnet", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableShareableLink", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPv4" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableSessionRecording", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Primary", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -121322,21 +115495,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -121364,16 +115522,220 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayProbeConfig", + "Name": "New-AzApplicationGatewayProbeConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeConfigCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", + "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", + "Interval": "System.Nullable`1[System.Int32]", + "Timeout": "System.Nullable`1[System.Int32]", + "UnhealthyThreshold": "System.Nullable`1[System.Int32]", + "MinServers": "System.Nullable`1[System.Int32]", + "Port": "System.Nullable`1[System.Int32]", + "Protocol": "System.String", + "Host": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "MatchText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByPublicIpAddressIdByVirtualNetwork", + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Http", + "Https", + "TCP", + "TLS" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HostName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Path", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Interval", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Timeout", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "UnhealthyThreshold", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PickHostNameFromBackendHttpSettings", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MinServers", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 0, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Port", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 65535, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Match", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "StatusCodes": "System.Collections.Generic.List`1[System.String]", + "Body": "System.String", + "StatusCodesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "PublicIpAddressId", - "AliasList": [ - "PublicIpAddressResourceId" - ], + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -121388,64 +115750,18 @@ }, { "ParameterMetadata": { - "Name": "VirtualNetwork", - "AliasList": [ - "VirtualNetworkObject" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", - "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Http", + "Https", + "TCP", + "TLS" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -121455,11 +115771,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], + "Name": "HostName", "Type": { "Namespace": "System", "Name": "System.String", @@ -121467,165 +115779,113 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "Path", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Basic", - "Standard", - "Premium" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ScaleUnit", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableKerberos", + "Name": "Interval", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableCopyPaste", + "Name": "Timeout", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableTunneling", + "Name": "UnhealthyThreshold", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableIpConnect", + "Name": "PickHostNameFromBackendHttpSettings", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableShareableLink", + "Name": "MinServers", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 0, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableSessionRecording", + "Name": "Port", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 65535, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -121635,13 +115895,18 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Match", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "StatusCodes": "System.Collections.Generic.List`1[System.String]", + "Body": "System.String", + "StatusCodesText": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -121675,16 +115940,112 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayProbeHealthResponseMatch", + "Name": "New-AzApplicationGatewayProbeHealthResponseMatch", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayProbeHealthResponseMatchCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "StatusCodes": "System.Collections.Generic.List`1[System.String]", + "Body": "System.String", + "StatusCodesText": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Body", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByPublicIpAddressIdByVirtualNetworkRGNameByVirtualNetworkName", + "Name": "StatusCode", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "PublicIpAddressId", - "AliasList": [ - "PublicIpAddressResourceId" - ], + "Name": "Body", "Type": { "Namespace": "System", "Name": "System.String", @@ -121692,66 +116053,251 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkRgName", - "AliasList": [ - "VirtualNetworkResourceGroupName" - ], + "Name": "StatusCode", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayRedirectConfiguration", + "Name": "New-AzApplicationGatewayRedirectConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRedirectConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "IncludePath": "System.Nullable`1[System.Boolean]", + "IncludeQueryString": "System.Nullable`1[System.Boolean]", + "RedirectType": "System.String", + "TargetUrl": "System.String", + "Type": "System.String", + "TargetListenerText": "System.String", + "RequestRoutingRulesText": "System.String", + "UrlPathMapsText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RedirectType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Permanent", + "Found", + "SeeOther", + "Temporary" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TargetListenerID", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TargetListener", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequireServerNameIndication": "System.Boolean", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Type": "System.String", + "Etag": "System.String", + "HostName": "System.String", + "Protocol": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "FirewallPolicyText": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TargetUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IncludePath", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IncludeQueryString", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -121766,45 +116312,46 @@ }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "RedirectType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Basic", - "Standard", - "Premium" + "Permanent", + "Found", + "SeeOther", + "Temporary" ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ScaleUnit", + "Name": "IncludePath", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Int32" + "System.Boolean" ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableKerberos", + "Name": "IncludeQueryString", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", @@ -121817,84 +116364,94 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableCopyPaste", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableTunneling", + "Name": "TargetListenerID", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableIpConnect", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableShareableLink", + "Name": "RedirectType", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Permanent", + "Found", + "SeeOther", + "Temporary" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableSessionRecording", + "Name": "IncludePath", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", @@ -121907,31 +116464,19 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "IncludeQueryString", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, @@ -121969,32 +116514,48 @@ ] }, { - "Name": "ByPublicIpAddressIdByVirtualNetworkId", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "PublicIpAddressId", - "AliasList": [ - "PublicIpAddressResourceId" - ], + "Name": "TargetListener", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequireServerNameIndication": "System.Boolean", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Type": "System.String", + "Etag": "System.String", + "HostName": "System.String", + "Protocol": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "FirewallPolicyText": "System.String", + "Name": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkId", - "AliasList": [ - "VirtualNetworkResourceId" - ], + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -122009,12 +116570,18 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "RedirectType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Permanent", + "Found", + "SeeOther", + "Temporary" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -122024,118 +116591,125 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], + "Name": "IncludePath", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "IncludeQueryString", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateSet": [ - "Basic", - "Standard", - "Premium" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ScaleUnit", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "SetByURL", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableKerberos", + "Name": "TargetUrl", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableCopyPaste", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableTunneling", + "Name": "RedirectType", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Permanent", + "Found", + "SeeOther", + "Temporary" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableIpConnect", + "Name": "IncludePath", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", @@ -122148,12 +116722,12 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableShareableLink", + "Name": "IncludeQueryString", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", @@ -122166,50 +116740,425 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableSessionRecording", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayRequestRoutingRule", + "Name": "New-AzApplicationGatewayRequestRoutingRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRequestRoutingRuleCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "HttpListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "UrlPathMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Priority": "System.Nullable`1[System.Int32]", + "RuleType": "System.String", + "Name": "System.String", + "RedirectConfigurationText": "System.String", + "RewriteRuleSetText": "System.String", + "UrlPathMapText": "System.String", + "Type": "System.String", + "BackendHttpSettingsText": "System.String", + "BackendAddressPoolText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "HttpListenerText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RuleType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Basic", + "PathBasedRouting" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendHttpSettingsId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackendHttpSettings", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HttpListenerId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HttpListener", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequireServerNameIndication": "System.Boolean", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Type": "System.String", + "Etag": "System.String", + "HostName": "System.String", + "Protocol": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "FirewallPolicyText": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackendAddressPoolId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "BackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "UrlPathMapId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "UrlPathMap", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultRewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultRedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", + "Type": "System.String", + "ProvisioningState": "System.String", + "DefaultBackendAddressPoolText": "System.String", + "DefaultBackendHttpSettingsText": "System.String", + "DefaultRedirectConfigurationText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RewriteRuleSetId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RewriteRuleSet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RedirectConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RedirectConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "IncludePath": "System.Nullable`1[System.Boolean]", + "IncludeQueryString": "System.Nullable`1[System.Boolean]", + "RedirectType": "System.String", + "TargetUrl": "System.String", + "Type": "System.String", + "TargetListenerText": "System.String", + "RequestRoutingRulesText": "System.String", + "UrlPathMapsText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "RuleType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Basic", + "PathBasedRouting" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Priority", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -122246,14 +117195,11 @@ ] }, { - "Name": "ByPublicIpAddressRgNameByPublicIpAddressNameByVirtualNetwork", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "PublicIpAddressRgName", - "AliasList": [ - "PublicIpAddressResourceGroupName" - ], + "Name": "BackendHttpSettingsId", "Type": { "Namespace": "System", "Name": "System.String", @@ -122261,14 +117207,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PublicIpAddressName", + "Name": "HttpListenerId", "Type": { "Namespace": "System", "Name": "System.String", @@ -122276,66 +117222,29 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetwork", - "AliasList": [ - "VirtualNetworkObject" - ], + "Name": "BackendAddressPoolId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", - "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "UrlPathMapId", "Type": { "Namespace": "System", "Name": "System.String", @@ -122343,18 +117252,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], + "Name": "RewriteRuleSetId", "Type": { "Namespace": "System", "Name": "System.String", @@ -122362,180 +117267,73 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "RedirectConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Basic", - "Standard", - "Premium" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ScaleUnit", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableKerberos", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DisableCopyPaste", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableTunneling", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableIpConnect", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableShareableLink", + "Name": "RuleType", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Basic", + "PathBasedRouting" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableSessionRecording", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Boolean" + "System.Int32" ] }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -122572,85 +117370,192 @@ ] }, { - "Name": "ByPublicIpAddressRgNameByPublicIpAddressNameByVirtualNetworkRGNameByVirtualNetworkName", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "PublicIpAddressRgName", - "AliasList": [ - "PublicIpAddressResourceGroupName" - ], + "Name": "BackendHttpSettings", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PublicIpAddressName", + "Name": "HttpListener", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequireServerNameIndication": "System.Boolean", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Type": "System.String", + "Etag": "System.String", + "HostName": "System.String", + "Protocol": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "FirewallPolicyText": "System.String", + "Name": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkRgName", - "AliasList": [ - "VirtualNetworkResourceGroupName" - ], + "Name": "BackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkName", + "Name": "UrlPathMap", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultRewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultRedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", + "Type": "System.String", + "ProvisioningState": "System.String", + "DefaultBackendAddressPoolText": "System.String", + "DefaultBackendHttpSettingsText": "System.String", + "DefaultRedirectConfigurationText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "RewriteRuleSet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RedirectConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "IncludePath": "System.Nullable`1[System.Boolean]", + "IncludeQueryString": "System.Nullable`1[System.Boolean]", + "RedirectType": "System.String", + "TargetUrl": "System.String", + "Type": "System.String", + "TargetListenerText": "System.String", + "RequestRoutingRulesText": "System.String", + "UrlPathMapsText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -122658,10 +117563,6 @@ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -122676,7 +117577,7 @@ }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "RuleType", "Type": { "Namespace": "System", "Name": "System.String", @@ -122684,19 +117585,18 @@ }, "ValidateSet": [ "Basic", - "Standard", - "Premium" + "PathBasedRouting" ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ScaleUnit", + "Name": "Priority", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Int32]", @@ -122705,144 +117605,8 @@ "System.Int32" ] }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableKerberos", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DisableCopyPaste", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableTunneling", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableIpConnect", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableShareableLink", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableSessionRecording", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -122877,64 +117641,142 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayRewriteRule", + "Name": "New-AzApplicationGatewayRewriteRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "ByPublicIpAddressRgNameByPublicIpAddressNameByVirtualNetworkId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "PublicIpAddressRgName", - "AliasList": [ - "PublicIpAddressResourceGroupName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ActionSet": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", + "Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]", + "RuleSequence": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Name": "System.String", + "ActionSetText": "System.String", + "ConditionsText": "System.String" }, - { - "ParameterMetadata": { - "Name": "PublicIpAddressName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualNetworkId", - "AliasList": [ - "VirtualNetworkResourceId" + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ActionSet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", + "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", + "ResponseHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", + "RequestHeaderConfigurationsText": "System.String", + "ResponseHeaderConfigurationsText": "System.String", + "UrlConfigurationText": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RuleSequence", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Condition", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -122949,15 +117791,19 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], + "Name": "ActionSet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", + "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", + "ResponseHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", + "RequestHeaderConfigurationsText": "System.String", + "ResponseHeaderConfigurationsText": "System.String", + "UrlConfigurationText": "System.String" + } }, "ValidateNotNullOrEmpty": true }, @@ -122968,157 +117814,11 @@ }, { "ParameterMetadata": { - "Name": "Sku", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Basic", - "Standard", - "Premium" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ScaleUnit", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableKerberos", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DisableCopyPaste", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableTunneling", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableIpConnect", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableShareableLink", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableSessionRecording", + "Name": "RuleSequence", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -123129,11 +117829,12 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Condition", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition" }, "ValidateNotNullOrEmpty": false }, @@ -123174,21 +117875,55 @@ }, { "VerbName": "New", - "NounName": "AzBastionShareableLink", - "Name": "New-AzBastionShareableLink", - "ClassName": "Microsoft.Azure.Commands.Network.Bastion.NewAzBastionShareableLinkCommand", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewayRewriteRuleActionSet", + "Name": "New-AzApplicationGatewayRewriteRuleActionSet", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleActionSetCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByResourceGroupNameByName", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", + "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", + "ResponseHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", + "RequestHeaderConfigurationsText": "System.String", + "ResponseHeaderConfigurationsText": "System.String", + "UrlConfigurationText": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } ] }, "ParameterSets": [ @@ -123198,90 +117933,43 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], + "Name": "RequestHeaderConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration" + ] }, "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "ResponseHeaderConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration" + ] }, "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", + "Name": "UrlConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableShareableLink": "System.Nullable`1[System.Boolean]", - "EnableIpConnect": "System.Nullable`1[System.Boolean]", - "EnableTunneling": "System.Nullable`1[System.Boolean]", - "EnableSessionRecording": "System.Nullable`1[System.Boolean]", - "EnableKerberos": "System.Nullable`1[System.Boolean]", - "DisableCopyPaste": "System.Nullable`1[System.Boolean]", - "ScaleUnit": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Etag": "System.String", - "IpConfigurationsText": "System.String", - "SkuText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "DnsName": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" + "Reroute": "System.Boolean", + "ModifiedQueryString": "System.String", + "ModifiedPath": "System.String" } }, "ValidateNotNullOrEmpty": true }, - { - "Name": "TargetVmId", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -123305,73 +117993,62 @@ ], "ParameterSets": [ { - "Name": "ByResourceGroupNameByName", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], + "Name": "RequestHeaderConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration" + ] }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetVmId", + "Name": "ResponseHeaderConfiguration", "Type": { "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.String" + "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration" ] }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "UrlConfiguration", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Reroute": "System.Boolean", + "ModifiedQueryString": "System.String", + "ModifiedPath": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -123401,120 +118078,134 @@ "ValueFromPipelineByPropertyName": false } ] - }, - { - "Name": "ByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayRewriteRuleCondition", + "Name": "New-AzApplicationGatewayRewriteRuleCondition", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleConditionCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IgnoreCase": "System.Nullable`1[System.Boolean]", + "Negate": "System.Nullable`1[System.Boolean]", + "Variable": "System.String", + "Pattern": "System.String" }, - { - "ParameterMetadata": { - "Name": "TargetVmId", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" ] + } + ], + "Parameters": [ + { + "Name": "Variable", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByInputObject", + "Name": "Pattern", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IgnoreCase", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Negate", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Variable", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableShareableLink": "System.Nullable`1[System.Boolean]", - "EnableIpConnect": "System.Nullable`1[System.Boolean]", - "EnableTunneling": "System.Nullable`1[System.Boolean]", - "EnableSessionRecording": "System.Nullable`1[System.Boolean]", - "EnableKerberos": "System.Nullable`1[System.Boolean]", - "DisableCopyPaste": "System.Nullable`1[System.Boolean]", - "ScaleUnit": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Etag": "System.String", - "IpConfigurationsText": "System.String", - "SkuText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "DnsName": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -123525,25 +118216,22 @@ }, { "ParameterMetadata": { - "Name": "TargetVmId", + "Name": "Pattern", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "IgnoreCase", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -123553,61 +118241,12 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "TargetVmId", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Negate", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -123617,7 +118256,7 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -123652,10 +118291,10 @@ }, { "VerbName": "New", - "NounName": "AzContainerNicConfig", - "Name": "New-AzContainerNicConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkProfileContainerNetworkInterfaceConfigCommand", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewayRewriteRuleHeaderConfiguration", + "Name": "New-AzApplicationGatewayRewriteRuleHeaderConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleHeaderConfigurationCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -123663,17 +118302,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", - "ProvisioningState": "System.String", - "ContainerNetworkInterfacesText": "System.String", - "IpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "HeaderValueMatcher": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher", + "HeaderValue": "System.String", + "HeaderName": "System.String" }, "Methods": [ { @@ -123712,7 +118346,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "HeaderName", "Type": { "Namespace": "System", "Name": "System.String", @@ -123721,15 +118355,25 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "IpConfiguration", - "AliasList": [ - "IpConfig" - ], + "Name": "HeaderValue", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HeaderValueMatcher", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IgnoreCase": "System.Nullable`1[System.Boolean]", + "Negate": "System.Nullable`1[System.Boolean]", + "Pattern": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -123760,7 +118404,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "HeaderName", "Type": { "Namespace": "System", "Name": "System.String", @@ -123768,6 +118412,21 @@ }, "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HeaderValue", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -123775,22 +118434,23 @@ }, { "ParameterMetadata": { - "Name": "IpConfiguration", - "AliasList": [ - "IpConfig" - ], + "Name": "HeaderValueMatcher", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "IgnoreCase": "System.Nullable`1[System.Boolean]", + "Negate": "System.Nullable`1[System.Boolean]", + "Pattern": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -123824,10 +118484,10 @@ }, { "VerbName": "New", - "NounName": "AzContainerNicConfigIpConfig", - "Name": "New-AzContainerNicConfigIpConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkProfileContainerNetworkInterfaceConfigIpConfigCommand", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewayRewriteRuleSet", + "Name": "New-AzApplicationGatewayRewriteRuleSet", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleSetCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -123835,19 +118495,22 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", - "ContainerNetworkInterfacesText": "System.String", - "IpConfigurationsText": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeRewriteRules", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -123893,53 +118556,14 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SubnetId", + "Name": "RewriteRule", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule" + ] }, "ValidateNotNullOrEmpty": true }, @@ -123985,46 +118609,16 @@ }, { "ParameterMetadata": { - "Name": "Subnet", + "Name": "RewriteRule", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule" + ] }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -124058,19 +118652,126 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayRewriteRuleUrlConfiguration", + "Name": "New-AzApplicationGatewayRewriteRuleUrlConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRewriteRuleUrlConfigurationCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Reroute": "System.Boolean", + "ModifiedQueryString": "System.String", + "ModifiedPath": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ModifiedPath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "SetByResourceId", + "Name": "ModifiedQueryString", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Reroute", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "SubnetId", + "Name": "ModifiedPath", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -124079,63 +118780,30 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ModifiedQueryString", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Subnet", + "Name": "Reroute", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -124172,45 +118840,32 @@ }, { "VerbName": "New", - "NounName": "AzCustomIpPrefix", - "Name": "New-AzCustomIpPrefix", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureCustomIpPrefixCommand", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewayRoutingRule", + "Name": "New-AzApplicationGatewayRoutingRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayRoutingRuleCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", - "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", + "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BackendSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Listener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Priority": "System.Nullable`1[System.Int32]", + "RuleType": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ChildCustomIpPrefixesText": "System.String", - "CustomIpPrefixParentText": "System.String", - "Cidr": "System.String", - "PrefixType": "System.String", + "BackendAddressPoolText": "System.String", + "BackendSettingsText": "System.String", + "ListenerText": "System.String", + "Name": "System.String", "Etag": "System.String", - "AuthorizationMessage": "System.String", - "SignedMessage": "System.String", - "ProvisioningState": "System.String", - "CommissionedState": "System.String", - "Asn": "System.String", - "Geo": "System.String", - "PublicIpPrefixesText": "System.String", "Id": "System.String" }, "Methods": [ @@ -124251,9 +118906,6 @@ "Parameters": [ { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -124262,25 +118914,34 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "RuleType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Basic", + "PathBasedRouting" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, + "ValidateNotNullOrEmpty": false }, { - "Name": "Cidr", + "Name": "BackendSettingsId", "Type": { "Namespace": "System", "Name": "System.String", @@ -124289,133 +118950,92 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Asn", + "Name": "BackendSettings", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "Timeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ProbeText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Geo", + "Name": "ListenerId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "AFRI", - "APAC", - "AQ", - "EURO", - "LATAM", - "ME", - "NAM", - "OCEANIA" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "SignedMessage", + "Name": "Listener", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "Protocol": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AuthorizationMessage", + "Name": "BackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ExpressRouteAdvertise", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "CustomIpPrefixParent", + "Name": "BackendAddressPool", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", - "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ChildCustomIpPrefixesText": "System.String", - "CustomIpPrefixParentText": "System.String", - "Cidr": "System.String", - "PrefixType": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", "Etag": "System.String", - "AuthorizationMessage": "System.String", - "SignedMessage": "System.String", - "ProvisioningState": "System.String", - "CommissionedState": "System.String", - "Asn": "System.String", - "Geo": "System.String", - "PublicIpPrefixesText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IsParent", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -124445,9 +119065,6 @@ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -124458,41 +119075,81 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "RuleType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Basic", + "PathBasedRouting" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Cidr", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "BackendSettingsId", "Type": { "Namespace": "System", "Name": "System.String", @@ -124500,130 +119157,112 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Asn", + "Name": "ListenerId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Geo", + "Name": "BackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "AFRI", - "APAC", - "AQ", - "EURO", - "LATAM", - "ME", - "NAM", - "OCEANIA" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SignedMessage", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AuthorizationMessage", + "Name": "RuleType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Basic", + "PathBasedRouting" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ExpressRouteAdvertise", + "Name": "Priority", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomIpPrefixParent", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", - "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ChildCustomIpPrefixesText": "System.String", - "CustomIpPrefixParentText": "System.String", - "Cidr": "System.String", - "PrefixType": "System.String", - "Etag": "System.String", - "AuthorizationMessage": "System.String", - "SignedMessage": "System.String", - "ProvisioningState": "System.String", - "CommissionedState": "System.String", - "Asn": "System.String", - "Geo": "System.String", - "PublicIpPrefixesText": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -124631,17 +119270,37 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResource", + "Parameters": [ { "ParameterMetadata": { - "Name": "IsParent", + "Name": "BackendSettings", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "Timeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ProbeText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -124650,46 +119309,112 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "Listener", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "Protocol": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "BackendAddressPool", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Basic", + "PathBasedRouting" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -124726,10 +119451,10 @@ }, { "VerbName": "New", - "NounName": "AzDdosProtectionPlan", - "Name": "New-AzDdosProtectionPlan", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmDdosProtectionPlan", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewaySku", + "Name": "New-AzApplicationGatewaySku", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySkuCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -124737,23 +119462,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PublicIPAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualNetworksText": "System.String", - "PublicIPAddressesText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "Capacity": "System.Nullable`1[System.Int32]", "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Tier": "System.String", + "Family": "System.String" }, "Methods": [ { @@ -124792,53 +119507,52 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Standard_Small", + "Standard_Medium", + "Standard_Large", + "WAF_Medium", + "WAF_Large", + "Standard_v2", + "WAF_v2", + "Basic" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "Tier", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Standard", + "WAF", + "Standard_v2", + "WAF_v2", + "Basic" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "Capacity", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": true }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -124866,77 +119580,64 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Standard_Small", + "Standard_Medium", + "Standard_Large", + "WAF_Medium", + "WAF_Large", + "Standard_v2", + "WAF_v2", + "Basic" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "Tier", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Standard", + "WAF", + "Standard_v2", + "WAF_v2", + "Basic" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Capacity", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -124974,23 +119675,26 @@ }, { "VerbName": "New", - "NounName": "AzDelegation", - "Name": "New-AzDelegation", - "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand", + "NounName": "AzApplicationGatewaySslCertificate", + "Name": "New-AzApplicationGatewaySslCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslCertificateCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Actions": "System.Collections.Generic.List`1[System.String]", + "Password": "System.Security.SecureString", + "Data": "System.String", + "PublicCertData": "System.String", + "KeyVaultSecretId": "System.String", "ProvisioningState": "System.String", - "ServiceName": "System.String", + "Type": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -125041,7 +119745,25 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ServiceName", + "Name": "CertificateFile", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Password", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "KeyVaultSecretId", "Type": { "Namespace": "System", "Name": "System.String", @@ -125087,11 +119809,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ServiceName", + "Name": "CertificateFile", "Type": { "Namespace": "System", "Name": "System.String", @@ -125099,10 +119821,40 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Password", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "KeyVaultSecretId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -125136,52 +119888,27 @@ }, { "VerbName": "New", - "NounName": "AzExpressRouteCircuit", - "Name": "New-AzExpressRouteCircuit", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand", + "NounName": "AzApplicationGatewaySslPolicy", + "Name": "New-AzApplicationGatewaySslPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslPolicyCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ServiceProvider", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" + "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", + "CipherSuites": "System.Collections.Generic.List`1[System.String]", + "PolicyType": "System.String", + "PolicyName": "System.String", + "MinProtocolVersion": "System.String", + "DisabledSslProtocolsText": "System.String", + "CipherSuitesText": "System.String" }, "Methods": [ { @@ -125220,74 +119947,37 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SkuTier", + "Name": "DisabledSslProtocols", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateSet": [ - "Standard", - "Premium", - "Basic", - "Local" + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "SkuFamily", + "Name": "PolicyType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "MeteredData", - "UnlimitedData" + "Predefined", + "Custom", + "CustomV2" ], "ValidateNotNullOrEmpty": false }, { - "Name": "ServiceProviderName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PeeringLocation", + "Name": "PolicyName", "Type": { "Namespace": "System", "Name": "System.String", @@ -125296,124 +119986,28 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "BandwidthInMbps", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ExpressRoutePort", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BandwidthInGbps", + "Name": "CipherSuite", "Type": { "Namespace": "System", - "Name": "System.Double", - "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AuthorizationKey", + "Name": "MinProtocolVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Peering", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Authorization", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AllowClassicOperations", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, + "ValidateSet": [ + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" + ], "ValidateNotNullOrEmpty": false }, { @@ -125443,166 +120037,317 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "DisabledSslProtocols", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, + "ValidateSet": [ + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" + ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PolicyType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Predefined", + "Custom", + "CustomV2" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "PolicyName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SkuTier", + "Name": "CipherSuite", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic", - "Local" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SkuFamily", + "Name": "MinProtocolVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "MeteredData", - "UnlimitedData" + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Peering", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewaySslProfile", + "Name": "New-AzApplicationGatewaySslProfile", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewaySslProfileCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "Authorization", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SslPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", + "CipherSuites": "System.Collections.Generic.List`1[System.String]", + "PolicyType": "System.String", + "PolicyName": "System.String", + "MinProtocolVersion": "System.String", + "DisabledSslProtocolsText": "System.String", + "CipherSuitesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ClientAuthConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", + "VerifyClientRevocation": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TrustedClientCertificates", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "AllowClassicOperations", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "SslPolicy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", + "CipherSuites": "System.Collections.Generic.List`1[System.String]", + "PolicyType": "System.String", + "PolicyName": "System.String", + "MinProtocolVersion": "System.String", + "DisabledSslProtocolsText": "System.String", + "CipherSuitesText": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "ClientAuthConfiguration", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", + "VerifyClientRevocation": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -125611,13 +120356,14 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "TrustedClientCertificates", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -125651,545 +120397,165 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayTrustedClientCertificate", + "Name": "New-AzApplicationGatewayTrustedClientCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayTrustedClientCertificateCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Data": "System.String", + "ValidatedCertData": "System.String", + "ClientCertIssuerDN": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ServiceProvider", + "Name": "CertificateFile", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ServiceProviderName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeeringLocation", + "Name": "CertificateFile", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BandwidthInMbps", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SkuTier", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic", - "Local" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SkuFamily", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "MeteredData", - "UnlimitedData" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Peering", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Authorization", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AllowClassicOperations", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ExpressRoutePort", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ExpressRoutePort", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BandwidthInGbps", - "Type": { - "Namespace": "System", - "Name": "System.Double", - "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AuthorizationKey", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SkuTier", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic", - "Local" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SkuFamily", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "MeteredData", - "UnlimitedData" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Peering", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Authorization", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AllowClassicOperations", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -126200,10 +120566,10 @@ }, { "VerbName": "New", - "NounName": "AzExpressRouteCircuitAuthorization", - "Name": "New-AzExpressRouteCircuitAuthorization", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand", - "SupportsShouldProcess": false, + "NounName": "AzApplicationGatewayTrustedRootCertificate", + "Name": "New-AzApplicationGatewayTrustedRootCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayTrustedRootCertificateCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -126211,12 +120577,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AuthorizationKey": "System.String", - "AuthorizationUseStatus": "System.String", + "Data": "System.String", "ProvisioningState": "System.String", + "Type": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -126266,6 +120632,15 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "CertificateFile", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -126306,6 +120681,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "CertificateFile", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -126338,46 +120728,34 @@ }, { "VerbName": "New", - "NounName": "AzExpressRouteCircuitPeeringConfig", - "Name": "New-AzExpressRouteCircuitPeeringConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand", + "NounName": "AzApplicationGatewayUrlPathMapConfig", + "Name": "New-AzApplicationGatewayUrlPathMapConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayUrlPathMapConfigCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "BackendSetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", - "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", - "RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]", - "PeeredConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]", - "AzureASN": "System.Int32", - "VlanId": "System.Int32", - "PeeringType": "System.String", + "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultRewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultRedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", + "Type": "System.String", + "ProvisioningState": "System.String", + "DefaultBackendAddressPoolText": "System.String", + "DefaultBackendHttpSettingsText": "System.String", + "DefaultRedirectConfigurationText": "System.String", + "PathRulesText": "System.String", "Name": "System.String", - "ConnectionsText": "System.String", - "Ipv6PeeringConfigText": "System.String", - "RouteFilterText": "System.String", - "PeerASNText": "System.String", - "MicrosoftPeeringConfigText": "System.String", - "GatewayManagerEtag": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "SharedKey": "System.String", - "SecondaryAzurePort": "System.String", - "PrimaryAzurePort": "System.String", - "SecondaryPeerAddressPrefix": "System.String", - "PrimaryPeerAddressPrefix": "System.String", - "State": "System.String", - "LastModifiedBy": "System.String", - "Id": "System.String", - "PeerASN": "System.UInt32" + "Id": "System.String" }, "Methods": [ { @@ -126425,39 +120803,17 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PeeringType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "AzurePrivatePeering", - "AzurePublicPeering", - "MicrosoftPeering" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PeerASN", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PrimaryPeerAddressPrefix", + "Name": "PathRules", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, "ValidateNotNullOrEmpty": true }, { - "Name": "SecondaryPeerAddressPrefix", + "Name": "DefaultBackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String", @@ -126466,16 +120822,27 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VlanId", + "Name": "DefaultBackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "SharedKey", + "Name": "DefaultBackendHttpSettingsId", "Type": { "Namespace": "System", "Name": "System.String", @@ -126484,35 +120851,65 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "MicrosoftConfigAdvertisedPublicPrefixes", + "Name": "DefaultBackendHttpSettings", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "MicrosoftConfigCustomerAsn", + "Name": "DefaultRewriteRuleSet", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "MicrosoftConfigRoutingRegistryName", + "Name": "DefaultRewriteRuleSetId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "RouteFilterId", + "Name": "DefaultRedirectConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -126521,23 +120918,25 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RouteFilter", + "Name": "DefaultRedirectConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RulesText": "System.String", - "PeeringsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "IncludePath": "System.Nullable`1[System.Boolean]", + "IncludeQueryString": "System.Nullable`1[System.Boolean]", + "RedirectType": "System.String", + "TargetUrl": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "TargetListenerText": "System.String", + "RequestRoutingRulesText": "System.String", + "UrlPathMapsText": "System.String", + "PathRulesText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -126545,28 +120944,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "PeerAddressType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LegacyMode", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -126609,17 +120986,59 @@ }, { "ParameterMetadata": { - "Name": "PeeringType", + "Name": "PathRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BackendSetByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultBackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "AzurePrivatePeering", - "AzurePublicPeering", - "MicrosoftPeering" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -126629,11 +121048,11 @@ }, { "ParameterMetadata": { - "Name": "PeerASN", + "Name": "DefaultBackendHttpSettingsId", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -126644,22 +121063,22 @@ }, { "ParameterMetadata": { - "Name": "PrimaryPeerAddressPrefix", + "Name": "DefaultRewriteRuleSetId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SecondaryPeerAddressPrefix", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -126674,11 +121093,12 @@ }, { "ParameterMetadata": { - "Name": "VlanId", + "Name": "PathRules", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, "ValidateNotNullOrEmpty": true }, @@ -126689,59 +121109,116 @@ }, { "ParameterMetadata": { - "Name": "SharedKey", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "BackendSetByResource", + "Parameters": [ { "ParameterMetadata": { - "Name": "MicrosoftConfigAdvertisedPublicPrefixes", + "Name": "DefaultBackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MicrosoftConfigCustomerAsn", + "Name": "DefaultBackendHttpSettings", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MicrosoftConfigRoutingRegistryName", + "Name": "DefaultRewriteRuleSet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -126750,37 +121227,34 @@ }, { "ParameterMetadata": { - "Name": "PeerAddressType", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LegacyMode", + "Name": "PathRules", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -126811,30 +121285,57 @@ ] }, { - "Name": "MicrosoftPeeringConfigRoutFilterId", + "Name": "RedirectSetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "RouteFilterId", + "Name": "DefaultRewriteRuleSet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DefaultRedirectConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "IncludePath": "System.Nullable`1[System.Boolean]", + "IncludeQueryString": "System.Nullable`1[System.Boolean]", + "RedirectType": "System.String", + "TargetUrl": "System.String", + "Type": "System.String", + "TargetListenerText": "System.String", + "RequestRoutingRulesText": "System.String", + "UrlPathMapsText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, @@ -126845,17 +121346,12 @@ }, { "ParameterMetadata": { - "Name": "PeeringType", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "AzurePrivatePeering", - "AzurePublicPeering", - "MicrosoftPeering" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -126865,11 +121361,12 @@ }, { "ParameterMetadata": { - "Name": "PeerASN", + "Name": "PathRules", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, "ValidateNotNullOrEmpty": true }, @@ -126880,41 +121377,57 @@ }, { "ParameterMetadata": { - "Name": "PrimaryPeerAddressPrefix", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "RedirectSetByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "SecondaryPeerAddressPrefix", + "Name": "DefaultRewriteRuleSetId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VlanId", + "Name": "DefaultRedirectConfigurationId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -126925,7 +121438,7 @@ }, { "ParameterMetadata": { - "Name": "SharedKey", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -126933,91 +121446,27 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MicrosoftConfigAdvertisedPublicPrefixes", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MicrosoftConfigCustomerAsn", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MicrosoftConfigRoutingRegistryName", + "Name": "PathRules", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PeerAddressType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "LegacyMode", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -127045,49 +121494,218 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationGatewayWebApplicationFirewallConfiguration", + "Name": "New-AzApplicationGatewayWebApplicationFirewallConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureApplicationGatewayWebApplicationFirewallConfigurationCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Enabled": "System.Boolean", + "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", + "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", + "RequestBodyCheck": "System.Nullable`1[System.Boolean]", + "MaxRequestBodySizeInKb": "System.Nullable`1[System.Int32]", + "FileUploadLimitInMb": "System.Nullable`1[System.Int32]", + "FirewallMode": "System.String", + "RuleSetType": "System.String", + "RuleSetVersion": "System.String", + "DisabledRuleGroupsText": "System.String", + "ExclusionsText": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Enabled", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "MicrosoftPeeringConfigRoutFilter", + "Name": "FirewallMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Detection", + "Prevention" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RuleSetType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "OWASP" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RuleSetVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DisabledRuleGroup", + "AliasList": [ + "DisabledRuleGroups" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RequestBodyCheck", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "MaxRequestBodySizeInKb", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "FileUploadLimitInMb", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Exclusion", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "RouteFilter", + "Name": "Enabled", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RulesText": "System.String", - "PeeringsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "FirewallMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Detection", + "Prevention" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -127097,72 +121715,74 @@ }, { "ParameterMetadata": { - "Name": "PeeringType", + "Name": "RuleSetType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "AzurePrivatePeering", - "AzurePublicPeering", - "MicrosoftPeering" + "OWASP" ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeerASN", + "Name": "RuleSetVersion", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrimaryPeerAddressPrefix", + "Name": "DisabledRuleGroup", + "AliasList": [ + "DisabledRuleGroups" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SecondaryPeerAddressPrefix", + "Name": "RequestBodyCheck", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VlanId", + "Name": "MaxRequestBodySizeInKb", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -127170,18 +121790,18 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SharedKey", + "Name": "FileUploadLimitInMb", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -127192,12 +121812,12 @@ }, { "ParameterMetadata": { - "Name": "MicrosoftConfigAdvertisedPublicPrefixes", + "Name": "Exclusion", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion" }, "ValidateNotNullOrEmpty": true }, @@ -127208,22 +121828,200 @@ }, { "ParameterMetadata": { - "Name": "MicrosoftConfigCustomerAsn", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzApplicationSecurityGroup", + "Name": "New-AzApplicationSecurityGroup", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmApplicationSecurityGroup", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "MicrosoftConfigRoutingRegistryName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -127231,23 +122029,34 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerAddressType", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -127257,18 +122066,33 @@ }, { "ParameterMetadata": { - "Name": "LegacyMode", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -127302,33 +122126,62 @@ }, { "VerbName": "New", - "NounName": "AzExpressRouteConnection", - "Name": "New-AzExpressRouteConnection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteConnectionCommand", + "NounName": "AzBastion", + "Name": "New-AzBastion", + "ClassName": "Microsoft.Azure.Commands.Network.Bastion.NewAzBastionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByExpressRouteGatewayName", + "DefaultParameterSetName": "ByPublicIpAddressByVirtualNetwork", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "AuthorizationKey": "System.String", + "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", + "Tag": "System.Collections.Hashtable", + "EnableShareableLink": "System.Nullable`1[System.Boolean]", + "EnableIpConnect": "System.Nullable`1[System.Boolean]", + "EnableTunneling": "System.Nullable`1[System.Boolean]", + "EnableSessionRecording": "System.Nullable`1[System.Boolean]", + "EnableKerberos": "System.Nullable`1[System.Boolean]", + "DisableCopyPaste": "System.Nullable`1[System.Boolean]", + "ScaleUnit": "System.Nullable`1[System.Int32]", "ProvisioningState": "System.String", - "ExpressRouteCircuitPeeringText": "System.String", - "RoutingConfigurationText": "System.String", - "Name": "System.String", "Etag": "System.String", - "Id": "System.String", - "RoutingWeight": "System.UInt32" + "IpConfigurationsText": "System.String", + "SkuText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "DnsName": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" }, "Methods": [ + { + "Name": "Allocate", + "Parameters": [ + { + "Name": "virtualNetwork", + "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" + }, + { + "Name": "publicIpAddress", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "Deallocate", + "ReturnType": "System.Void" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -127355,6 +122208,27 @@ "Constructors": [ { "Name": "" + }, + { + "Name": "", + "Parameters": [ + { + "Name": "name", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "rgName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "location", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "sku", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] } ] }, @@ -127374,7 +122248,11 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ExpressRouteGatewayName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -127383,40 +122261,64 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ExpressRouteGatewayObject", + "Name": "PublicIpAddress", "AliasList": [ - "ExpressRouteGateway" + "PublicIpAddressObject" ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", - "AllowNonVirtualWanTraffic": "System.Boolean", - "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Name": "System.String", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", "TagsTable": "System.String", "Type": "System.String", + "Name": "System.String", "ResourceGuid": "System.String", + "Location": "System.String", "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", "Etag": "System.String", - "ExpressRouteConnectionsText": "System.String", - "AutoScaleConfigurationText": "System.String", - "VirtualHubText": "System.String", + "IpConfigurationText": "System.String", "ProvisioningState": "System.String", - "Location": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", "Id": "System.String" } }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PublicIpAddressId", + "AliasList": [ + "PublicIpAddressResourceId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, { - "Name": "ParentResourceId", + "Name": "PublicIpAddressRgName", "AliasList": [ - "ExpressRouteGatewayId" + "PublicIpAddressResourceGroupName" ], "Type": { "Namespace": "System", @@ -127426,10 +122328,65 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "PublicIpAddressName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VirtualNetwork", "AliasList": [ - "ResourceName", - "ExpressRouteConnectionName" + "VirtualNetworkObject" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualNetworkId", + "AliasList": [ + "VirtualNetworkResourceId" ], "Type": { "Namespace": "System", @@ -127439,7 +122396,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ExpressRouteCircuitPeeringId", + "Name": "VirtualNetworkRgName", + "AliasList": [ + "VirtualNetworkResourceGroupName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -127448,7 +122408,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "AuthorizationKey", + "Name": "VirtualNetworkName", "Type": { "Namespace": "System", "Name": "System.String", @@ -127457,38 +122417,100 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RoutingWeight", + "Name": "Sku", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Basic", + "Standard", + "Premium" + ], "ValidateNotNullOrEmpty": false }, { - "Name": "EnableInternetSecurity", + "Name": "ScaleUnit", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "RoutingConfiguration", + "Name": "EnableKerberos", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DisableCopyPaste", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableTunneling", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableIpConnect", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableShareableLink", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableSessionRecording", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, @@ -127501,6 +122523,15 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -127524,7 +122555,7 @@ ], "ParameterSets": [ { - "Name": "ByExpressRouteGatewayName", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { @@ -127541,27 +122572,12 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "ExpressRouteGatewayName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ "ResourceName", - "ExpressRouteConnectionName" + "BastionName" ], "Type": { "Namespace": "System", @@ -127577,238 +122593,153 @@ }, { "ParameterMetadata": { - "Name": "ExpressRouteCircuitPeeringId", + "Name": "Sku", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Basic", + "Standard", + "Premium" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "ScaleUnit", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingWeight", + "Name": "EnableKerberos", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "DisableCopyPaste", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "EnableTunneling", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableIpConnect", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "EnableShareableLink", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByExpressRouteGatewayObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ExpressRouteGatewayObject", - "AliasList": [ - "ExpressRouteGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", - "AllowNonVirtualWanTraffic": "System.Boolean", - "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "ResourceGroupName": "System.String", - "Etag": "System.String", - "ExpressRouteConnectionsText": "System.String", - "AutoScaleConfigurationText": "System.String", - "VirtualHubText": "System.String", - "ProvisioningState": "System.String", - "Location": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ExpressRouteConnectionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExpressRouteCircuitPeeringId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AuthorizationKey", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingWeight", + "Name": "EnableSessionRecording", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -127823,35 +122754,11 @@ }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -127889,39 +122796,104 @@ ] }, { - "Name": "ByExpressRouteGatewayResourceId", + "Name": "ByPublicIpAddressByVirtualNetwork", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentResourceId", + "Name": "PublicIpAddress", "AliasList": [ - "ExpressRouteGatewayId" + "PublicIpAddressObject" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "VirtualNetwork", "AliasList": [ - "ResourceName", - "ExpressRouteConnectionName" + "VirtualNetworkObject" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -127930,7 +122902,7 @@ }, { "ParameterMetadata": { - "Name": "ExpressRouteCircuitPeeringId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -127945,7 +122917,11 @@ }, { "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -127953,178 +122929,160 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingWeight", + "Name": "Sku", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Basic", + "Standard", + "Premium" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "ScaleUnit", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "EnableKerberos", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DisableCopyPaste", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "EnableTunneling", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ExpressRouteConnectionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ExpressRouteCircuitPeeringId", + "Name": "EnableIpConnect", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "EnableShareableLink", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingWeight", + "Name": "EnableSessionRecording", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -128139,35 +123097,11 @@ }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -128203,235 +123137,53 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzExpressRouteGateway", - "Name": "New-AzExpressRouteGateway", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", - "AllowNonVirtualWanTraffic": "System.Boolean", - "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "ResourceGroupName": "System.String", - "Etag": "System.String", - "ExpressRouteConnectionsText": "System.String", - "AutoScaleConfigurationText": "System.String", - "VirtualHubText": "System.String", - "ProvisioningState": "System.String", - "Location": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ExpressRouteGatewayName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "MinScaleUnits", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaxScaleUnits", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHub", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByPublicIpAddressByVirtualNetworkRGNameByVirtualNetworkName", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PublicIpAddress", + "AliasList": [ + "PublicIpAddressObject" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -128440,10 +123192,9 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "VirtualNetworkRgName", "AliasList": [ - "ResourceName", - "ExpressRouteGatewayName" + "VirtualNetworkResourceGroupName" ], "Type": { "Namespace": "System", @@ -128459,15 +123210,13 @@ }, { "ParameterMetadata": { - "Name": "MinScaleUnits", + "Name": "VirtualNetworkName", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -128476,211 +123225,182 @@ }, { "ParameterMetadata": { - "Name": "MaxScaleUnits", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Sku", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Basic", + "Standard", + "Premium" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ScaleUnit", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualHubObject", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "VirtualHub", + "Name": "EnableKerberos", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DisableCopyPaste", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ExpressRouteGatewayName" - ], + "Name": "EnableTunneling", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MinScaleUnits", + "Name": "EnableIpConnect", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MaxScaleUnits", + "Name": "EnableShareableLink", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "EnableSessionRecording", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -128698,6 +123418,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -128727,22 +123462,74 @@ ] }, { - "Name": "ByVirtualHubResourceId", + "Name": "ByPublicIpAddressByVirtualNetworkId", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "PublicIpAddress", + "AliasList": [ + "PublicIpAddressObject" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualNetworkId", + "AliasList": [ + "VirtualNetworkResourceId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -128764,7 +123551,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "ExpressRouteGatewayName" + "BastionName" ], "Type": { "Namespace": "System", @@ -128780,175 +123567,158 @@ }, { "ParameterMetadata": { - "Name": "MinScaleUnits", + "Name": "Sku", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, + "ValidateSet": [ + "Basic", + "Standard", + "Premium" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MaxScaleUnits", + "Name": "ScaleUnit", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "EnableKerberos", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DisableCopyPaste", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualHubName", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualHubName", + "Name": "EnableTunneling", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "EnableIpConnect", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ExpressRouteGatewayName" - ], + "Name": "EnableShareableLink", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MinScaleUnits", + "Name": "EnableSessionRecording", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MaxScaleUnits", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -128971,21 +123741,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -129013,241 +123768,16 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzExpressRoutePort", - "Name": "New-AzExpressRoutePort", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ResourceNameParameterSet", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PeeringLocation", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BandwidthInGbps", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Encapsulation", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Link", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Identity", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "BillingType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ResourceIdParameterSet", + "Name": "ByPublicIpAddressIdByVirtualNetwork", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "PublicIpAddressId", + "AliasList": [ + "PublicIpAddressResourceId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -129258,164 +123788,270 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeeringLocation", + "Name": "VirtualNetwork", + "AliasList": [ + "VirtualNetworkObject" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BandwidthInGbps", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Encapsulation", + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Sku", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Basic", + "Standard", + "Premium" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "ScaleUnit", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Link", + "Name": "EnableKerberos", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "DisableCopyPaste", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableTunneling", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Identity", + "Name": "EnableIpConnect", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BillingType", + "Name": "EnableShareableLink", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSessionRecording", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -129446,11 +124082,14 @@ ] }, { - "Name": "ResourceNameParameterSet", + "Name": "ByPublicIpAddressIdByVirtualNetworkRGNameByVirtualNetworkName", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PublicIpAddressId", + "AliasList": [ + "PublicIpAddressResourceId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -129461,13 +124100,13 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "VirtualNetworkRgName", "AliasList": [ - "ResourceName" + "VirtualNetworkResourceGroupName" ], "Type": { "Namespace": "System", @@ -129479,164 +124118,232 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeeringLocation", + "Name": "VirtualNetworkName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BandwidthInGbps", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Encapsulation", + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Sku", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Basic", + "Standard", + "Premium" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "ScaleUnit", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Link", + "Name": "EnableKerberos", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "DisableCopyPaste", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableTunneling", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Identity", + "Name": "EnableIpConnect", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BillingType", + "Name": "EnableShareableLink", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSessionRecording", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -129667,56 +124374,66 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "ByPublicIpAddressIdByVirtualNetworkId", "Parameters": [ { "ParameterMetadata": { - "Name": "PeeringLocation", + "Name": "PublicIpAddressId", + "AliasList": [ + "PublicIpAddressResourceId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BandwidthInGbps", + "Name": "VirtualNetworkId", + "AliasList": [ + "VirtualNetworkResourceId" + ], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Encapsulation", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -129727,104 +124444,183 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Sku", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Basic", + "Standard", + "Premium" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Link", + "Name": "ScaleUnit", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "EnableKerberos", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DisableCopyPaste", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Identity", + "Name": "EnableTunneling", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BillingType", + "Name": "EnableIpConnect", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableShareableLink", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSessionRecording", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -129853,108 +124649,117 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzExpressRoutePortIdentity", - "Name": "New-AzExpressRoutePortIdentity", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + "Name": "ByPublicIpAddressRgNameByPublicIpAddressNameByVirtualNetwork", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PublicIpAddressRgName", + "AliasList": [ + "PublicIpAddressResourceGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PublicIpAddressName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualNetwork", + "AliasList": [ + "VirtualNetworkObject" ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", "AliasList": [ - "UserAssignedIdentity" + "ResourceName", + "BastionName" ], "Type": { "Namespace": "System", @@ -129966,7 +124771,183 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Basic", + "Standard", + "Premium" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ScaleUnit", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableKerberos", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisableCopyPaste", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableTunneling", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableIpConnect", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableShareableLink", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSessionRecording", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -129995,163 +124976,64 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzExpressRoutePortLOA", - "Name": "New-AzExpressRoutePortLOA", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ResourceNameParameterSet", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "PortName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ExpressRoutePort", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Id", - "AliasList": [ - "ResourceId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "CustomerName", - "AliasList": [ - "Name" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Destination", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ResourceNameParameterSet", + "Name": "ByPublicIpAddressRgNameByPublicIpAddressNameByVirtualNetworkRGNameByVirtualNetworkName", "Parameters": [ { "ParameterMetadata": { - "Name": "PortName", + "Name": "PublicIpAddressRgName", + "AliasList": [ + "PublicIpAddressResourceGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PublicIpAddressName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualNetworkRgName", + "AliasList": [ + "VirtualNetworkResourceGroupName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualNetworkName", "Type": { "Namespace": "System", "Name": "System.String", @@ -130181,9 +125063,10 @@ }, { "ParameterMetadata": { - "Name": "CustomerName", + "Name": "Name", "AliasList": [ - "Name" + "ResourceName", + "BastionName" ], "Type": { "Namespace": "System", @@ -130199,167 +125082,148 @@ }, { "ParameterMetadata": { - "Name": "Destination", + "Name": "Sku", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Basic", + "Standard", + "Premium" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "ScaleUnit", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableKerberos", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DisableCopyPaste", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ResourceObjectParameterSet", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ExpressRoutePort", + "Name": "EnableTunneling", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomerName", - "AliasList": [ - "Name" - ], + "Name": "EnableIpConnect", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Destination", + "Name": "EnableShareableLink", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "EnableSessionRecording", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -130377,6 +125241,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -130406,13 +125285,13 @@ ] }, { - "Name": "ResourceIdParameterSet", + "Name": "ByPublicIpAddressRgNameByPublicIpAddressNameByVirtualNetworkId", "Parameters": [ { "ParameterMetadata": { - "Name": "Id", + "Name": "PublicIpAddressRgName", "AliasList": [ - "ResourceId" + "PublicIpAddressResourceGroupName" ], "Type": { "Namespace": "System", @@ -130424,13 +125303,28 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomerName", + "Name": "PublicIpAddressName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualNetworkId", "AliasList": [ - "Name" + "VirtualNetworkResourceId" ], "Type": { "Namespace": "System", @@ -130446,126 +125340,182 @@ }, { "ParameterMetadata": { - "Name": "Destination", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Sku", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Basic", + "Standard", + "Premium" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "ScaleUnit", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableKerberos", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DisableCopyPaste", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "CustomerName", - "AliasList": [ - "Name" - ], + "Name": "EnableTunneling", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Destination", + "Name": "EnableIpConnect", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "EnableShareableLink", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSessionRecording", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -130583,6 +125533,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -130615,588 +125580,105 @@ }, { "VerbName": "New", - "NounName": "AzFirewall", - "Name": "New-AzFirewall", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallCommand", + "NounName": "AzBastionShareableLink", + "Name": "New-AzBastionShareableLink", + "ClassName": "Microsoft.Azure.Commands.Network.Bastion.NewAzBastionShareableLinkCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "Default", + "DefaultParameterSetName": "ByResourceGroupNameByName", "OutputTypes": [ { + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink" + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", - "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", - "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", - "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", - "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", - "NetworkRuleCollectionsText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", + "EnableShareableLink": "System.Nullable`1[System.Boolean]", + "EnableIpConnect": "System.Nullable`1[System.Boolean]", + "EnableTunneling": "System.Nullable`1[System.Boolean]", + "EnableSessionRecording": "System.Nullable`1[System.Boolean]", + "EnableKerberos": "System.Nullable`1[System.Boolean]", + "DisableCopyPaste": "System.Nullable`1[System.Boolean]", + "ScaleUnit": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Etag": "System.String", + "IpConfigurationsText": "System.String", + "SkuText": "System.String", "ResourceGroupName": "System.String", - "DNSServersText": "System.String", - "PrivateRangeText": "System.String", - "ThreatIntelWhitelistText": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "DnsName": "System.String", + "TagsTable": "System.String", "Name": "System.String", - "NatRuleCollectionsText": "System.String", - "EnableFatFlowLogging": "System.String", - "ManagementIpConfigurationText": "System.String", - "IpConfigurationsText": "System.String", - "RouteServerId": "System.String", - "EnableUDPLogOptimization": "System.String", - "Etag": "System.String", - "AllowActiveFTP": "System.String", - "ProvisioningState": "System.String", - "DNSEnableProxy": "System.String", - "ThreatIntelMode": "System.String", - "ApplicationRuleCollectionsText": "System.String", - "Id": "System.String", - "DNSServer": "System.String[]", - "PrivateRange": "System.String[]" - }, - "Methods": [ - { - "Name": "Allocate", - "Parameters": [ - { - "Name": "virtualHub", - "Type": "Microsoft.Azure.Management.Network.Models.SubResource" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "Allocate", - "Parameters": [ - { - "Name": "virtualHub", - "Type": "Microsoft.Azure.Management.Network.Models.SubResource" - }, - { - "Name": "publicIpAddresses", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "Allocate", - "Parameters": [ - { - "Name": "virtualNetwork", - "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" - }, - { - "Name": "publicIpAddresses", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" - }, - { - "Name": "ManagementPublicIpAddress", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "AllocateBasicSku", - "Parameters": [ - { - "Name": "virtualNetwork", - "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" - }, - { - "Name": "publicIpAddresses", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" - }, - { - "Name": "ManagementPublicIpAddress", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "Deallocate", - "ReturnType": "System.Void" - }, - { - "Name": "AddPublicIpAddress", - "Parameters": [ - { - "Name": "publicIpAddress", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "RemovePublicIpAddress", - "Parameters": [ - { - "Name": "publicIpAddress", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "AddIpAddressesForByopipHubFirewall", - "Parameters": [ - { - "Name": "publicIpAddresses", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "AddApplicationRuleCollection", - "Parameters": [ - { - "Name": "ruleCollection", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetApplicationRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" - }, - { - "Name": "GetApplicationRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" - }, - { - "Name": "RemoveApplicationRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "RemoveApplicationRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "AddNatRuleCollection", - "Parameters": [ - { - "Name": "ruleCollection", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetNatRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" - }, - { - "Name": "GetNatRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" - }, - { - "Name": "RemoveNatRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "RemoveNatRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "AddNetworkRuleCollection", - "Parameters": [ - { - "Name": "ruleCollection", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetNetworkRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" - }, - { - "Name": "GetNetworkRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" - }, - { - "Name": "RemoveNetworkRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "RemoveNetworkRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "ValidateDNSProxyRequirements", - "ReturnType": "System.Void" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PublicIpName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualNetwork", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", - "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": true }, { - "Name": "PublicIpAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ManagementPublicIpAddress", + "Name": "TargetVmId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] }, "ValidateNotNullOrEmpty": true }, - { - "Name": "ApplicationRuleCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NatRuleCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkRuleCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ThreatIntelMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ThreatIntelWhitelist", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableDnsProxy", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DnsServer", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "AsJob", "Type": { @@ -131206,113 +125688,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SkuName", - "AliasList": [ - "Sku" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "AZFW_Hub", - "AZFW_VNet" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SkuTier", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HubIPAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "PrivateIPAddress": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FirewallPolicyId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AllowActiveFTP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableFatFlowLogging", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableUDPLogOptimization", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RouteServerId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -131336,14 +125711,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByResourceGroupNameByName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -131354,11 +125726,15 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -131369,117 +125745,137 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "TargetVmId", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ApplicationRuleCollection", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "NatRuleCollection", + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NetworkRuleCollection", + "Name": "TargetVmId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ThreatIntelMode", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -131488,82 +125884,131 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "ByInputObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", + "Tag": "System.Collections.Hashtable", + "EnableShareableLink": "System.Nullable`1[System.Boolean]", + "EnableIpConnect": "System.Nullable`1[System.Boolean]", + "EnableTunneling": "System.Nullable`1[System.Boolean]", + "EnableSessionRecording": "System.Nullable`1[System.Boolean]", + "EnableKerberos": "System.Nullable`1[System.Boolean]", + "DisableCopyPaste": "System.Nullable`1[System.Boolean]", + "ScaleUnit": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Etag": "System.String", + "IpConfigurationsText": "System.String", + "SkuText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "DnsName": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableDnsProxy", + "Name": "TargetVmId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DnsServer", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Force", + "Name": "TargetVmId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -131578,17 +126023,27 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -131596,56 +126051,145 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzContainerNicConfig", + "Name": "New-AzContainerNicConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkProfileContainerNetworkInterfaceConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", + "ProvisioningState": "System.String", + "ContainerNetworkInterfacesText": "System.String", + "IpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "SkuName", - "AliasList": [ - "Sku" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "AZFW_Hub", - "AZFW_VNet" + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } ], - "ValidateNotNullOrEmpty": false + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IpConfiguration", + "AliasList": [ + "IpConfig" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "SkuTier", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "IpConfiguration", + "AliasList": [ + "IpConfig" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile" }, "ValidateNotNullOrEmpty": false }, @@ -131656,14 +126200,21 @@ }, { "ParameterMetadata": { - "Name": "HubIPAddress", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "PrivateIPAddress": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -131672,44 +126223,238 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzContainerNicConfigIpConfig", + "Name": "New-AzContainerNicConfigIpConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkProfileContainerNetworkInterfaceConfigIpConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", + "ProvisioningState": "System.String", + "ContainerNetworkInterfacesText": "System.String", + "IpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Subnet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubnetId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "FirewallPolicyId", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AllowActiveFTP", + "Name": "Subnet", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableFatFlowLogging", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -131717,16 +126462,21 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableUDPLogOptimization", + "Name": "SubnetId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -131735,15 +126485,63 @@ }, { "ParameterMetadata": { - "Name": "RouteServerId", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Subnet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } + }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -131775,40 +126573,281 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzCustomIpPrefix", + "Name": "New-AzCustomIpPrefix", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureCustomIpPrefixCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "OldIpConfigurationParameterValues", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualNetworkName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", + "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ChildCustomIpPrefixesText": "System.String", + "CustomIpPrefixParentText": "System.String", + "Cidr": "System.String", + "PrefixType": "System.String", + "Etag": "System.String", + "AuthorizationMessage": "System.String", + "SignedMessage": "System.String", + "ProvisioningState": "System.String", + "CommissionedState": "System.String", + "Asn": "System.String", + "Geo": "System.String", + "PublicIpPrefixesText": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "PublicIpName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Cidr", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Asn", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Geo", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "AFRI", + "APAC", + "AQ", + "EURO", + "LATAM", + "ME", + "NAM", + "OCEANIA" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SignedMessage", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AuthorizationMessage", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ExpressRouteAdvertise", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomIpPrefixParent", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", + "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ChildCustomIpPrefixesText": "System.String", + "CustomIpPrefixParentText": "System.String", + "Cidr": "System.String", + "PrefixType": "System.String", + "Etag": "System.String", + "AuthorizationMessage": "System.String", + "SignedMessage": "System.String", + "ProvisioningState": "System.String", + "CommissionedState": "System.String", + "Asn": "System.String", + "Geo": "System.String", + "PublicIpPrefixesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IsParent", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "Name", @@ -131859,28 +126898,26 @@ }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "Cidr", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ApplicationRuleCollection", + "Name": "Asn", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -131891,13 +126928,22 @@ }, { "ParameterMetadata": { - "Name": "NatRuleCollection", + "Name": "Geo", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "AFRI", + "APAC", + "AQ", + "EURO", + "LATAM", + "ME", + "NAM", + "OCEANIA" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -131907,12 +126953,11 @@ }, { "ParameterMetadata": { - "Name": "NetworkRuleCollection", + "Name": "SignedMessage", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -131923,17 +126968,12 @@ }, { "ParameterMetadata": { - "Name": "ThreatIntelMode", + "Name": "AuthorizationMessage", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -131943,42 +126983,65 @@ }, { "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", + "Name": "ExpressRouteAdvertise", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "CustomIpPrefixParent", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", + "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ChildCustomIpPrefixesText": "System.String", + "CustomIpPrefixParentText": "System.String", + "Cidr": "System.String", + "PrefixType": "System.String", + "Etag": "System.String", + "AuthorizationMessage": "System.String", + "SignedMessage": "System.String", + "ProvisioningState": "System.String", + "CommissionedState": "System.String", + "Asn": "System.String", + "Geo": "System.String", + "PublicIpPrefixesText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableDnsProxy", + "Name": "IsParent", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -131993,7 +127056,7 @@ }, { "ParameterMetadata": { - "Name": "DnsServer", + "Name": "Zone", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -132005,7 +127068,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -132022,21 +127085,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "AsJob", @@ -132054,12 +127102,22 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -132067,131 +127125,217 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzDdosProtectionPlan", + "Name": "New-AzDdosProtectionPlan", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmDdosProtectionPlan", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosProtectionPlan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualNetworks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PublicIPAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "VirtualNetworksText": "System.String", + "PublicIPAddressesText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "SkuName", - "AliasList": [ - "Sku" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "AZFW_Hub", - "AZFW_VNet" + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } ], - "ValidateNotNullOrEmpty": false + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "SkuTier", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "HubIPAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "PrivateIPAddress": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FirewallPolicyId", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AllowActiveFTP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableFatFlowLogging", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableUDPLogOptimization", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -132204,21 +127348,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "RouteServerId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -132246,105 +127375,478 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzDelegation", + "Name": "New-AzDelegation", + "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.NewAzureDelegationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "SetByResource", + "OutputTypes": [ { - "Name": "IpConfigurationParameterValues", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualNetwork", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", - "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", - "Id": "System.String" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Actions": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "ServiceName": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServiceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ManagementPublicIpAddress", + "Name": "ServiceName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzExpressRouteCircuit", + "Name": "New-AzExpressRouteCircuit", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ServiceProvider", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Tag": "System.Collections.Hashtable", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SkuTier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Standard", + "Premium", + "Basic", + "Local" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SkuFamily", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "MeteredData", + "UnlimitedData" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ServiceProviderName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PeeringLocation", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BandwidthInMbps", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ExpressRoutePort", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", + "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BandwidthInGbps", + "Type": { + "Namespace": "System", + "Name": "System.Double", + "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AuthorizationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Peering", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Authorization", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AllowClassicOperations", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "Name", @@ -132395,14 +127897,19 @@ }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "SkuTier", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Standard", + "Premium", + "Basic", + "Local" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -132411,13 +127918,16 @@ }, { "ParameterMetadata": { - "Name": "ApplicationRuleCollection", + "Name": "SkuFamily", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "MeteredData", + "UnlimitedData" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -132427,14 +127937,14 @@ }, { "ParameterMetadata": { - "Name": "NatRuleCollection", + "Name": "Peering", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -132443,14 +127953,14 @@ }, { "ParameterMetadata": { - "Name": "NetworkRuleCollection", + "Name": "Authorization", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -132459,18 +127969,16 @@ }, { "ParameterMetadata": { - "Name": "ThreatIntelMode", + "Name": "AllowClassicOperations", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -132479,31 +127987,26 @@ }, { "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" - } + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -132514,7 +128017,7 @@ }, { "ParameterMetadata": { - "Name": "EnableDnsProxy", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -132529,12 +128032,22 @@ }, { "ParameterMetadata": { - "Name": "DnsServer", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -132542,6 +128055,194 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ServiceProvider", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ServiceProviderName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PeeringLocation", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BandwidthInMbps", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SkuTier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Standard", + "Premium", + "Basic", + "Local" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SkuFamily", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "MeteredData", + "UnlimitedData" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Peering", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Authorization", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AllowClassicOperations", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -132590,12 +128291,22 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -132603,22 +128314,76 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ExpressRoutePort", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ExpressRoutePort", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", + "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SkuName", - "AliasList": [ - "Sku" - ], + "Name": "BandwidthInGbps", + "Type": { + "Namespace": "System", + "Name": "System.Double", + "AssemblyQualifiedName": "System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AuthorizationKey", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "AZFW_Hub", - "AZFW_VNet" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -132626,6 +128391,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "SkuTier", @@ -132637,7 +128450,8 @@ "ValidateSet": [ "Standard", "Premium", - "Basic" + "Basic", + "Local" ], "ValidateNotNullOrEmpty": false }, @@ -132648,12 +128462,16 @@ }, { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "SkuFamily", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "MeteredData", + "UnlimitedData" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -132663,32 +128481,30 @@ }, { "ParameterMetadata": { - "Name": "HubIPAddress", + "Name": "Peering", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "PrivateIPAddress": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPeering" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FirewallPolicyId", + "Name": "Authorization", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -132697,37 +128513,40 @@ }, { "ParameterMetadata": { - "Name": "AllowActiveFTP", + "Name": "AllowClassicOperations", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableFatFlowLogging", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableUDPLogOptimization", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -132742,11 +128561,11 @@ }, { "ParameterMetadata": { - "Name": "RouteServerId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -132787,48 +128606,28 @@ }, { "VerbName": "New", - "NounName": "AzFirewallApplicationRule", - "Name": "New-AzFirewallApplicationRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallApplicationRuleCommand", - "SupportsShouldProcess": true, + "NounName": "AzExpressRouteCircuitAuthorization", + "Name": "New-AzExpressRouteCircuitAuthorization", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitAuthorizationCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "TargetFqdn", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]", - "SourceAddresses": "System.Collections.Generic.List`1[System.String]", - "TargetFqdns": "System.Collections.Generic.List`1[System.String]", - "FqdnTags": "System.Collections.Generic.List`1[System.String]", - "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", + "AuthorizationKey": "System.String", + "AuthorizationUseStatus": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", - "Description": "System.String", - "ProtocolsText": "System.String", - "SourceAddressesText": "System.String", - "SourceIpGroupsText": "System.String", - "TargetFqdnsText": "System.String", - "FqdnTagsText": "System.String" + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ - { - "Name": "AddProtocol", - "Parameters": [ - { - "Name": "protocolType", - "Type": "System.String" - }, - { - "Name": "port", - "Type": "System.UInt32" - } - ], - "ReturnType": "System.Void" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -132874,56 +128673,224 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Description", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzExpressRouteCircuitPeeringConfig", + "Name": "New-AzExpressRouteCircuitPeeringConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureExpressRouteCircuitPeeringConfigCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "SetByResource", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", + "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", + "RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]", + "PeeredConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]", + "AzureASN": "System.Int32", + "VlanId": "System.Int32", + "PeeringType": "System.String", + "Name": "System.String", + "ConnectionsText": "System.String", + "Ipv6PeeringConfigText": "System.String", + "RouteFilterText": "System.String", + "PeerASNText": "System.String", + "MicrosoftPeeringConfigText": "System.String", + "GatewayManagerEtag": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "SharedKey": "System.String", + "SecondaryAzurePort": "System.String", + "PrimaryAzurePort": "System.String", + "SecondaryPeerAddressPrefix": "System.String", + "PrimaryPeerAddressPrefix": "System.String", + "State": "System.String", + "LastModifiedBy": "System.String", + "Id": "System.String", + "PeerASN": "System.UInt32" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "SourceAddress", + "Name": "PeeringType", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "AzurePrivatePeering", + "AzurePublicPeering", + "MicrosoftPeering" + ], + "ValidateNotNullOrEmpty": true }, { - "Name": "SourceIpGroup", + "Name": "PeerASN", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "TargetFqdn", + "Name": "PrimaryPeerAddressPrefix", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "FqdnTag", + "Name": "SecondaryPeerAddressPrefix", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "Protocol", + "Name": "VlanId", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SharedKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "MicrosoftConfigAdvertisedPublicPrefixes", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -132932,6 +128899,80 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "MicrosoftConfigCustomerAsn", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "MicrosoftConfigRoutingRegistryName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RouteFilterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RouteFilter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "RulesText": "System.String", + "PeeringsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PeerAddressType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "LegacyMode", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -132955,7 +128996,7 @@ ], "ParameterSets": [ { - "Name": "TargetFqdn", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { @@ -132974,12 +129015,31 @@ }, { "ParameterMetadata": { - "Name": "TargetFqdn", + "Name": "PeeringType", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "AzurePrivatePeering", + "AzurePublicPeering", + "MicrosoftPeering" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PeerASN", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -132990,12 +129050,11 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "PrimaryPeerAddressPrefix", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -133006,7 +129065,37 @@ }, { "ParameterMetadata": { - "Name": "Description", + "Name": "SecondaryPeerAddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VlanId", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharedKey", "Type": { "Namespace": "System", "Name": "System.String", @@ -133021,14 +129110,14 @@ }, { "ParameterMetadata": { - "Name": "SourceAddress", + "Name": "MicrosoftConfigAdvertisedPublicPrefixes", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -133037,20 +129126,68 @@ }, { "ParameterMetadata": { - "Name": "SourceIpGroup", + "Name": "MicrosoftConfigCustomerAsn", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MicrosoftConfigRoutingRegistryName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "PeerAddressType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LegacyMode", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -133080,8 +129217,23 @@ ] }, { - "Name": "FqdnTag", + "Name": "MicrosoftPeeringConfigRoutFilterId", "Parameters": [ + { + "ParameterMetadata": { + "Name": "RouteFilterId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "Name", @@ -133099,13 +129251,17 @@ }, { "ParameterMetadata": { - "Name": "FqdnTag", + "Name": "PeeringType", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "AzurePrivatePeering", + "AzurePublicPeering", + "MicrosoftPeering" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -133115,7 +129271,67 @@ }, { "ParameterMetadata": { - "Name": "Description", + "Name": "PeerASN", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrimaryPeerAddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SecondaryPeerAddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VlanId", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharedKey", "Type": { "Namespace": "System", "Name": "System.String", @@ -133130,14 +129346,14 @@ }, { "ParameterMetadata": { - "Name": "SourceAddress", + "Name": "MicrosoftConfigAdvertisedPublicPrefixes", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -133146,20 +129362,68 @@ }, { "ParameterMetadata": { - "Name": "SourceIpGroup", + "Name": "MicrosoftConfigCustomerAsn", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MicrosoftConfigRoutingRegistryName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "PeerAddressType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LegacyMode", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -133189,11 +129453,137 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "MicrosoftPeeringConfigRoutFilter", "Parameters": [ { "ParameterMetadata": { - "Name": "Description", + "Name": "RouteFilter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "RulesText": "System.String", + "PeeringsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PeeringType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "AzurePrivatePeering", + "AzurePublicPeering", + "MicrosoftPeering" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PeerASN", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrimaryPeerAddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SecondaryPeerAddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VlanId", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharedKey", "Type": { "Namespace": "System", "Name": "System.String", @@ -133208,14 +129598,14 @@ }, { "ParameterMetadata": { - "Name": "SourceAddress", + "Name": "MicrosoftConfigAdvertisedPublicPrefixes", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -133224,20 +129614,68 @@ }, { "ParameterMetadata": { - "Name": "SourceIpGroup", + "Name": "MicrosoftConfigCustomerAsn", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MicrosoftConfigRoutingRegistryName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "PeerAddressType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LegacyMode", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -133270,60 +129708,33 @@ }, { "VerbName": "New", - "NounName": "AzFirewallApplicationRuleCollection", - "Name": "New-AzFirewallApplicationRuleCollection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallApplicationRuleCollectionCommand", + "NounName": "AzExpressRouteConnection", + "Name": "New-AzExpressRouteConnection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteConnectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByExpressRouteGatewayName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]", - "ActionText": "System.String", - "RulesText": "System.String", + "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "AuthorizationKey": "System.String", + "ProvisioningState": "System.String", + "ExpressRouteCircuitPeeringText": "System.String", + "RoutingConfigurationText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String", - "Priority": "System.UInt32" + "RoutingWeight": "System.UInt32" }, "Methods": [ - { - "Name": "AddRule", - "Parameters": [ - { - "Name": "rule", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetRuleByName", - "Parameters": [ - { - "Name": "ruleName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule" - }, - { - "Name": "RemoveRuleByName", - "Parameters": [ - { - "Name": "ruleName", - "Type": "System.String" - } - ], - "ReturnType": "System.Void" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -133360,7 +129771,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -133369,39 +129780,133 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Priority", + "Name": "ExpressRouteGatewayName", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Rule", + "Name": "ExpressRouteGatewayObject", + "AliasList": [ + "ExpressRouteGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", + "AllowNonVirtualWanTraffic": "System.Boolean", + "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "ResourceGroupName": "System.String", + "Etag": "System.String", + "ExpressRouteConnectionsText": "System.String", + "AutoScaleConfigurationText": "System.String", + "VirtualHubText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "ActionType", + "Name": "ParentResourceId", + "AliasList": [ + "ExpressRouteGatewayId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Allow", - "Deny" + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteConnectionName" ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ExpressRouteCircuitPeeringId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AuthorizationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, + { + "Name": "RoutingWeight", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableInternetSecurity", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RoutingConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -133425,11 +129930,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByExpressRouteGatewayName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -133444,15 +129949,13 @@ }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "ExpressRouteGatewayName", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -133461,12 +129964,15 @@ }, { "ParameterMetadata": { - "Name": "Rule", + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteConnectionName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -133477,16 +129983,12 @@ }, { "ParameterMetadata": { - "Name": "ActionType", + "Name": "ExpressRouteCircuitPeeringId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Allow", - "Deny" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -133496,22 +129998,26 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "AuthorizationKey", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RoutingWeight", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -133519,120 +130025,38 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzFirewallHubIpAddress", - "Name": "New-AzFirewallHubIpAddress", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "PrivateIPAddress": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "EnableInternetSecurity", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "PrivateIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PublicIP", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", - "Count": "System.Int32" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "PrivateIPAddress", + "Name": "RoutingConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -133643,15 +130067,11 @@ }, { "ParameterMetadata": { - "Name": "PublicIP", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", - "Count": "System.Int32" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -133687,115 +130107,103 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzFirewallHubPublicIpAddress", - "Name": "New-AzFirewallHubPublicIpAddress", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", - "Count": "System.Int32" + "Name": "ByExpressRouteGatewayObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ExpressRouteGatewayObject", + "AliasList": [ + "ExpressRouteGateway" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", + "AllowNonVirtualWanTraffic": "System.Boolean", + "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "ResourceGroupName": "System.String", + "Etag": "System.String", + "ExpressRouteConnectionsText": "System.String", + "AutoScaleConfigurationText": "System.String", + "VirtualHubText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteConnectionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExpressRouteCircuitPeeringId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthorizationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Count", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Address", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "Count", + "Name": "RoutingWeight", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -133806,12 +130214,50 @@ }, { "ParameterMetadata": { - "Name": "Address", + "Name": "EnableInternetSecurity", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -133847,215 +130293,50 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzFirewallNatRule", - "Name": "New-AzFirewallNatRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallNatRuleCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Protocols": "System.Collections.Generic.List`1[System.String]", - "SourceAddresses": "System.Collections.Generic.List`1[System.String]", - "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", - "DestinationAddresses": "System.Collections.Generic.List`1[System.String]", - "DestinationPorts": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "Description": "System.String", - "TranslatedAddress": "System.String", - "TranslatedFqdn": "System.String", - "TranslatedPort": "System.String", - "ProtocolsText": "System.String", - "SourceAddressesText": "System.String", - "SourceIpGroupsText": "System.String", - "DestinationAddressesText": "System.String", - "DestinationPortsText": "System.String" - }, - "Methods": [ - { - "Name": "AddProtocol", - "Parameters": [ - { - "Name": "protocolType", - "Type": "System.String" - } + "Name": "ByExpressRouteGatewayResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ParentResourceId", + "AliasList": [ + "ExpressRouteGatewayId" ], - "ReturnType": "System.Void" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteConnectionName" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SourceAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceIpGroup", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DestinationAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DestinationPort", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateSet": [ - "Any", - "TCP", - "UDP" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TranslatedAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "TranslatedFqdn", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "TranslatedPort", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ExpressRouteCircuitPeeringId", "Type": { "Namespace": "System", "Name": "System.String", @@ -134070,7 +130351,7 @@ }, { "ParameterMetadata": { - "Name": "Description", + "Name": "AuthorizationKey", "Type": { "Namespace": "System", "Name": "System.String", @@ -134085,12 +130366,11 @@ }, { "ParameterMetadata": { - "Name": "SourceAddress", + "Name": "RoutingWeight", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -134101,12 +130381,11 @@ }, { "ParameterMetadata": { - "Name": "SourceIpGroup", + "Name": "EnableInternetSecurity", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -134117,60 +130396,81 @@ }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "RoutingConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateSet": [ - "Any", - "TCP", - "UDP" - ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "TranslatedAddress", + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -134178,14 +130478,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TranslatedFqdn", + "Name": "ExpressRouteCircuitPeeringId", "Type": { "Namespace": "System", "Name": "System.String", @@ -134193,14 +130493,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TranslatedPort", + "Name": "AuthorizationKey", "Type": { "Namespace": "System", "Name": "System.String", @@ -134208,7 +130508,76 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RoutingWeight", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableInternetSecurity", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RoutingConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -134245,60 +130614,39 @@ }, { "VerbName": "New", - "NounName": "AzFirewallNatRuleCollection", - "Name": "New-AzFirewallNatRuleCollection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallNatRuleCollectionCommand", + "NounName": "AzExpressRouteGateway", + "Name": "New-AzExpressRouteGateway", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmExpressRouteGatewayCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]", - "ActionText": "System.String", - "RulesText": "System.String", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", + "AllowNonVirtualWanTraffic": "System.Boolean", + "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", + "Tag": "System.Collections.Hashtable", "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "ResourceGroupName": "System.String", "Etag": "System.String", - "Id": "System.String", - "Priority": "System.UInt32" + "ExpressRouteConnectionsText": "System.String", + "AutoScaleConfigurationText": "System.String", + "VirtualHubText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", + "Id": "System.String" }, "Methods": [ - { - "Name": "AddRule", - "Parameters": [ - { - "Name": "rule", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetRuleByName", - "Parameters": [ - { - "Name": "ruleName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule" - }, - { - "Name": "RemoveRuleByName", - "Parameters": [ - { - "Name": "ruleName", - "Type": "System.String" - } - ], - "ReturnType": "System.Void" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -134334,8 +130682,21 @@ } ], "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -134344,25 +130705,104 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Priority", + "Name": "MinScaleUnits", "Type": { "Namespace": "System", "Name": "System.UInt32", "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, { - "Name": "Rule", + "Name": "MaxScaleUnits", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHub", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -134389,9 +130829,28 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -134406,14 +130865,14 @@ }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "MinScaleUnits", "Type": { "Namespace": "System", "Name": "System.UInt32", "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -134423,16 +130882,47 @@ }, { "ParameterMetadata": { - "Name": "Rule", + "Name": "MaxScaleUnits", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -134464,210 +130954,61 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzFirewallNetworkRule", - "Name": "New-AzFirewallNetworkRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallNetworkRuleCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Protocols": "System.Collections.Generic.List`1[System.String]", - "SourceAddresses": "System.Collections.Generic.List`1[System.String]", - "DestinationAddresses": "System.Collections.Generic.List`1[System.String]", - "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", - "DestinationIpGroups": "System.Collections.Generic.List`1[System.String]", - "DestinationFqdns": "System.Collections.Generic.List`1[System.String]", - "DestinationPorts": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "Description": "System.String", - "ProtocolsText": "System.String", - "SourceAddressesText": "System.String", - "SourceIpGroupsText": "System.String", - "DestinationAddressesText": "System.String", - "DestinationIpGroupsText": "System.String", - "DestinationFqdnsText": "System.String", - "DestinationPortsText": "System.String" - }, - "Methods": [ - { - "Name": "AddProtocol", - "Parameters": [ - { - "Name": "protocolType", - "Type": "System.String" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" + "Name": "ByVirtualHubObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualHub", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" } - ], - "ReturnType": "System.Boolean" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SourceAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceIpGroup", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DestinationAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DestinationIpGroup", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DestinationFqdn", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DestinationPort", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateSet": [ - "Any", - "TCP", - "UDP", - "ICMP" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -134682,7 +131023,11 @@ }, { "ParameterMetadata": { - "Name": "Description", + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -134690,36 +131035,38 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SourceAddress", + "Name": "MinScaleUnits", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SourceIpGroup", + "Name": "MaxScaleUnits", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -134729,12 +131076,11 @@ }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -134745,12 +131091,11 @@ }, { "ParameterMetadata": { - "Name": "DestinationIpGroup", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -134761,28 +131106,76 @@ }, { "ParameterMetadata": { - "Name": "DestinationFqdn", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualHubId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteGatewayName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -134793,19 +131186,14 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "MinScaleUnits", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Any", - "TCP", - "UDP", - "ICMP" - ], + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -134813,6 +131201,53 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "MaxScaleUnits", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -134840,171 +131275,47 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzFirewallNetworkRuleCollection", - "Name": "New-AzFirewallNetworkRuleCollection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallNetworkRuleCollectionCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", - "ActionText": "System.String", - "RulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "Priority": "System.UInt32" - }, - "Methods": [ - { - "Name": "AddRule", - "Parameters": [ - { - "Name": "rule", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetRuleByName", - "Parameters": [ - { - "Name": "ruleName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" - }, - { - "Name": "RemoveRuleByName", - "Parameters": [ - { - "Name": "ruleName", - "Type": "System.String" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Rule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ActionType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Allow", - "Deny" - ], - "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubName", "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualHubName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -135019,14 +131330,14 @@ }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "MinScaleUnits", "Type": { "Namespace": "System", "Name": "System.UInt32", "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": true, @@ -135036,35 +131347,47 @@ }, { "ParameterMetadata": { - "Name": "Rule", + "Name": "MaxScaleUnits", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ActionType", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Allow", - "Deny" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -135101,41 +131424,46 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPacketCaptureParameter", - "Name": "New-AzFirewallPacketCaptureParameter", - "ClassName": "Microsoft.Azure.Commands.Network.AzureFirewall.PacketCapture.NewAzureFirewallPacketCaptureParametersCommand", + "NounName": "AzExpressRoutePort", + "Name": "New-AzExpressRoutePort", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePort", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ResourceNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Flags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags]", - "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule]", - "SasUrl": "System.String", - "FileName": "System.String", - "Protocol": "System.String", - "FlagsText": "System.String", - "FiltersText": "System.String", - "DurationInSeconds": "System.UInt32", - "NumberOfPacketsToCapture": "System.UInt32" + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", + "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", + "Id": "System.String" }, "Methods": [ - { - "Name": "AddFilter", - "Parameters": [ - { - "Name": "rule", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule" - } - ], - "ReturnType": "System.Void" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -135172,29 +131500,28 @@ ], "Parameters": [ { - "Name": "DurationInSeconds", + "Name": "ResourceId", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 30, - "ValidateRangeMax": 1800, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "NumberOfPacketsToCapture", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 90000, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "SasUrl", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -135203,48 +131530,101 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "FileName", + "Name": "PeeringLocation", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Protocol", + "Name": "BandwidthInGbps", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Encapsulation", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Any", - "TCP", - "UDP", - "ICMP" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "Flag", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Filter", + "Name": "Link", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Identity", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BillingType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -135269,60 +131649,71 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "DurationInSeconds", + "Name": "ResourceId", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PeeringLocation", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 30, - "ValidateRangeMax": 1800, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "NumberOfPacketsToCapture", + "Name": "BandwidthInGbps", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 90000, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SasUrl", + "Name": "Encapsulation", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FileName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -135333,22 +131724,47 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Link", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "Any", - "TCP", - "UDP", - "ICMP" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -135358,12 +131774,11 @@ }, { "ParameterMetadata": { - "Name": "Flag", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -135374,20 +131789,40 @@ }, { "ParameterMetadata": { - "Name": "Filter", + "Name": "Identity", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BillingType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -135415,163 +131850,365 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzFirewallPacketCaptureRule", - "Name": "New-AzFirewallPacketCaptureRule", - "ClassName": "Microsoft.Azure.Commands.Network.AzureFirewall.PacketCaptureRule.NewAzureFirewallPacketCaptureRuleCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sources": "System.Collections.Generic.List`1[System.String]", - "Destinations": "System.Collections.Generic.List`1[System.String]", - "DestinationPorts": "System.Collections.Generic.List`1[System.String]", - "SourcesText": "System.String", - "DestinationsText": "System.String", - "DestinationPortsText": "System.String" + "Name": "ResourceNameParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PeeringLocation", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BandwidthInGbps", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Encapsulation", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Link", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Identity", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BillingType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } ] - } - ], - "Parameters": [ - { - "Name": "Source", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Destination", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DestinationPort", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Source", + "Name": "PeeringLocation", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Destination", + "Name": "BandwidthInGbps", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Encapsulation", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Link", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Identity", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -135580,6 +132217,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BillingType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -135612,10 +132264,10 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicy", - "Name": "New-AzFirewallPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyCommand", - "SupportsShouldProcess": true, + "NounName": "AzExpressRoutePortIdentity", + "Name": "New-AzExpressRoutePortIdentity", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureExpressRoutePortIdentityCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -135623,34 +132275,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" }, "Methods": [ { @@ -135689,9 +132320,9 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "UserAssignedIdentityId", "AliasList": [ - "ResourceName" + "UserAssignedIdentity" ], "Type": { "Namespace": "System", @@ -135701,161 +132332,157 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ThreatIntelMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ThreatIntelWhitelist", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BasePolicy", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DnsSetting", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false - }, + } + ], + "ParameterSets": [ { - "Name": "SqlSetting", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzExpressRoutePortLOA", + "Name": "New-AzExpressRoutePortLOA", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmExpressRoutePortLOA", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ResourceNameParameterSet", + "OutputTypes": [ { - "Name": "IntrusionDetection", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ { - "Name": "TransportSecurityName", + "Name": "PortName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "TransportSecurityKeyVaultSecretId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "SkuTier", + "Name": "ExpressRoutePort", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", + "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", + "Id": "System.String" + } }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "UserAssignedIdentityId", + "Name": "Id", "AliasList": [ - "UserAssignedIdentity" + "ResourceId" ], "Type": { "Namespace": "System", @@ -135865,57 +132492,41 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Identity", + "Name": "CustomerName", + "AliasList": [ + "Name" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateRange", + "Name": "Destination", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ExplicitProxy", + "Name": "PassThru", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Snat", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -135942,14 +132553,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ResourceNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "PortName", "Type": { "Namespace": "System", "Name": "System.String", @@ -135960,7 +132568,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -135975,11 +132583,14 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "CustomerName", + "AliasList": [ + "Name" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -135990,39 +132601,30 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ThreatIntelMode", + "Name": "Destination", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", + "Name": "PassThru", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -136033,29 +132635,36 @@ }, { "ParameterMetadata": { - "Name": "BasePolicy", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DnsSetting", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -136064,43 +132673,89 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "ResourceObjectParameterSet", + "Parameters": [ { "ParameterMetadata": { - "Name": "SqlSetting", + "Name": "ExpressRoutePort", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", + "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", + "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "CustomerName", + "AliasList": [ + "Name" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Destination", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -136130,15 +132785,21 @@ }, { "ParameterMetadata": { - "Name": "IntrusionDetection", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -136147,25 +132808,51 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Id", + "AliasList": [ + "ResourceId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TransportSecurityName", + "Name": "CustomerName", + "AliasList": [ + "Name" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TransportSecurityKeyVaultSecretId", + "Name": "Destination", "Type": { "Namespace": "System", "Name": "System.String", @@ -136180,17 +132867,12 @@ }, { "ParameterMetadata": { - "Name": "SkuTier", + "Name": "PassThru", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -136200,16 +132882,13 @@ }, { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -136218,33 +132897,60 @@ }, { "ParameterMetadata": { - "Name": "Identity", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "CustomerName", + "AliasList": [ + "Name" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "Destination", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -136255,19 +132961,11 @@ }, { "ParameterMetadata": { - "Name": "ExplicitProxy", + "Name": "PassThru", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -136278,15 +132976,11 @@ }, { "ParameterMetadata": { - "Name": "Snat", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -136327,66 +133021,308 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyApplicationRule", - "Name": "New-AzFirewallPolicyApplicationRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand", - "SupportsShouldProcess": false, + "NounName": "AzFirewall", + "Name": "New-AzFirewall", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SourceAddressAndTargetFqdn", + "DefaultParameterSetName": "Default", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "HttpHeadersToInsert": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader]", - "Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]", - "SourceAddresses": "System.Collections.Generic.List`1[System.String]", - "TargetFqdns": "System.Collections.Generic.List`1[System.String]", - "FqdnTags": "System.Collections.Generic.List`1[System.String]", - "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", - "WebCategories": "System.Collections.Generic.List`1[System.String]", - "TargetUrls": "System.Collections.Generic.List`1[System.String]", - "TerminateTLS": "System.Nullable`1[System.Boolean]", - "HttpHeadersToInsertText": "System.String", - "TargetUrlsText": "System.String", - "WebCategoriesText": "System.String", - "FqdnTagsText": "System.String", - "Description": "System.String", - "SourceIpGroupsText": "System.String", - "SourceAddressesText": "System.String", - "ProtocolsText": "System.String", + "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", + "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", + "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", + "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", + "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", + "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", + "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "NetworkRuleCollectionsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "DNSServersText": "System.String", + "PrivateRangeText": "System.String", + "ThreatIntelWhitelistText": "System.String", "Name": "System.String", - "TargetFqdnsText": "System.String", - "RuleType": "System.String" + "NatRuleCollectionsText": "System.String", + "EnableFatFlowLogging": "System.String", + "ManagementIpConfigurationText": "System.String", + "IpConfigurationsText": "System.String", + "RouteServerId": "System.String", + "EnableUDPLogOptimization": "System.String", + "Etag": "System.String", + "AllowActiveFTP": "System.String", + "ProvisioningState": "System.String", + "DNSEnableProxy": "System.String", + "ThreatIntelMode": "System.String", + "ApplicationRuleCollectionsText": "System.String", + "Id": "System.String", + "DNSServer": "System.String[]", + "PrivateRange": "System.String[]" }, "Methods": [ { - "Name": "AddProtocol", + "Name": "Allocate", "Parameters": [ { - "Name": "protocolType", - "Type": "System.String" + "Name": "virtualHub", + "Type": "Microsoft.Azure.Management.Network.Models.SubResource" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "Allocate", + "Parameters": [ + { + "Name": "virtualHub", + "Type": "Microsoft.Azure.Management.Network.Models.SubResource" }, { - "Name": "port", + "Name": "publicIpAddresses", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "Allocate", + "Parameters": [ + { + "Name": "virtualNetwork", + "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" + }, + { + "Name": "publicIpAddresses", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" + }, + { + "Name": "ManagementPublicIpAddress", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "AllocateBasicSku", + "Parameters": [ + { + "Name": "virtualNetwork", + "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" + }, + { + "Name": "publicIpAddresses", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" + }, + { + "Name": "ManagementPublicIpAddress", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "Deallocate", + "ReturnType": "System.Void" + }, + { + "Name": "AddPublicIpAddress", + "Parameters": [ + { + "Name": "publicIpAddress", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "RemovePublicIpAddress", + "Parameters": [ + { + "Name": "publicIpAddress", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "AddIpAddressesForByopipHubFirewall", + "Parameters": [ + { + "Name": "publicIpAddresses", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "AddApplicationRuleCollection", + "Parameters": [ + { + "Name": "ruleCollection", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "GetApplicationRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" + }, + { + "Name": "GetApplicationRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", + "Type": "System.UInt32" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" + }, + { + "Name": "RemoveApplicationRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "RemoveApplicationRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", "Type": "System.UInt32" } ], "ReturnType": "System.Void" }, { - "Name": "AddCustomHttpHeaderToInsert", + "Name": "AddNatRuleCollection", "Parameters": [ { - "Name": "httpHeader", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader" + "Name": "ruleCollection", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "GetNatRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + }, + { + "Name": "GetNatRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", + "Type": "System.UInt32" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + }, + { + "Name": "RemoveNatRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "RemoveNatRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", + "Type": "System.UInt32" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "AddNetworkRuleCollection", + "Parameters": [ + { + "Name": "ruleCollection", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "GetNetworkRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + }, + { + "Name": "GetNetworkRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", + "Type": "System.UInt32" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + }, + { + "Name": "RemoveNetworkRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" } ], "ReturnType": "System.Void" }, + { + "Name": "RemoveNetworkRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", + "Type": "System.UInt32" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "ValidateDNSProxyRequirements", + "ReturnType": "System.Void" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -136424,6 +133360,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -136432,7 +133371,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Description", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -136441,77 +133380,330 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "SourceAddress", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "SourceIpGroup", + "Name": "VirtualNetworkName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "TargetFqdn", + "Name": "PublicIpName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "FqdnTag", + "Name": "VirtualNetwork", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "WebCategory", + "Name": "PublicIpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ManagementPublicIpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationRuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NatRuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkRuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ThreatIntelMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Alert", + "Deny", + "Off" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ThreatIntelWhitelist", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateRange", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Protocol", + "Name": "EnableDnsProxy", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DnsServer", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "TargetUrl", + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Zone", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "TerminateTLS", + "Name": "SkuName", + "AliasList": [ + "Sku" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "AZFW_Hub", + "AZFW_VNet" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SkuTier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Standard", + "Premium", + "Basic" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HubIPAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", + "PrivateIPAddress": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FirewallPolicyId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AllowActiveFTP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableFatFlowLogging", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableUDPLogOptimization", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -136519,6 +133711,15 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "RouteServerId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -136547,6 +133748,9 @@ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -136557,11 +133761,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -136569,167 +133773,120 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TerminateTLS", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SourceAddressAndTargetFqdn", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SourceAddress", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TargetFqdn", + "Name": "PublicIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "ApplicationRuleCollection", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "NatRuleCollection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "NetworkRuleCollection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TerminateTLS", + "Name": "ThreatIntelMode", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Alert", + "Deny", + "Off" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ThreatIntelWhitelist", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" } }, "ValidateNotNullOrEmpty": false @@ -136738,77 +133895,72 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SourceAddressAndFqdnTag", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "SourceAddress", + "Name": "PrivateRange", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FqdnTag", + "Name": "EnableDnsProxy", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DnsServer", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TerminateTLS", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -136823,22 +133975,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -136846,122 +133987,90 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SourceAddressAndWebCategory", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SourceAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "WebCategory", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Zone", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "SkuName", + "AliasList": [ + "Sku" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "AZFW_Hub", + "AZFW_VNet" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "SkuTier", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Standard", + "Premium", + "Basic" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TerminateTLS", + "Name": "VirtualHubId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "HubIPAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", + "PrivateIPAddress": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -136970,98 +134079,75 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SourceAddressAndTargetUrl", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "SourceAddress", + "Name": "FirewallPolicyId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "AllowActiveFTP", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetUrl", + "Name": "EnableFatFlowLogging", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "EnableUDPLogOptimization", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "RouteServerId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TerminateTLS", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -137098,59 +134184,59 @@ ] }, { - "Name": "SourceIpGroupAndTargetFqdn", + "Name": "OldIpConfigurationParameterValues", "Parameters": [ { "ParameterMetadata": { - "Name": "SourceIpGroup", + "Name": "VirtualNetworkName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TargetFqdn", + "Name": "PublicIpName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -137161,11 +134247,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -137173,43 +134259,105 @@ }, "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PublicIpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TerminateTLS", + "Name": "ApplicationRuleCollection", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "Name": "NatRuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkRuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ThreatIntelMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Alert", + "Deny", + "Off" ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ThreatIntelWhitelist", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" } }, "ValidateNotNullOrEmpty": false @@ -137218,68 +134366,215 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SourceIpGroupAndFqdnTag", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "SourceIpGroup", + "Name": "PrivateRange", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FqdnTag", + "Name": "EnableDnsProxy", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DnsServer", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SkuName", + "AliasList": [ + "Sku" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "AZFW_Hub", + "AZFW_VNet" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SkuTier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Standard", + "Premium", + "Basic" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualHubId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "HubIPAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", + "PrivateIPAddress": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "FirewallPolicyId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AllowActiveFTP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -137288,7 +134583,22 @@ }, { "ParameterMetadata": { - "Name": "TerminateTLS", + "Name": "EnableFatFlowLogging", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableUDPLogOptimization", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -137301,6 +134611,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "RouteServerId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -137330,75 +134655,140 @@ ] }, { - "Name": "SourceIpGroupAndWebCategory", + "Name": "IpConfigurationParameterValues", "Parameters": [ { "ParameterMetadata": { - "Name": "SourceIpGroup", + "Name": "VirtualNetwork", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FqdnTag", + "Name": "ManagementPublicIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "WebCategory", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -137409,55 +134799,102 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "PublicIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TerminateTLS", + "Name": "ApplicationRuleCollection", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "Name": "NatRuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkRuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ThreatIntelMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Alert", + "Deny", + "Off" ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ThreatIntelWhitelist", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" } }, "ValidateNotNullOrEmpty": false @@ -137466,84 +134903,215 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SourceIpGroupAndTargetUrl", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "SourceIpGroup", + "Name": "PrivateRange", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "EnableDnsProxy", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DnsServer", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetUrl", + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Zone", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "SkuName", + "AliasList": [ + "Sku" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "AZFW_Hub", + "AZFW_VNet" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SkuTier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Standard", + "Premium", + "Basic" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualHubId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "HubIPAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", + "PrivateIPAddress": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "FirewallPolicyId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AllowActiveFTP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -137552,7 +135120,22 @@ }, { "ParameterMetadata": { - "Name": "TerminateTLS", + "Name": "EnableFatFlowLogging", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableUDPLogOptimization", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -137565,6 +135148,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "RouteServerId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -137597,24 +135195,48 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyApplicationRuleCustomHttpHeader", - "Name": "New-AzFirewallPolicyApplicationRuleCustomHttpHeader", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCustomHttpHeaderCommand", + "NounName": "AzFirewallApplicationRule", + "Name": "New-AzFirewallApplicationRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallApplicationRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "TargetFqdn", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "HeaderName": "System.String", - "HeaderValue": "System.String" + "Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]", + "SourceAddresses": "System.Collections.Generic.List`1[System.String]", + "TargetFqdns": "System.Collections.Generic.List`1[System.String]", + "FqdnTags": "System.Collections.Generic.List`1[System.String]", + "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "Description": "System.String", + "ProtocolsText": "System.String", + "SourceAddressesText": "System.String", + "SourceIpGroupsText": "System.String", + "TargetFqdnsText": "System.String", + "FqdnTagsText": "System.String" }, "Methods": [ + { + "Name": "AddProtocol", + "Parameters": [ + { + "Name": "protocolType", + "Type": "System.String" + }, + { + "Name": "port", + "Type": "System.UInt32" + } + ], + "ReturnType": "System.Void" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -137651,7 +135273,7 @@ ], "Parameters": [ { - "Name": "HeaderName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -137660,7 +135282,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "HeaderValue", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -137668,6 +135290,56 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "SourceAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SourceIpGroup", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TargetFqdn", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "FqdnTag", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -137691,11 +135363,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "TargetFqdn", "Parameters": [ { "ParameterMetadata": { - "Name": "HeaderName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -137710,7 +135382,39 @@ }, { "ParameterMetadata": { - "Name": "HeaderValue", + "Name": "TargetFqdn", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -137718,7 +135422,39 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SourceAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SourceIpGroup", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -137750,115 +135486,64 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzFirewallPolicyDnsSetting", - "Name": "New-AzFirewallPolicyDnsSetting", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallDnsSettingCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + "Name": "FqdnTag", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FqdnTag", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "EnableProxy", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Server", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "EnableProxy", + "Name": "SourceAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -137869,7 +135554,7 @@ }, { "ParameterMetadata": { - "Name": "Server", + "Name": "SourceIpGroup", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -137910,40 +135595,143 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzFirewallPolicyDraft", - "Name": "New-AzFirewallPolicyDraft", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyDraftCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "SetByNameParameterSet", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "Name": "System.String", + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SourceAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SourceIpGroup", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzFirewallApplicationRuleCollection", + "Name": "New-AzFirewallApplicationRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallApplicationRuleCollectionCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]", + "ActionText": "System.String", + "RulesText": "System.String", + "Name": "System.String", "Etag": "System.String", "Id": "System.String", - "PrivateRange": "System.String[]" + "Priority": "System.UInt32" }, "Methods": [ + { + "Name": "AddRule", + "Parameters": [ + { + "Name": "rule", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "GetRuleByName", + "Parameters": [ + { + "Name": "ruleName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule" + }, + { + "Name": "RemoveRuleByName", + "Parameters": [ + { + "Name": "ruleName", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -137980,7 +135768,7 @@ ], "Parameters": [ { - "Name": "AzureFirewallPolicyName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -137989,191 +135777,38 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, + "ValidateNotNullOrEmpty": false }, { - "Name": "FirewallPolicyObject", + "Name": "Rule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule" }, "ValidateNotNullOrEmpty": true }, { - "Name": "ThreatIntelMode", + "Name": "ActionType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Alert", - "Deny", - "Off" + "Allow", + "Deny" ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ThreatIntelWhitelist", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BasePolicy", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DnsSetting", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SqlSetting", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IntrusionDetection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ExplicitProxy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Snat", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -138198,26 +135833,11 @@ ], "ParameterSets": [ { - "Name": "SetByNameParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "AzureFirewallPolicyName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -138228,90 +135848,77 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ThreatIntelMode", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", + "Name": "Rule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BasePolicy", + "Name": "ActionType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DnsSetting", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Allow", + "Deny" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SqlSetting", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -138320,44 +135927,120 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzFirewallHubIpAddress", + "Name": "New-AzFirewallHubIpAddress", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallHubIpAddress", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", + "PrivateIPAddress": "System.String" }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "PrivateIPAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PublicIP", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", + "Count": "System.Int32" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PrivateIPAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -138368,15 +136051,14 @@ }, { "ParameterMetadata": { - "Name": "IntrusionDetection", + "Name": "PublicIP", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" + "Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", + "Count": "System.Int32" } }, "ValidateNotNullOrEmpty": false @@ -138388,12 +136070,22 @@ }, { "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -138401,22 +136093,117 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzFirewallHubPublicIpAddress", + "Name": "New-AzFirewallHubPublicIpAddress", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallHubPublicIpAddress", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", + "Count": "System.Int32" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Count", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Address", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "ExplicitProxy", + "Name": "Count", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -138427,15 +136214,12 @@ }, { "ParameterMetadata": { - "Name": "Snat", + "Name": "Address", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress" }, "ValidateNotNullOrEmpty": false }, @@ -138471,83 +136255,250 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzFirewallNatRule", + "Name": "New-AzFirewallNatRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallNatRuleCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Protocols": "System.Collections.Generic.List`1[System.String]", + "SourceAddresses": "System.Collections.Generic.List`1[System.String]", + "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", + "DestinationAddresses": "System.Collections.Generic.List`1[System.String]", + "DestinationPorts": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "Description": "System.String", + "TranslatedAddress": "System.String", + "TranslatedFqdn": "System.String", + "TranslatedPort": "System.String", + "ProtocolsText": "System.String", + "SourceAddressesText": "System.String", + "SourceIpGroupsText": "System.String", + "DestinationAddressesText": "System.String", + "DestinationPortsText": "System.String" + }, + "Methods": [ + { + "Name": "AddProtocol", + "Parameters": [ + { + "Name": "protocolType", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "SetByParentInputObjectParameterSet", + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SourceAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SourceIpGroup", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DestinationPort", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "Any", + "TCP", + "UDP" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TranslatedAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TranslatedFqdn", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TranslatedPort", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "FirewallPolicyObject", + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ThreatIntelMode", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", + "Name": "SourceAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -138558,80 +136509,82 @@ }, { "ParameterMetadata": { - "Name": "BasePolicy", + "Name": "SourceIpGroup", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DnsSetting", + "Name": "DestinationAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SqlSetting", + "Name": "DestinationPort", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Protocol", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, + "ValidateSet": [ + "Any", + "TCP", + "UDP" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "TranslatedAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -138640,72 +136593,13 @@ }, { "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IntrusionDetection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "TranslatedFqdn", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExplicitProxy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" - } + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -138714,19 +136608,15 @@ }, { "ParameterMetadata": { - "Name": "Snat", + "Name": "TranslatedPort", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -138758,220 +136648,199 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzFirewallNatRuleCollection", + "Name": "New-AzFirewallNatRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallNatRuleCollectionCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ThreatIntelMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]", + "ActionText": "System.String", + "RulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "Priority": "System.UInt32" }, - { - "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" + "Methods": [ + { + "Name": "AddRule", + "Parameters": [ + { + "Name": "rule", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule" } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BasePolicy", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Void" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DnsSetting", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" + { + "Name": "GetRuleByName", + "Parameters": [ + { + "Name": "ruleName", + "Type": "System.String" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SqlSetting", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + { + "Name": "RemoveRuleByName", + "Parameters": [ + { + "Name": "ruleName", + "Type": "System.String" } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Void" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IntrusionDetection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Rule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ExplicitProxy", + "Name": "Priority", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" - } + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Snat", + "Name": "Rule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -139008,9 +136877,9 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyExplicitProxy", - "Name": "New-AzFirewallPolicyExplicitProxy", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyExplicitProxyCommand", + "NounName": "AzFirewallNetworkRule", + "Name": "New-AzFirewallNetworkRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallNetworkRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -139019,17 +136888,37 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" + "Protocols": "System.Collections.Generic.List`1[System.String]", + "SourceAddresses": "System.Collections.Generic.List`1[System.String]", + "DestinationAddresses": "System.Collections.Generic.List`1[System.String]", + "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", + "DestinationIpGroups": "System.Collections.Generic.List`1[System.String]", + "DestinationFqdns": "System.Collections.Generic.List`1[System.String]", + "DestinationPorts": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "Description": "System.String", + "ProtocolsText": "System.String", + "SourceAddressesText": "System.String", + "SourceIpGroupsText": "System.String", + "DestinationAddressesText": "System.String", + "DestinationIpGroupsText": "System.String", + "DestinationFqdnsText": "System.String", + "DestinationPortsText": "System.String" }, "Methods": [ + { + "Name": "AddProtocol", + "Parameters": [ + { + "Name": "protocolType", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -139066,66 +136955,97 @@ ], "Parameters": [ { - "Name": "EnableExplicitProxy", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "HttpPort", + "Name": "Description", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SourceAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "HttpsPort", + "Name": "SourceIpGroup", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnablePacFile", + "Name": "DestinationAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PacFilePort", + "Name": "DestinationIpGroup", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PacFile", + "Name": "DestinationFqdn", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DestinationPort", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, + "ValidateSet": [ + "Any", + "TCP", + "UDP", + "ICMP" + ], "ValidateNotNullOrEmpty": false }, { @@ -139155,13 +137075,28 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "EnableExplicitProxy", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -139170,14 +137105,12 @@ }, { "ParameterMetadata": { - "Name": "HttpPort", + "Name": "SourceAddress", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -139188,14 +137121,12 @@ }, { "ParameterMetadata": { - "Name": "HttpsPort", + "Name": "SourceIpGroup", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -139206,11 +137137,12 @@ }, { "ParameterMetadata": { - "Name": "EnablePacFile", + "Name": "DestinationAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -139221,14 +137153,12 @@ }, { "ParameterMetadata": { - "Name": "PacFilePort", + "Name": "DestinationIpGroup", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -139239,19 +137169,58 @@ }, { "ParameterMetadata": { - "Name": "PacFile", + "Name": "DestinationFqdn", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DestinationPort", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "Any", + "TCP", + "UDP", + "ICMP" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -139284,10 +137253,10 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyFilterRuleCollection", - "Name": "New-AzFirewallPolicyFilterRuleCollection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand", - "SupportsShouldProcess": false, + "NounName": "AzFirewallNetworkRuleCollection", + "Name": "New-AzFirewallNetworkRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallNetworkRuleCollectionCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -139295,11 +137264,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", - "Size": "System.String", + "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", + "ActionText": "System.String", + "RulesText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String", @@ -139307,14 +137278,34 @@ }, "Methods": [ { - "Name": "GetRuleCollectionByName", + "Name": "AddRule", "Parameters": [ { - "Name": "ruleCollectionName", + "Name": "rule", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "GetRuleByName", + "Parameters": [ + { + "Name": "ruleName", "Type": "System.String" } ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" + }, + { + "Name": "RemoveRuleByName", + "Parameters": [ + { + "Name": "ruleName", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" }, { "Name": "GetType", @@ -139375,9 +137366,9 @@ "Name": "Rule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" }, "ValidateNotNullOrEmpty": true }, @@ -139456,13 +137447,13 @@ "Name": "Rule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -139518,9 +137509,9 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyIntrusionDetection", - "Name": "New-AzFirewallPolicyIntrusionDetection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyIntrusionDetectionCommand", + "NounName": "AzFirewallPacketCaptureParameter", + "Name": "New-AzFirewallPacketCaptureParameter", + "ClassName": "Microsoft.Azure.Commands.Network.AzureFirewall.PacketCapture.NewAzureFirewallPacketCaptureParametersCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -139529,14 +137520,30 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" + "Flags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags]", + "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule]", + "SasUrl": "System.String", + "FileName": "System.String", + "Protocol": "System.String", + "FlagsText": "System.String", + "FiltersText": "System.String", + "DurationInSeconds": "System.UInt32", + "NumberOfPacketsToCapture": "System.UInt32" }, "Methods": [ + { + "Name": "AddFilter", + "Parameters": [ + { + "Name": "rule", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule" + } + ], + "ReturnType": "System.Void" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -139573,50 +137580,62 @@ ], "Parameters": [ { - "Name": "Mode", + "Name": "DurationInSeconds", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Off", - "Alert", - "Deny" - ], - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 30, + "ValidateRangeMax": 1800, + "ValidateNotNullOrEmpty": false }, { - "Name": "Profile", + "Name": "NumberOfPacketsToCapture", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 90000, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SasUrl", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "SignatureOverride", + "Name": "FileName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "BypassTraffic", + "Name": "Protocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Any", + "TCP", + "UDP", + "ICMP" + ], "ValidateNotNullOrEmpty": false }, { - "Name": "PrivateRange", + "Name": "Flag", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -139625,6 +137644,16 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "Filter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -139652,18 +137681,15 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Mode", + "Name": "DurationInSeconds", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Off", - "Alert", - "Deny" - ], - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 30, + "ValidateRangeMax": 1800, + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -139672,44 +137698,65 @@ }, { "ParameterMetadata": { - "Name": "Profile", + "Name": "NumberOfPacketsToCapture", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 90000, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SasUrl", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SignatureOverride", + "Name": "FileName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BypassTraffic", + "Name": "Protocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Any", + "TCP", + "UDP", + "ICMP" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -139719,7 +137766,7 @@ }, { "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "Flag", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -139733,6 +137780,22 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Filter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -139765,9 +137828,9 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyIntrusionDetectionBypassTraffic", - "Name": "New-AzFirewallPolicyIntrusionDetectionBypassTraffic", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyIntrusionDetectionBypassTrafficCommand", + "NounName": "AzFirewallPacketCaptureRule", + "Name": "New-AzFirewallPacketCaptureRule", + "ClassName": "Microsoft.Azure.Commands.Network.AzureFirewall.PacketCaptureRule.NewAzureFirewallPacketCaptureRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -139776,17 +137839,15 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SourceAddresses": "System.Collections.Generic.List`1[System.String]", - "DestinationAddresses": "System.Collections.Generic.List`1[System.String]", - "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", - "DestinationIpGroups": "System.Collections.Generic.List`1[System.String]", + "Sources": "System.Collections.Generic.List`1[System.String]", + "Destinations": "System.Collections.Generic.List`1[System.String]", "DestinationPorts": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "Description": "System.String", - "Protocol": "System.String" + "SourcesText": "System.String", + "DestinationsText": "System.String", + "DestinationPortsText": "System.String" }, "Methods": [ { @@ -139825,77 +137886,24 @@ ], "Parameters": [ { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "TCP", - "UDP", - "ICMP", - "ANY" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SourceAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DestinationAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SourceIpGroup", + "Name": "Source", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "DestinationIpGroup", + "Name": "Destination", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DestinationPort", @@ -139905,7 +137913,7 @@ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -139934,11 +137942,12 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "Source", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -139949,33 +137958,13 @@ }, { "ParameterMetadata": { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Protocol", + "Name": "Destination", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "TCP", - "UDP", - "ICMP", - "ANY" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -139985,7 +137974,7 @@ }, { "ParameterMetadata": { - "Name": "SourceAddress", + "Name": "DestinationPort", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -140001,86 +137990,22 @@ }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceIpGroup", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DestinationIpGroup", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DestinationPort", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -140095,9 +138020,9 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyIntrusionDetectionSignatureOverride", - "Name": "New-AzFirewallPolicyIntrusionDetectionSignatureOverride", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyIntrusionDetectionSignatureOverrideCommand", + "NounName": "AzFirewallPolicy", + "Name": "New-AzFirewallPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -140106,11 +138031,34 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Id": "System.String", - "Mode": "System.String" + "PrivateRange": "System.String[]" }, "Methods": [ { @@ -140149,28 +138097,236 @@ ], "Parameters": [ { - "Name": "Id", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", - "Name": "System.UInt64", - "AssemblyQualifiedName": "System.UInt64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "Mode", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ThreatIntelMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Off", "Alert", - "Deny" + "Deny", + "Off" ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ThreatIntelWhitelist", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BasePolicy", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DnsSetting", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SqlSetting", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IntrusionDetection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TransportSecurityName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TransportSecurityKeyVaultSecretId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SkuTier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Standard", + "Premium", + "Basic" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, + { + "Name": "Identity", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PrivateRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ExplicitProxy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Snat", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -140198,35 +138354,351 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Id", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", - "Name": "System.UInt64", - "AssemblyQualifiedName": "System.UInt64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Mode", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ThreatIntelMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Off", "Alert", - "Deny" + "Deny", + "Off" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ThreatIntelWhitelist", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BasePolicy", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DnsSetting", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SqlSetting", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IntrusionDetection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TransportSecurityName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TransportSecurityKeyVaultSecretId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SkuTier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Standard", + "Premium", + "Basic" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Identity", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExplicitProxy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Snat", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -140263,35 +138735,40 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyNatRule", - "Name": "New-AzFirewallPolicyNatRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand", + "NounName": "AzFirewallPolicyApplicationRule", + "Name": "New-AzFirewallPolicyApplicationRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "SourceAddressAndTargetFqdn", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Protocols": "System.Collections.Generic.List`1[System.String]", + "HttpHeadersToInsert": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader]", + "Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", + "TargetFqdns": "System.Collections.Generic.List`1[System.String]", + "FqdnTags": "System.Collections.Generic.List`1[System.String]", "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", - "DestinationAddresses": "System.Collections.Generic.List`1[System.String]", - "DestinationPorts": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", + "WebCategories": "System.Collections.Generic.List`1[System.String]", + "TargetUrls": "System.Collections.Generic.List`1[System.String]", + "TerminateTLS": "System.Nullable`1[System.Boolean]", + "HttpHeadersToInsertText": "System.String", + "TargetUrlsText": "System.String", + "WebCategoriesText": "System.String", + "FqdnTagsText": "System.String", "Description": "System.String", - "TranslatedAddress": "System.String", - "TranslatedFqdn": "System.String", - "TranslatedPort": "System.String", - "ProtocolsText": "System.String", - "SourceAddressesText": "System.String", "SourceIpGroupsText": "System.String", - "DestinationAddressesText": "System.String", - "DestinationPortsText": "System.String" + "SourceAddressesText": "System.String", + "ProtocolsText": "System.String", + "Name": "System.String", + "TargetFqdnsText": "System.String", + "RuleType": "System.String" }, "Methods": [ { @@ -140300,6 +138777,20 @@ { "Name": "protocolType", "Type": "System.String" + }, + { + "Name": "port", + "Type": "System.UInt32" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "AddCustomHttpHeaderToInsert", + "Parameters": [ + { + "Name": "httpHeader", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader" } ], "ReturnType": "System.Void" @@ -140378,7 +138869,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "DestinationAddress", + "Name": "TargetFqdn", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -140388,7 +138879,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "DestinationPort", + "Name": "FqdnTag", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -140398,41 +138889,43 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Protocol", + "Name": "WebCategory", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "TranslatedAddress", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, { - "Name": "TranslatedFqdn", + "Name": "TargetUrl", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, { - "Name": "TranslatedPort", + "Name": "TerminateTLS", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -140491,7 +138984,53 @@ }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "TerminateTLS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SourceAddressAndTargetFqdn", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SourceAddress", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -140507,7 +139046,7 @@ }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "TargetFqdn", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -140530,7 +139069,7 @@ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -140539,7 +139078,7 @@ }, { "ParameterMetadata": { - "Name": "TranslatedPort", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -140552,6 +139091,36 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TerminateTLS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -140581,7 +139150,7 @@ ] }, { - "Name": "SourceAddressAndTranslatedAddress", + "Name": "SourceAddressAndFqdnTag", "Parameters": [ { "ParameterMetadata": { @@ -140601,11 +139170,12 @@ }, { "ParameterMetadata": { - "Name": "TranslatedAddress", + "Name": "FqdnTag", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -140646,7 +139216,53 @@ }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "TerminateTLS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SourceAddressAndWebCategory", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SourceAddress", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -140662,7 +139278,7 @@ }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "WebCategory", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -140685,7 +139301,7 @@ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -140694,7 +139310,7 @@ }, { "ParameterMetadata": { - "Name": "TranslatedPort", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -140707,6 +139323,36 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TerminateTLS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -140736,7 +139382,7 @@ ] }, { - "Name": "SourceAddressAndTranslatedFqdn", + "Name": "SourceAddressAndTargetUrl", "Parameters": [ { "ParameterMetadata": { @@ -140756,11 +139402,28 @@ }, { "ParameterMetadata": { - "Name": "TranslatedFqdn", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetUrl", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -140801,7 +139464,53 @@ }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "TerminateTLS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SourceIpGroupAndTargetFqdn", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SourceIpGroup", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -140817,7 +139526,7 @@ }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "TargetFqdn", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -140840,7 +139549,7 @@ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -140849,7 +139558,7 @@ }, { "ParameterMetadata": { - "Name": "TranslatedPort", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -140862,6 +139571,36 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TerminateTLS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -140891,7 +139630,7 @@ ] }, { - "Name": "SourceIpGroupAndTranslatedAddress", + "Name": "SourceIpGroupAndFqdnTag", "Parameters": [ { "ParameterMetadata": { @@ -140911,11 +139650,12 @@ }, { "ParameterMetadata": { - "Name": "TranslatedAddress", + "Name": "FqdnTag", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -140956,46 +139696,60 @@ }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "TerminateTLS", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "SourceIpGroupAndWebCategory", + "Parameters": [ { "ParameterMetadata": { - "Name": "Protocol", + "Name": "SourceIpGroup", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -141004,11 +139758,12 @@ }, { "ParameterMetadata": { - "Name": "TranslatedPort", + "Name": "FqdnTag", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -141019,38 +139774,23 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "WebCategory", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SourceIpGroupAndTranslatedFqdn", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "SourceIpGroup", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -141066,7 +139806,7 @@ }, { "ParameterMetadata": { - "Name": "TranslatedFqdn", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -141081,7 +139821,7 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -141089,20 +139829,20 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "TerminateTLS", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -141111,7 +139851,38 @@ }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SourceIpGroupAndTargetUrl", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SourceIpGroup", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -141127,7 +139898,7 @@ }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -141143,14 +139914,14 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "TargetUrl", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -141159,7 +139930,7 @@ }, { "ParameterMetadata": { - "Name": "TranslatedPort", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -141172,6 +139943,36 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TerminateTLS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -141204,10 +140005,10 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyNatRuleCollection", - "Name": "New-AzFirewallPolicyNatRuleCollection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand", - "SupportsShouldProcess": false, + "NounName": "AzFirewallPolicyApplicationRuleCustomHttpHeader", + "Name": "New-AzFirewallPolicyApplicationRuleCustomHttpHeader", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzFirewallPolicyApplicationRuleCustomHttpHeaderCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -141215,49 +140016,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", - "ActionText": "System.String", - "RulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "Priority": "System.UInt32" + "HeaderName": "System.String", + "HeaderValue": "System.String" }, "Methods": [ - { - "Name": "AddRule", - "Parameters": [ - { - "Name": "rule", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetRuleByName", - "Parameters": [ - { - "Name": "ruleName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" - }, - { - "Name": "RemoveRuleByName", - "Parameters": [ - { - "Name": "ruleName", - "Type": "System.String" - } - ], - "ReturnType": "System.Void" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -141294,7 +140059,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "HeaderName", "Type": { "Namespace": "System", "Name": "System.String", @@ -141303,37 +140068,12 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Rule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ActionType", + "Name": "HeaderValue", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Dnat", - "Snat" - ], "ValidateNotNullOrEmpty": true }, { @@ -141363,7 +140103,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "HeaderName", "Type": { "Namespace": "System", "Name": "System.String", @@ -141378,15 +140118,13 @@ }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "HeaderValue", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -141395,35 +140133,160 @@ }, { "ParameterMetadata": { - "Name": "Rule", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzFirewallPolicyDnsSetting", + "Name": "New-AzFirewallPolicyDnsSetting", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallDnsSettingCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "EnableProxy", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Server", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "ActionType", + "Name": "EnableProxy", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Server", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "Dnat", - "Snat" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -141460,48 +140323,35 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyNetworkRule", - "Name": "New-AzFirewallPolicyNetworkRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand", - "SupportsShouldProcess": false, + "NounName": "AzFirewallPolicyDraft", + "Name": "New-AzFirewallPolicyDraft", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyDraftCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "SetByNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Protocols": "System.Collections.Generic.List`1[System.String]", - "SourceAddresses": "System.Collections.Generic.List`1[System.String]", - "DestinationAddresses": "System.Collections.Generic.List`1[System.String]", - "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", - "DestinationIpGroups": "System.Collections.Generic.List`1[System.String]", - "DestinationFqdns": "System.Collections.Generic.List`1[System.String]", - "DestinationPorts": "System.Collections.Generic.List`1[System.String]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", "Name": "System.String", - "Description": "System.String", - "ProtocolsText": "System.String", - "SourceAddressesText": "System.String", - "SourceIpGroupsText": "System.String", - "DestinationAddressesText": "System.String", - "DestinationIpGroupsText": "System.String", - "DestinationFqdnsText": "System.String", - "DestinationPortsText": "System.String" + "Etag": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" }, "Methods": [ - { - "Name": "AddProtocol", - "Parameters": [ - { - "Name": "protocolType", - "Type": "System.String" - } - ], - "ReturnType": "System.Void" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -141538,7 +140388,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "AzureFirewallPolicyName", "Type": { "Namespace": "System", "Name": "System.String", @@ -141547,7 +140397,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Description", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -141556,79 +140406,181 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "SourceAddress", + "Name": "FirewallPolicyObject", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "SourceIpGroup", + "Name": "ThreatIntelMode", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Alert", + "Deny", + "Off" + ], + "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationAddress", + "Name": "ThreatIntelWhitelist", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationIpGroup", + "Name": "BasePolicy", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationPort", + "Name": "DnsSetting", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationFqdn", + "Name": "SqlSetting", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Protocol", + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IntrusionDetection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateRange", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateSet": [ - "Any", - "TCP", - "UDP", - "ICMP" - ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ExplicitProxy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Snat", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } + }, "ValidateNotNullOrEmpty": false }, { @@ -141654,11 +140606,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "SetByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "AzureFirewallPolicyName", "Type": { "Namespace": "System", "Name": "System.String", @@ -141669,11 +140621,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -141681,35 +140633,42 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "ThreatIntelMode", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Alert", + "Deny", + "Off" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationIpGroup", + "Name": "ThreatIntelWhitelist", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + } }, "ValidateNotNullOrEmpty": false }, @@ -141720,75 +140679,47 @@ }, { "ParameterMetadata": { - "Name": "DestinationPort", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DestinationFqdn", + "Name": "BasePolicy", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "DnsSetting", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" + } }, - "ValidateSet": [ - "Any", - "TCP", - "UDP", - "ICMP" - ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "SqlSetting", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" } }, "ValidateNotNullOrEmpty": false @@ -141797,52 +140728,31 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SourceAddress", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SourceAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -141851,12 +140761,11 @@ }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -141867,12 +140776,16 @@ }, { "ParameterMetadata": { - "Name": "DestinationIpGroup", + "Name": "IntrusionDetection", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -141883,30 +140796,37 @@ }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "PrivateRange", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DestinationFqdn", + "Name": "ExplicitProxy", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -141915,22 +140835,19 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Snat", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } }, - "ValidateSet": [ - "Any", - "TCP", - "UDP", - "ICMP" - ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -141964,62 +140881,115 @@ ] }, { - "Name": "SourceIpGroup", + "Name": "SetByParentInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "SourceIpGroup", + "Name": "FirewallPolicyObject", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ThreatIntelMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Alert", + "Deny", + "Off" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ThreatIntelWhitelist", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "BasePolicy", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "DnsSetting", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" + } }, "ValidateNotNullOrEmpty": false }, @@ -142030,12 +141000,14 @@ }, { "ParameterMetadata": { - "Name": "DestinationIpGroup", + "Name": "SqlSetting", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + } }, "ValidateNotNullOrEmpty": false }, @@ -142046,30 +141018,28 @@ }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationFqdn", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -142078,43 +141048,30 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "Any", - "TCP", - "UDP", - "ICMP" - ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "IntrusionDetection", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -142123,231 +141080,59 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzFirewallPolicyRuleCollectionGroup", - "Name": "New-AzFirewallPolicyRuleCollectionGroup", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyRuleCollectionGroupCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "SetByNameParameterSet", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", - "Size": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "Priority": "System.UInt32" }, - "Methods": [ - { - "Name": "GetRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RuleCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FirewallPolicyObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FirewallPolicyName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "PrivateRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "ExplicitProxy", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" + } }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleCollection", + "Name": "Snat", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -142383,80 +141168,123 @@ ] }, { - "Name": "SetByNameParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ThreatIntelMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Alert", + "Deny", + "Off" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FirewallPolicyName", + "Name": "ThreatIntelWhitelist", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BasePolicy", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DnsSetting", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "SqlSetting", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + } }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleCollection", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -142465,22 +141293,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -142488,96 +141305,79 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByInputObjectParameterSet", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "FirewallPolicyObject", + "Name": "IntrusionDetection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PrivateRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "ExplicitProxy", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" + } }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleCollection", + "Name": "Snat", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -142616,38 +141416,28 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyRuleCollectionGroupDraft", - "Name": "New-AzFirewallPolicyRuleCollectionGroupDraft", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyRuleCollectionGroupDraftCommand", + "NounName": "AzFirewallPolicyExplicitProxy", + "Name": "New-AzFirewallPolicyExplicitProxy", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyExplicitProxyCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByNameParameterSet", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", - "Size": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "Priority": "System.UInt32" + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" }, "Methods": [ - { - "Name": "GetRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -142684,88 +141474,67 @@ ], "Parameters": [ { - "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Name": "EnableExplicitProxy", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "HttpPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "AzureFirewallPolicyName", + "Name": "HttpsPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "FirewallPolicyObject", + "Name": "EnablePacFile", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Priority", + "Name": "PacFilePort", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, { - "Name": "RuleCollection", + "Name": "PacFile", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -142794,47 +141563,14 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "AzureFirewallPolicyRuleCollectionGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Priority", + "Name": "EnableExplicitProxy", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuleCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -142842,22 +141578,14 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "HttpPort", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -142865,84 +141593,34 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByNameParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AzureFirewallPolicyName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AzureFirewallPolicyRuleCollectionGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "HttpsPort", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleCollection", + "Name": "EnablePacFile", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -142951,22 +141629,14 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "PacFilePort", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -142974,97 +141644,17 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByInputObjectParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "FirewallPolicyObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Name": "PacFile", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuleCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -143102,9 +141692,9 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicySnat", - "Name": "New-AzFirewallPolicySnat", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicySNATCommand", + "NounName": "AzFirewallPolicyFilterRuleCollection", + "Name": "New-AzFirewallPolicyFilterRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyFilterRuleCollectionCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -143113,16 +141703,26 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" + "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", + "Size": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "Priority": "System.UInt32" }, "Methods": [ { - "Name": "ValidatePrivateRange", - "ReturnType": "System.Void" + "Name": "GetRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, { "Name": "GetType", @@ -143160,24 +141760,48 @@ ], "Parameters": [ { - "Name": "PrivateRange", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AutoLearnPrivateRange", + "Name": "Priority", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, + { + "Name": "Rule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ActionType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Allow", + "Deny" + ], + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -143205,35 +141829,71 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AutoLearnPrivateRange", + "Name": "Priority", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Rule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "ActionType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Allow", + "Deny" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -143266,9 +141926,9 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicySqlSetting", - "Name": "New-AzFirewallPolicySqlSetting", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallSqlSettingCommand", + "NounName": "AzFirewallPolicyIntrusionDetection", + "Name": "New-AzFirewallPolicyIntrusionDetection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyIntrusionDetectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -143277,10 +141937,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" }, "Methods": [ { @@ -143319,11 +141981,55 @@ ], "Parameters": [ { - "Name": "AllowSqlRedirect", + "Name": "Mode", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Off", + "Alert", + "Deny" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Profile", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SignatureOverride", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BypassTraffic", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -143354,11 +142060,79 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "AllowSqlRedirect", + "Name": "Mode", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Off", + "Alert", + "Deny" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Profile", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SignatureOverride", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BypassTraffic", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -143399,10 +142173,10 @@ }, { "VerbName": "New", - "NounName": "AzFirewallPolicyThreatIntelWhitelist", - "Name": "New-AzFirewallPolicyThreatIntelWhitelist", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand", - "SupportsShouldProcess": false, + "NounName": "AzFirewallPolicyIntrusionDetectionBypassTraffic", + "Name": "New-AzFirewallPolicyIntrusionDetectionBypassTraffic", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyIntrusionDetectionBypassTrafficCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -143410,14 +142184,20 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" - }, - "Methods": [ - { + "SourceAddresses": "System.Collections.Generic.List`1[System.String]", + "DestinationAddresses": "System.Collections.Generic.List`1[System.String]", + "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", + "DestinationIpGroups": "System.Collections.Generic.List`1[System.String]", + "DestinationPorts": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "Description": "System.String", + "Protocol": "System.String" + }, + "Methods": [ + { "Name": "GetType", "ReturnType": "System.Type" }, @@ -143453,7 +142233,40 @@ ], "Parameters": [ { - "Name": "FQDN", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "TCP", + "UDP", + "ICMP", + "ANY" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SourceAddress", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -143463,7 +142276,27 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "IpAddress", + "Name": "DestinationAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SourceIpGroup", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationIpGroup", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -143472,6 +142305,16 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "DestinationPort", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -143499,28 +142342,26 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "FQDN", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpAddress", + "Name": "Description", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -143531,22 +142372,33 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "TCP", + "UDP", + "ICMP", + "ANY" ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SourceAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -143554,106 +142406,15 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzFirewallPublicIpAddress", - "Name": "New-AzFirewallPublicIpAddress", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Address": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Address", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Address", + "Name": "DestinationAddress", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -143664,22 +142425,12 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "SourceIpGroup", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -143687,114 +142438,10 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzFirewallThreatIntelWhitelist", - "Name": "New-AzFirewallThreatIntelWhitelist", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "FQDN", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "FQDN", + "Name": "DestinationIpGroup", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -143810,16 +142457,16 @@ }, { "ParameterMetadata": { - "Name": "IpAddress", + "Name": "DestinationPort", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -143852,30 +142499,26 @@ } ] } - ], - "AliasList": [ - "New-AzFirewallThreatIntelWhitelistObject" ] }, { "VerbName": "New", - "NounName": "AzGatewayCustomBgpIpConfigurationObject", - "Name": "New-AzGatewayCustomBgpIpConfigurationObject", - "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGatewayConnection.NewAzGatewayCustomBgpIpConfigurationObject", + "NounName": "AzFirewallPolicyIntrusionDetectionSignatureOverride", + "Name": "New-AzFirewallPolicyIntrusionDetectionSignatureOverride", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyIntrusionDetectionSignatureOverrideCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByName", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Id": "System.String", + "Mode": "System.String" }, "Methods": [ { @@ -143914,21 +142557,26 @@ ], "Parameters": [ { - "Name": "IpConfigurationId", + "Name": "Id", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt64", + "AssemblyQualifiedName": "System.UInt64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "CustomBgpIpAddress", + "Name": "Mode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Off", + "Alert", + "Deny" + ], "ValidateNotNullOrEmpty": true }, { @@ -143954,15 +142602,15 @@ ], "ParameterSets": [ { - "Name": "ByName", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "IpConfigurationId", + "Name": "Id", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt64", + "AssemblyQualifiedName": "System.UInt64, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -143973,12 +142621,17 @@ }, { "ParameterMetadata": { - "Name": "CustomBgpIpAddress", + "Name": "Mode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Off", + "Alert", + "Deny" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -144013,46 +142666,15 @@ "ValueFromPipelineByPropertyName": false } ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] } ] }, { "VerbName": "New", - "NounName": "AzIpAllocation", - "Name": "New-AzIpAllocation", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureIpAllocationCommand", - "SupportsShouldProcess": true, + "NounName": "AzFirewallPolicyNatRule", + "Name": "New-AzFirewallPolicyNatRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzFirewallPolicyNatRuleCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -144060,30 +142682,36 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AllocationTags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Tag": "System.Collections.Hashtable", - "PrefixLength": "System.Nullable`1[System.Int32]", - "IpAllocationType": "System.String", + "Protocols": "System.Collections.Generic.List`1[System.String]", + "SourceAddresses": "System.Collections.Generic.List`1[System.String]", + "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", + "DestinationAddresses": "System.Collections.Generic.List`1[System.String]", + "DestinationPorts": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "VirtualNetworkText": "System.String", - "Etag": "System.String", - "SubnetText": "System.String", - "IpamAllocationId": "System.String", - "PrefixType": "System.String", - "Prefix": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" + "Description": "System.String", + "TranslatedAddress": "System.String", + "TranslatedFqdn": "System.String", + "TranslatedPort": "System.String", + "ProtocolsText": "System.String", + "SourceAddressesText": "System.String", + "SourceIpGroupsText": "System.String", + "DestinationAddressesText": "System.String", + "DestinationPortsText": "System.String" }, "Methods": [ + { + "Name": "AddProtocol", + "Parameters": [ + { + "Name": "protocolType", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -144121,9 +142749,6 @@ "Parameters": [ { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -144132,7 +142757,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -144141,105 +142766,81 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "SourceAddress", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, { - "Name": "IpAllocationType", + "Name": "SourceIpGroup", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "Hypernet", - "Undefined" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "Prefix", + "Name": "DestinationAddress", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "PrefixLength", + "Name": "DestinationPort", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "PrefixType", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "IPV4", - "IPV6" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "IpamAllocationId", + "Name": "TranslatedAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpAllocationTag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Force", + "Name": "TranslatedFqdn", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AsJob", + "Name": "TranslatedPort", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -144269,9 +142870,6 @@ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -144282,11 +142880,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -144294,168 +142892,225 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "DestinationAddress", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpAllocationType", + "Name": "DestinationPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "Hypernet", - "Undefined" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Prefix", + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TranslatedPort", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SourceAddressAndTranslatedAddress", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SourceAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrefixLength", + "Name": "TranslatedAddress", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrefixType", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPV4", - "IPV6" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpamAllocationId", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpAllocationTag", + "Name": "DestinationAddress", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DestinationPort", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Protocol", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "TranslatedPort", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -144487,114 +143142,59 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzIpConfigurationBgpPeeringAddressObject", - "Name": "New-AzIpConfigurationBgpPeeringAddressObject", - "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.NewAzIpConfigurationBgpPeeringAddressObjectCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByName", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + "Name": "SourceAddressAndTranslatedFqdn", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SourceAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TranslatedFqdn", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "IpConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "CustomAddress", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ByName", - "Parameters": [ + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "IpConfigurationId", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -144602,6 +143202,22 @@ }, "ValidateNotNullOrEmpty": true }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DestinationAddress", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, @@ -144609,14 +143225,28 @@ }, { "ParameterMetadata": { - "Name": "CustomAddress", + "Name": "DestinationPort", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -144625,6 +143255,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "TranslatedPort", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -144654,201 +143299,27 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SourceIpGroupAndTranslatedAddress", "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "SourceIpGroup", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzIpGroup", - "Name": "New-AzIpGroup", - "ClassName": "Microsoft.Azure.Commands.Network.NewIpGroupsCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "Default", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "IpAddresses": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "IpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "TranslatedAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -144859,11 +143330,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -144874,16 +143345,15 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpAddress", + "Name": "Description", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -144894,60 +143364,63 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "DestinationAddress", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DestinationPort", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Protocol", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "TranslatedPort", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -144979,275 +143452,49 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzIpsecPolicy", - "Name": "New-AzIpsecPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "SALifeTimeSeconds", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 300, - "ValidateRangeMax": 172799, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SADataSizeKilobytes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 0, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpsecEncryption", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "DES", - "DES3", - "AES128", - "AES192", - "AES256", - "GCMAES128", - "GCMAES192", - "GCMAES256" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "IpsecIntegrity", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "MD5", - "SHA1", - "SHA256", - "GCMAES128", - "GCMAES192", - "GCMAES256" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "IkeEncryption", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "DES", - "DES3", - "AES128", - "AES192", - "AES256" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "IkeIntegrity", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "MD5", - "SHA1", - "SHA256", - "SHA384" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DhGroup", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "DHGroup1", - "DHGroup14", - "DHGroup2", - "DHGroup2048", - "DHGroup24", - "ECP256", - "ECP384" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PfsGroup", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "PFS1", - "PFS2", - "PFS2048", - "PFS24", - "ECP256", - "ECP384" - ], - "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SourceIpGroupAndTranslatedFqdn", "Parameters": [ { "ParameterMetadata": { - "Name": "SALifeTimeSeconds", + "Name": "SourceIpGroup", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateRangeMin": 300, - "ValidateRangeMax": 172799, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SADataSizeKilobytes", + "Name": "TranslatedFqdn", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 0, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpsecEncryption", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "None", - "DES", - "DES3", - "AES128", - "AES192", - "AES256", - "GCMAES128", - "GCMAES192", - "GCMAES256" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -145257,42 +143504,28 @@ }, { "ParameterMetadata": { - "Name": "IpsecIntegrity", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "MD5", - "SHA1", - "SHA256", - "GCMAES128", - "GCMAES192", - "GCMAES256" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IkeEncryption", + "Name": "DestinationAddress", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "DES", - "DES3", - "AES128", - "AES192", - "AES256" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -145302,18 +143535,13 @@ }, { "ParameterMetadata": { - "Name": "IkeIntegrity", + "Name": "DestinationPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "MD5", - "SHA1", - "SHA256", - "SHA384" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -145323,23 +143551,14 @@ }, { "ParameterMetadata": { - "Name": "DhGroup", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "None", - "DHGroup1", - "DHGroup14", - "DHGroup2", - "DHGroup2048", - "DHGroup24", - "ECP256", - "ECP384" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -145348,21 +143567,12 @@ }, { "ParameterMetadata": { - "Name": "PfsGroup", + "Name": "TranslatedPort", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "None", - "PFS1", - "PFS2", - "PFS2048", - "PFS24", - "ECP256", - "ECP384" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -145402,24 +143612,60 @@ }, { "VerbName": "New", - "NounName": "AzIpsecTrafficSelectorPolicy", - "Name": "New-AzIpsecTrafficSelectorPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmTrafficSelectorPolicyCommand", - "SupportsShouldProcess": true, + "NounName": "AzFirewallPolicyNatRuleCollection", + "Name": "New-AzFirewallPolicyNatRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNatRuleCollectionCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByName", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalAddressRanges": "System.String[]", - "RemoteAddressRanges": "System.String[]" + "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", + "ActionText": "System.String", + "RulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "Priority": "System.UInt32" }, "Methods": [ + { + "Name": "AddRule", + "Parameters": [ + { + "Name": "rule", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "GetRuleByName", + "Parameters": [ + { + "Name": "ruleName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" + }, + { + "Name": "RemoveRuleByName", + "Parameters": [ + { + "Name": "ruleName", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -145456,23 +143702,46 @@ ], "Parameters": [ { - "Name": "LocalAddressRange", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "RemoteAddressRange", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Rule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ActionType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Dnat", + "Snat" + ], "ValidateNotNullOrEmpty": true }, { @@ -145502,35 +143771,70 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "LocalAddressRange", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RemoteAddressRange", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Rule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ActionType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Dnat", + "Snat" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -145564,10 +143868,10 @@ }, { "VerbName": "New", - "NounName": "AzLoadBalancer", - "Name": "New-AzLoadBalancer", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancer", - "SupportsShouldProcess": true, + "NounName": "AzFirewallPolicyNetworkRule", + "Name": "New-AzFirewallPolicyNetworkRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyNetworkRuleCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -145575,39 +143879,37 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", + "Protocols": "System.Collections.Generic.List`1[System.String]", + "SourceAddresses": "System.Collections.Generic.List`1[System.String]", + "DestinationAddresses": "System.Collections.Generic.List`1[System.String]", + "SourceIpGroups": "System.Collections.Generic.List`1[System.String]", + "DestinationIpGroups": "System.Collections.Generic.List`1[System.String]", + "DestinationFqdns": "System.Collections.Generic.List`1[System.String]", + "DestinationPorts": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" + "Description": "System.String", + "ProtocolsText": "System.String", + "SourceAddressesText": "System.String", + "SourceIpGroupsText": "System.String", + "DestinationAddressesText": "System.String", + "DestinationIpGroupsText": "System.String", + "DestinationFqdnsText": "System.String", + "DestinationPortsText": "System.String" }, "Methods": [ + { + "Name": "AddProtocol", + "Parameters": [ + { + "Name": "protocolType", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -145644,7 +143946,7 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -145653,10 +143955,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -145665,136 +143964,79 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "SourceAddress", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Sku", + "Name": "SourceIpGroup", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Tier", + "Name": "DestinationAddress", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FrontendIpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LoadBalancingRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Probe", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InboundNatRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InboundNatPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "OutboundRule", + "Name": "DestinationIpGroup", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EdgeZone", + "Name": "DestinationPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Force", + "Name": "DestinationFqdn", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AsJob", + "Name": "Protocol", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, + "ValidateSet": [ + "Any", + "TCP", + "UDP", + "ICMP" + ], "ValidateNotNullOrEmpty": false }, { @@ -145824,7 +144066,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -145835,14 +144077,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -145850,205 +144089,345 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "DestinationAddress", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DestinationIpGroup", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "DestinationPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tier", + "Name": "DestinationFqdn", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FrontendIpConfiguration", + "Name": "Protocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, + "ValidateSet": [ + "Any", + "TCP", + "UDP", + "ICMP" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendAddressPool", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SourceAddress", + "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancingRule", + "Name": "SourceAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Probe", + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InboundNatRule", + "Name": "Description", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InboundNatPool", + "Name": "DestinationAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "OutboundRule", + "Name": "DestinationIpGroup", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EdgeZone", + "Name": "DestinationPort", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DestinationFqdn", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "Any", + "TCP", + "UDP", + "ICMP" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SourceIpGroup", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SourceIpGroup", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "DestinationAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -146059,11 +144438,12 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DestinationIpGroup", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -146072,6 +144452,60 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DestinationPort", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DestinationFqdn", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "Any", + "TCP", + "UDP", + "ICMP" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -146104,37 +144538,38 @@ }, { "VerbName": "New", - "NounName": "AzLoadBalancerBackendAddressConfig", - "Name": "New-AzLoadBalancerBackendAddressConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddress", + "NounName": "AzFirewallPolicyRuleCollectionGroup", + "Name": "New-AzFirewallPolicyRuleCollectionGroup", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyRuleCollectionGroupCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByIpAndSubnet", + "DefaultParameterSetName": "SetByNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkInterfaceIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "LoadBalancerFrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundNatRulesPortMapping": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping]", - "IpAddress": "System.String", - "AdminState": "System.String", - "NetworkInterfaceIpConfigurationIdText": "System.String", - "LoadBalancerFrontendIPConfigurationIdText": "System.String", - "VirtualNetworkIdText": "System.String", - "SubnetIdText": "System.String", - "InboundNatRulesPortMappingText": "System.String", + "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", + "Size": "System.String", "Name": "System.String", "Etag": "System.String", - "Id": "System.String" + "Id": "System.String", + "Priority": "System.UInt32" }, "Methods": [ + { + "Name": "GetRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -146171,7 +144606,7 @@ ], "Parameters": [ { - "Name": "IpAddress", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -146180,25 +144615,28 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, + "ValidateNotNullOrEmpty": false }, { - "Name": "VirtualNetworkId", + "Name": "RuleCollection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, "ValidateNotNullOrEmpty": true }, { - "Name": "SubnetId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -146207,22 +144645,49 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "LoadBalancerFrontendIPConfigurationId", + "Name": "FirewallPolicyObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "AdminState", + "Name": "FirewallPolicyName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -146247,11 +144712,11 @@ ], "ParameterSets": [ { - "Name": "SetByIpAndVnet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "IpAddress", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -146262,52 +144727,40 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkId", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "RuleCollection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AdminState", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -146338,11 +144791,11 @@ ] }, { - "Name": "SetByIpAndSubnet", + "Name": "SetByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "IpAddress", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -146357,7 +144810,7 @@ }, { "ParameterMetadata": { - "Name": "SubnetId", + "Name": "FirewallPolicyName", "Type": { "Namespace": "System", "Name": "System.String", @@ -146383,83 +144836,40 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AdminState", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AdminState", + "Name": "RuleCollection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -146490,15 +144900,42 @@ ] }, { - "Name": "SetByResourceFrontendIPConfiguration", + "Name": "SetByInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancerFrontendIPConfigurationId", + "Name": "FirewallPolicyObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } }, "ValidateNotNullOrEmpty": true }, @@ -146520,22 +144957,40 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AdminState", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -146569,59 +145024,37 @@ }, { "VerbName": "New", - "NounName": "AzLoadBalancerBackendAddressPool", - "Name": "New-AzLoadBalancerBackendAddressPool", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendPool", + "NounName": "AzFirewallPolicyRuleCollectionGroupDraft", + "Name": "New-AzFirewallPolicyRuleCollectionGroupDraft", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyRuleCollectionGroupDraftCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "CreateByNameParameterSet", + "DefaultParameterSetName": "SetByNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", + "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", + "Size": "System.String", "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" + "Id": "System.String", + "Priority": "System.UInt32" }, "Methods": [ { - "Name": "ShouldSerializeTunnelInterfaces", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeBackendIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeLoadBalancingRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeSyncMode", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeVirtualNetwork", - "ReturnType": "System.Boolean" + "Name": "GetRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, { "Name": "GetType", @@ -146658,6 +145091,15 @@ } ], "Parameters": [ + { + "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "ResourceGroupName", "Type": { @@ -146668,7 +145110,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "LoadBalancerName", + "Name": "AzureFirewallPolicyName", "Type": { "Namespace": "System", "Name": "System.String", @@ -146677,88 +145119,59 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "LoadBalancer", + "Name": "FirewallPolicyObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" } }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": true }, { - "Name": "TunnelInterface", + "Name": "Priority", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, { - "Name": "LoadBalancerBackendAddress", + "Name": "RuleCollection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SyncMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualNetworkId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, "ValidateNotNullOrEmpty": true }, @@ -146785,26 +145198,11 @@ ], "ParameterSets": [ { - "Name": "CreateByNameParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "LoadBalancerName", + "Name": "AzureFirewallPolicyRuleCollectionGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -146819,73 +145217,29 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TunnelInterface", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LoadBalancerBackendAddress", + "Name": "RuleCollection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SyncMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualNetworkId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, "ValidateNotNullOrEmpty": true }, @@ -146923,56 +145277,11 @@ ] }, { - "Name": "CreateByParentObjectParameterSet", + "Name": "SetByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -146983,62 +145292,63 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TunnelInterface", + "Name": "AzureFirewallPolicyName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LoadBalancerBackendAddress", + "Name": "AzureFirewallPolicyRuleCollectionGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SyncMode", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkId", + "Name": "RuleCollection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, "ValidateNotNullOrEmpty": true }, @@ -147076,77 +145386,90 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "FirewallPolicyObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TunnelInterface", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LoadBalancerBackendAddress", + "Name": "AzureFirewallPolicyRuleCollectionGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SyncMode", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkId", + "Name": "RuleCollection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, "ValidateNotNullOrEmpty": true }, @@ -147187,10 +145510,10 @@ }, { "VerbName": "New", - "NounName": "AzLoadBalancerBackendAddressPoolConfig", - "Name": "New-AzLoadBalancerBackendAddressPoolConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerBackendAddressPoolConfigCommand", - "SupportsShouldProcess": true, + "NounName": "AzFirewallPolicySnat", + "Name": "New-AzFirewallPolicySnat", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicySNATCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -147198,48 +145521,16 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" }, "Methods": [ { - "Name": "ShouldSerializeTunnelInterfaces", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeBackendIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeLoadBalancingRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeSyncMode", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeVirtualNetwork", - "ReturnType": "System.Boolean" + "Name": "ValidatePrivateRange", + "ReturnType": "System.Void" }, { "Name": "GetType", @@ -147277,21 +145568,21 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "PrivateRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "TunnelInterface", + "Name": "AutoLearnPrivateRange", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -147322,27 +145613,27 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "PrivateRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TunnelInterface", + "Name": "AutoLearnPrivateRange", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -147383,9 +145674,9 @@ }, { "VerbName": "New", - "NounName": "AzLoadBalancerBackendAddressPoolTunnelInterfaceConfig", - "Name": "New-AzLoadBalancerBackendAddressPoolTunnelInterfaceConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerBackendAddressPoolTunnelInterfaceConfigCommand", + "NounName": "AzFirewallPolicySqlSetting", + "Name": "New-AzFirewallPolicySqlSetting", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallSqlSettingCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -147394,13 +145685,10 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Port": "System.Int32", - "Identifier": "System.Int32", - "Protocol": "System.String", - "Type": "System.String" + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" }, "Methods": [ { @@ -147439,38 +145727,156 @@ ], "Parameters": [ { - "Name": "Protocol", + "Name": "AllowSqlRedirect", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Type", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Identifier", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AllowSqlRedirect", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzFirewallPolicyThreatIntelWhitelist", + "Name": "New-AzFirewallPolicyThreatIntelWhitelist", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPolicyThreatIntelWhitelistCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "FQDN", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Port", + "Name": "IpAddress", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -147501,60 +145907,165 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Protocol", + "Name": "FQDN", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Type", + "Name": "IpAddress", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Identifier", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzFirewallPublicIpAddress", + "Name": "New-AzFirewallPublicIpAddress", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallPublicIpAddress", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Address": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Port", + "Name": "Address", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -147591,71 +146102,24 @@ }, { "VerbName": "New", - "NounName": "AzLoadBalancerFrontendIpConfig", - "Name": "New-AzLoadBalancerFrontendIpConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerFrontendIpConfigCommand", - "SupportsShouldProcess": true, + "NounName": "AzFirewallThreatIntelWhitelist", + "Name": "New-AzFirewallThreatIntelWhitelist", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureFirewallThreatIntelWhitelistCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResourceSubnet", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", - "Id": "System.String" + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" }, "Methods": [ - { - "Name": "ShouldSerializeInboundNatRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeInboundNatPools", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeOutboundRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeLoadBalancingRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeZones", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeGatewayLoadBalancer", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -147692,38 +146156,7 @@ ], "Parameters": [ { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateIpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateIpAddressVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Zone", + "Name": "FQDN", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -147733,146 +146166,12 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "SubnetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PublicIpAddressId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PublicIpAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PublicIpAddressPrefixId", + "Name": "IpAddress", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PublicIpAddressPrefix", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", - "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "CustomIpPrefixText": "System.String", - "IpTagsText": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "IPPrefix": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "SkuText": "System.String", - "Id": "System.String", - "PrefixLength": "System.UInt16" - } + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -147903,22 +146202,23 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "FQDN", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "IpAddress", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -147930,7 +146230,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -147959,101 +146259,135 @@ "ValueFromPipelineByPropertyName": false } ] + } + ], + "AliasList": [ + "New-AzFirewallThreatIntelWhitelistObject" + ] + }, + { + "VerbName": "New", + "NounName": "AzGatewayCustomBgpIpConfigurationObject", + "Name": "New-AzGatewayCustomBgpIpConfigurationObject", + "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGatewayConnection.NewAzGatewayCustomBgpIpConfigurationObject", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByName", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "IpConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "SetByResourceSubnet", + "Name": "CustomBgpIpAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateIpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", + "Name": "IpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "CustomBgpIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -148062,20 +146396,35 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "DefaultProfile", @@ -148103,53 +146452,270 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzIpAllocation", + "Name": "New-AzIpAllocation", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureIpAllocationCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AllocationTags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Tag": "System.Collections.Hashtable", + "PrefixLength": "System.Nullable`1[System.Int32]", + "IpAllocationType": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "VirtualNetworkText": "System.String", + "Etag": "System.String", + "SubnetText": "System.String", + "IpamAllocationId": "System.String", + "PrefixType": "System.String", + "Prefix": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "SetByResourceIdSubnet", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IpAllocationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Hypernet", + "Undefined" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Prefix", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrefixLength", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrefixType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPV4", + "IPV6" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpamAllocationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpAllocationTag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SubnetId", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -148158,27 +146724,30 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "IpAllocationType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Hypernet", + "Undefined" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "Prefix", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -148189,53 +146758,44 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "PrefixLength", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceIdPublicIpAddress", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "PublicIpAddressId", + "Name": "PrefixType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPV4", + "IPV6" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "IpamAllocationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -148243,19 +146803,18 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "IpAllocationTag", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -148266,111 +146825,48 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourcePublicIpAddress", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "PublicIpAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -148399,32 +146895,136 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzIpConfigurationBgpPeeringAddressObject", + "Name": "New-AzIpConfigurationBgpPeeringAddressObject", + "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.NewAzIpConfigurationBgpPeeringAddressObjectCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByName", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "IpConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "SetByResourceIdPublicIpAddressPrefix", + "Name": "CustomAddress", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { - "Name": "PublicIpAddressPrefixId", + "Name": "IpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "CustomAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] }, "ValidateNotNullOrEmpty": false }, @@ -148433,22 +147033,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -148478,80 +147062,8 @@ ] }, { - "Name": "SetByResourcePublicIpAddressPrefix", + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "PublicIpAddressPrefix", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", - "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "CustomIpPrefixText": "System.String", - "IpTagsText": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "IPPrefix": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "SkuText": "System.String", - "Id": "System.String", - "PrefixLength": "System.UInt16" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -148584,47 +147096,34 @@ }, { "VerbName": "New", - "NounName": "AzLoadBalancerInboundNatPoolConfig", - "Name": "New-AzLoadBalancerInboundNatPoolConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerInboundNatPoolConfigCommand", + "NounName": "AzIpGroup", + "Name": "New-AzIpGroup", + "ClassName": "Microsoft.Azure.Commands.Network.NewIpGroupsCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "Default", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPortRangeStart": "System.Int32", - "FrontendPortRangeEnd": "System.Int32", - "BackendPort": "System.Int32", - "EnableFloatingIP": "System.Nullable`1[System.Boolean]", - "EnableTcpReset": "System.Nullable`1[System.Boolean]", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Protocol": "System.String", + "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "IpAddresses": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", - "FrontendIPConfigurationText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeFrontendPortRangeStart", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeFrontendPortRangeEnd", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeBackendPort", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -148662,60 +147161,55 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Protocol", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FrontendPortRangeStart", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "FrontendPortRangeEnd", + "Name": "IpAddress", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "BackendPort", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "IdleTimeoutInMinutes", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableFloatingIP", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -148724,7 +147218,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "EnableTcpReset", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -148732,51 +147226,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "FrontendIpConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FrontendIpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -148805,42 +147254,30 @@ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPortRangeStart", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -148849,28 +147286,29 @@ }, { "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", + "Name": "IpAddress", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendPort", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -148879,11 +147317,11 @@ }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -148894,7 +147332,7 @@ }, { "ParameterMetadata": { - "Name": "EnableFloatingIP", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -148909,7 +147347,7 @@ }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -148949,141 +147387,393 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzIpsecPolicy", + "Name": "New-AzIpsecPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmIpsecPolicyCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "SALifeTimeSeconds", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 300, + "ValidateRangeMax": 172799, + "ValidateNotNullOrEmpty": false }, { - "Name": "SetByResourceId", + "Name": "SADataSizeKilobytes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 0, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpsecEncryption", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "DES", + "DES3", + "AES128", + "AES192", + "AES256", + "GCMAES128", + "GCMAES192", + "GCMAES256" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IpsecIntegrity", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "MD5", + "SHA1", + "SHA256", + "GCMAES128", + "GCMAES192", + "GCMAES256" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IkeEncryption", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "DES", + "DES3", + "AES128", + "AES192", + "AES256" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IkeIntegrity", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "MD5", + "SHA1", + "SHA256", + "SHA384" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DhGroup", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "DHGroup1", + "DHGroup14", + "DHGroup2", + "DHGroup2048", + "DHGroup24", + "ECP256", + "ECP384" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PfsGroup", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "PFS1", + "PFS2", + "PFS2048", + "PFS24", + "ECP256", + "ECP384" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "FrontendIpConfigurationId", + "Name": "SALifeTimeSeconds", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 300, + "ValidateRangeMax": 172799, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "SADataSizeKilobytes", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 0, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "IpsecEncryption", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "None", + "DES", + "DES3", + "AES128", + "AES192", + "AES256", + "GCMAES128", + "GCMAES192", + "GCMAES256" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FrontendPortRangeStart", + "Name": "IpsecIntegrity", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "MD5", + "SHA1", + "SHA256", + "GCMAES128", + "GCMAES192", + "GCMAES256" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", + "Name": "IkeEncryption", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "DES", + "DES3", + "AES128", + "AES192", + "AES256" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendPort", + "Name": "IkeIntegrity", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "MD5", + "SHA1", + "SHA256", + "SHA384" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "DhGroup", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EnableFloatingIP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "None", + "DHGroup1", + "DHGroup14", + "DHGroup2", + "DHGroup2048", + "DHGroup24", + "ECP256", + "ECP384" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "PfsGroup", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "None", + "PFS1", + "PFS2", + "PFS2048", + "PFS24", + "ECP256", + "ECP384" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -149115,172 +147805,141 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzIpsecTrafficSelectorPolicy", + "Name": "New-AzIpsecTrafficSelectorPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmTrafficSelectorPolicyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByName", + "OutputTypes": [ { - "Name": "SetByResource", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "FrontendIpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", - "Id": "System.String" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LocalAddressRanges": "System.String[]", + "RemoteAddressRanges": "System.String[]" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "LocalAddressRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RemoteAddressRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "LocalAddressRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "RemoteAddressRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "FrontendPortRangeStart", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EnableFloatingIP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableTcpReset", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -149313,48 +147972,50 @@ }, { "VerbName": "New", - "NounName": "AzLoadBalancerInboundNatRuleConfig", - "Name": "New-AzLoadBalancerInboundNatRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerInboundNatRuleConfigCommand", + "NounName": "AzLoadBalancer", + "Name": "New-AzLoadBalancer", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancer", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "System.Int32", - "BackendPort": "System.Int32", - "EnableFloatingIP": "System.Nullable`1[System.Boolean]", - "EnableTcpReset": "System.Nullable`1[System.Boolean]", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "FrontendPortRangeStart": "System.Nullable`1[System.Int32]", - "FrontendPortRangeEnd": "System.Nullable`1[System.Int32]", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", - "BackendAddressPoolText": "System.String", - "BackendIPConfigurationText": "System.String", - "Protocol": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "FrontendIPConfigurationText": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", "Id": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeFrontendPort", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeBackendPort", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -149390,140 +148051,135 @@ } ], "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Protocol", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": false }, { - "Name": "FrontendPort", + "Name": "Sku", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "BackendPort", + "Name": "Tier", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "IdleTimeoutInMinutes", + "Name": "FrontendIpConfiguration", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableFloatingIP", + "Name": "BackendAddressPool", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableTcpReset", + "Name": "LoadBalancingRule", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule" }, "ValidateNotNullOrEmpty": false }, { - "Name": "FrontendIpConfigurationId", + "Name": "Probe", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe" }, "ValidateNotNullOrEmpty": false }, { - "Name": "FrontendIpConfiguration", + "Name": "InboundNatRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" }, "ValidateNotNullOrEmpty": false }, { - "Name": "FrontendPortRangeStart", + "Name": "InboundNatPool", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool" }, "ValidateNotNullOrEmpty": false }, { - "Name": "FrontendPortRangeEnd", + "Name": "OutboundRule", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule" }, "ValidateNotNullOrEmpty": false }, { - "Name": "BackendAddressPoolId", + "Name": "EdgeZone", "Type": { "Namespace": "System", "Name": "System.String", @@ -149532,31 +148188,20 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "BackendAddressPool", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -149587,243 +148232,59 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EnableFloatingIP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableTcpReset", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FrontendPortRangeStart", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "Name", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "ResourceName" ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "FrontendIpConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FrontendPort", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -149834,11 +148295,11 @@ }, { "ParameterMetadata": { - "Name": "BackendPort", + "Name": "Sku", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -149849,11 +148310,11 @@ }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "Tier", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -149864,44 +148325,12 @@ }, { "ParameterMetadata": { - "Name": "EnableFloatingIP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableTcpReset", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FrontendPortRangeStart", + "Name": "FrontendIpConfiguration", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration" }, "ValidateNotNullOrEmpty": false }, @@ -149912,14 +148341,12 @@ }, { "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", + "Name": "BackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" }, "ValidateNotNullOrEmpty": false }, @@ -149930,69 +148357,12 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResource", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "FrontendIpConfiguration", + "Name": "LoadBalancingRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule" }, "ValidateNotNullOrEmpty": false }, @@ -150003,31 +148373,12 @@ }, { "ParameterMetadata": { - "Name": "BackendAddressPool", + "Name": "Probe", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSProbe" }, "ValidateNotNullOrEmpty": false }, @@ -150038,26 +148389,12 @@ }, { "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Protocol", + "Name": "InboundNatRule", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" }, "ValidateNotNullOrEmpty": false }, @@ -150068,11 +148405,12 @@ }, { "ParameterMetadata": { - "Name": "FrontendPort", + "Name": "InboundNatPool", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool" }, "ValidateNotNullOrEmpty": false }, @@ -150083,11 +148421,12 @@ }, { "ParameterMetadata": { - "Name": "BackendPort", + "Name": "OutboundRule", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule" }, "ValidateNotNullOrEmpty": false }, @@ -150098,11 +148437,11 @@ }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "EdgeZone", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -150113,7 +148452,7 @@ }, { "ParameterMetadata": { - "Name": "EnableFloatingIP", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -150128,7 +148467,7 @@ }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -150141,42 +148480,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "FrontendPortRangeStart", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -150209,38 +148512,37 @@ }, { "VerbName": "New", - "NounName": "AzLoadBalancerOutboundRuleConfig", - "Name": "New-AzLoadBalancerOutboundRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerOutboundRuleConfigCommand", + "NounName": "AzLoadBalancerBackendAddressConfig", + "Name": "New-AzLoadBalancerBackendAddressConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendAddress", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "SetByIpAndSubnet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "EnableTcpReset": "System.Nullable`1[System.Boolean]", - "AllocatedOutboundPorts": "System.Nullable`1[System.Int32]", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Protocol": "System.String", - "FrontendIpConfigurationsText": "System.String", - "BackendAddressPoolText": "System.String", + "NetworkInterfaceIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "LoadBalancerFrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundNatRulesPortMapping": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping]", + "IpAddress": "System.String", + "AdminState": "System.String", + "NetworkInterfaceIpConfigurationIdText": "System.String", + "LoadBalancerFrontendIPConfigurationIdText": "System.String", + "VirtualNetworkIdText": "System.String", + "SubnetIdText": "System.String", + "InboundNatRulesPortMappingText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeFrontendIpConfigurations", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -150277,95 +148579,56 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "IpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AllocatedOutboundPort", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Protocol", + "Name": "VirtualNetworkId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableTcpReset", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "IdleTimeoutInMinutes", + "Name": "SubnetId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FrontendIpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "BackendAddressPoolId", + "Name": "LoadBalancerFrontendIPConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "BackendAddressPool", + "Name": "AdminState", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -150392,47 +148655,47 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "SetByIpAndVnet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "IpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AllocatedOutboundPort", + "Name": "VirtualNetworkId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -150441,26 +148704,11 @@ }, { "ParameterMetadata": { - "Name": "EnableTcpReset", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "AdminState", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -150469,22 +148717,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "FrontendIpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -150514,17 +148746,17 @@ ] }, { - "Name": "SetByResourceId", + "Name": "SetByIpAndSubnet", "Parameters": [ { "ParameterMetadata": { - "Name": "BackendAddressPoolId", + "Name": "IpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -150533,37 +148765,37 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "SubnetId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AllocatedOutboundPort", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "AdminState", "Type": { "Namespace": "System", "Name": "System.String", @@ -150571,18 +148803,29 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -150590,34 +148833,38 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FrontendIpConfiguration", + "Name": "AdminState", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -150651,37 +148898,17 @@ ] }, { - "Name": "SetByResource", + "Name": "SetByResourceFrontendIPConfiguration", "Parameters": [ { "ParameterMetadata": { - "Name": "BackendAddressPool", + "Name": "LoadBalancerFrontendIPConfigurationId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -150696,31 +148923,16 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AllocatedOutboundPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Protocol", + "Name": "AdminState", "Type": { "Namespace": "System", "Name": "System.String", @@ -150728,57 +148940,11 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EnableTcpReset", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "FrontendIpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -150811,53 +148977,58 @@ }, { "VerbName": "New", - "NounName": "AzLoadBalancerProbeConfig", - "Name": "New-AzLoadBalancerProbeConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerProbeConfigCommand", + "NounName": "AzLoadBalancerBackendAddressPool", + "Name": "New-AzLoadBalancerBackendAddressPool", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureLoadBalancerBackendPool", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "CreateByNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "IntervalInSeconds": "System.Int32", - "NumberOfProbes": "System.Int32", - "ProbeThreshold": "System.Nullable`1[System.Int32]", - "Protocol": "System.String", - "RequestPath": "System.String", - "NoHealthyBackendsBehavior": "System.String", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", "ProvisioningState": "System.String", - "LoadBalancingRulesText": "System.String", "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", "Id": "System.String" }, "Methods": [ { - "Name": "ShouldSerializePort", + "Name": "ShouldSerializeTunnelInterfaces", "ReturnType": "System.Boolean" }, { - "Name": "ShouldSerializeIntervalInSeconds", + "Name": "ShouldSerializeBackendIpConfigurations", "ReturnType": "System.Boolean" }, { - "Name": "ShouldSerializeNumberOfProbes", + "Name": "ShouldSerializeLoadBalancingRules", "ReturnType": "System.Boolean" }, { - "Name": "ShouldSerializeProbeThreshold", + "Name": "ShouldSerializeSyncMode", "ReturnType": "System.Boolean" }, { - "Name": "ShouldSerializeLoadBalancingRules", + "Name": "ShouldSerializeVirtualNetwork", "ReturnType": "System.Boolean" }, { @@ -150896,79 +149067,108 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Protocol", + "Name": "LoadBalancerName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Port", + "Name": "LoadBalancer", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "IntervalInSeconds", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ProbeCount", + "Name": "TunnelInterface", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProbeThreshold", + "Name": "LoadBalancerBackendAddress", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "RequestPath", + "Name": "SyncMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "NoHealthyBackendsBehavior", + "Name": "VirtualNetworkId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -150993,17 +149193,17 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "CreateByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -151012,111 +149212,356 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "LoadBalancerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TunnelInterface", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Port", + "Name": "LoadBalancerBackendAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SyncMode", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IntervalInSeconds", + "Name": "VirtualNetworkId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "CreateByParentObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ProbeCount", + "Name": "TunnelInterface", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LoadBalancerBackendAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SyncMode", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualNetworkId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ProbeThreshold", + "Name": "TunnelInterface", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RequestPath", + "Name": "LoadBalancerBackendAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SyncMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NoHealthyBackendsBehavior", + "Name": "VirtualNetworkId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -151150,48 +149595,58 @@ }, { "VerbName": "New", - "NounName": "AzLoadBalancerRuleConfig", - "Name": "New-AzLoadBalancerRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerRuleConfigCommand", + "NounName": "AzLoadBalancerBackendAddressPoolConfig", + "Name": "New-AzLoadBalancerBackendAddressPoolConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerBackendAddressPoolConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "FrontendPort": "System.Int32", - "BackendPort": "System.Int32", - "EnableFloatingIP": "System.Nullable`1[System.Boolean]", - "EnableTcpReset": "System.Nullable`1[System.Boolean]", - "DisableOutboundSNAT": "System.Nullable`1[System.Boolean]", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", "Name": "System.String", - "ProbeText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendAddressPoolText": "System.String", - "Protocol": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "LoadDistribution": "System.String", - "FrontendIPConfigurationText": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", "Id": "System.String" }, "Methods": [ { - "Name": "ShouldSerializeFrontendPort", + "Name": "ShouldSerializeTunnelInterfaces", "ReturnType": "System.Boolean" }, { - "Name": "ShouldSerializeBackendPort", + "Name": "ShouldSerializeBackendIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeLoadBalancingRules", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeSyncMode", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeVirtualNetwork", "ReturnType": "System.Boolean" }, { @@ -151239,79 +149694,169 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Protocol", + "Name": "TunnelInterface", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" }, "ValidateNotNullOrEmpty": false }, { - "Name": "LoadDistribution", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false - }, + } + ], + "ParameterSets": [ { - "Name": "FrontendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TunnelInterface", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzLoadBalancerBackendAddressPoolTunnelInterfaceConfig", + "Name": "New-AzLoadBalancerBackendAddressPoolTunnelInterfaceConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerBackendAddressPoolTunnelInterfaceConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "BackendPort", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Port": "System.Int32", + "Identifier": "System.Int32", + "Protocol": "System.String", + "Type": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] }, - "ValidateNotNullOrEmpty": false - }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ { - "Name": "IdleTimeoutInMinutes", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableFloatingIP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableTcpReset", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DisableOutboundSNAT", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "FrontendIpConfigurationId", + "Name": "Type", "Type": { "Namespace": "System", "Name": "System.String", @@ -151320,91 +149865,20 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "FrontendIpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendAddressPoolId", + "Name": "Identifier", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ProbeId", + "Name": "Port", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Probe", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "IntervalInSeconds": "System.Int32", - "NumberOfProbes": "System.Int32", - "ProbeThreshold": "System.Nullable`1[System.Int32]", - "Protocol": "System.String", - "RequestPath": "System.String", - "NoHealthyBackendsBehavior": "System.String", - "ProvisioningState": "System.String", - "LoadBalancingRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -151435,7 +149909,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -151450,22 +149924,7 @@ }, { "ParameterMetadata": { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "LoadDistribution", + "Name": "Type", "Type": { "Namespace": "System", "Name": "System.String", @@ -151473,29 +149932,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendPort", + "Name": "Identifier", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -151503,14 +149947,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "Port", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -151518,52 +149962,7 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EnableFloatingIP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableTcpReset", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DisableOutboundSNAT", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -151595,74 +149994,324 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzLoadBalancerFrontendIpConfig", + "Name": "New-AzLoadBalancerFrontendIpConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerFrontendIpConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "SetByResourceSubnet", + "OutputTypes": [ { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "FrontendIpConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "BackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "ShouldSerializeInboundNatRules", + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ProbeId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ShouldSerializeInboundNatPools", + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ShouldSerializeOutboundRules", + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "ShouldSerializeLoadBalancingRules", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeZones", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeGatewayLoadBalancer", + "ReturnType": "System.Boolean" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateIpAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateIpAddressVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubnetId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Subnet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PublicIpAddressId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PublicIpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PublicIpAddressPrefixId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PublicIpAddressPrefix", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", + "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "CustomIpPrefixText": "System.String", + "IpTagsText": "System.String", + "Etag": "System.String", + "PublicIpAddressesText": "System.String", + "IPPrefix": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "SkuText": "System.String", + "Id": "System.String", + "PrefixLength": "System.UInt16" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -151670,6 +150319,22 @@ }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -151677,7 +150342,38 @@ }, { "ParameterMetadata": { - "Name": "LoadDistribution", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceSubnet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -151692,12 +150388,16 @@ }, { "ParameterMetadata": { - "Name": "FrontendPort", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -151707,26 +150407,75 @@ }, { "ParameterMetadata": { - "Name": "BackendPort", + "Name": "Subnet", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -151737,11 +150486,22 @@ }, { "ParameterMetadata": { - "Name": "EnableFloatingIP", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -151749,36 +150509,91 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceIdSubnet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PrivateIpAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "PrivateIpAddressVersion", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SubnetId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableOutboundSNAT", + "Name": "Zone", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -151809,58 +150624,46 @@ ] }, { - "Name": "SetByResource", + "Name": "SetByResourceIdPublicIpAddress", "Parameters": [ { "ParameterMetadata": { - "Name": "FrontendIpConfiguration", + "Name": "PublicIpAddressId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "BackendAddressPool", + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -151871,30 +150674,77 @@ }, { "ParameterMetadata": { - "Name": "Probe", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourcePublicIpAddress", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PublicIpAddress", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "IntervalInSeconds": "System.Int32", - "NumberOfProbes": "System.Int32", - "ProbeThreshold": "System.Nullable`1[System.Int32]", - "Protocol": "System.String", - "RequestPath": "System.String", - "NoHealthyBackendsBehavior": "System.String", - "ProvisioningState": "System.String", - "LoadBalancingRulesText": "System.String", + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -151916,11 +150766,12 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Zone", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -151931,56 +150782,73 @@ }, { "ParameterMetadata": { - "Name": "LoadDistribution", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceIdPublicIpAddressPrefix", + "Parameters": [ { "ParameterMetadata": { - "Name": "FrontendPort", + "Name": "PublicIpAddressPrefixId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "BackendPort", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "Zone", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -151991,11 +150859,22 @@ }, { "ParameterMetadata": { - "Name": "EnableFloatingIP", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -152003,36 +150882,83 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourcePublicIpAddressPrefix", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PublicIpAddressPrefix", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", + "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "CustomIpPrefixText": "System.String", + "IpTagsText": "System.String", + "Etag": "System.String", + "PublicIpAddressesText": "System.String", + "IPPrefix": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "SkuText": "System.String", + "Id": "System.String", + "PrefixLength": "System.UInt16" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableOutboundSNAT", + "Name": "Zone", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -152066,38 +150992,47 @@ }, { "VerbName": "New", - "NounName": "AzLocalNetworkGateway", - "Name": "New-AzLocalNetworkGateway", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand", + "NounName": "AzLoadBalancerInboundNatPoolConfig", + "Name": "New-AzLoadBalancerInboundNatPoolConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerInboundNatPoolConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "Tag": "System.Collections.Hashtable", - "GatewayIpAddress": "System.String", - "Fqdn": "System.String", + "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPortRangeStart": "System.Int32", + "FrontendPortRangeEnd": "System.Int32", + "BackendPort": "System.Int32", + "EnableFloatingIP": "System.Nullable`1[System.Boolean]", + "EnableTcpReset": "System.Nullable`1[System.Boolean]", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Protocol": "System.String", "ProvisioningState": "System.String", - "AddressSpaceText": "System.String", - "BgpSettingsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "FrontendIPConfigurationText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeFrontendPortRangeStart", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeFrontendPortRangeEnd", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeBackendPort", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -152135,36 +151070,6 @@ "Parameters": [ { "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "GatewayIpAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -152173,7 +151078,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Fqdn", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -152182,35 +151087,34 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AddressPrefix", + "Name": "FrontendPortRangeStart", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Asn", + "Name": "FrontendPortRangeEnd", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "BgpPeeringAddress", + "Name": "BackendPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PeerWeight", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -152219,16 +151123,16 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "EnableFloatingIP", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -152237,11 +151141,47 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "FrontendIpConfigurationId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FrontendIpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -152273,30 +151213,27 @@ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -152305,13 +151242,13 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "FrontendPortRangeStart", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -152320,53 +151257,37 @@ }, { "ParameterMetadata": { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Asn", + "Name": "FrontendPortRangeEnd", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "BgpPeeringAddress", + "Name": "BackendPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerWeight", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -152381,22 +151302,7 @@ }, { "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", + "Name": "EnableFloatingIP", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -152411,7 +151317,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -152453,11 +151359,11 @@ ] }, { - "Name": "ByLocalNetworkGatewayIpAddress", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "GatewayIpAddress", + "Name": "FrontendIpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -152473,30 +151379,27 @@ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -152505,13 +151408,13 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "FrontendPortRangeStart", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -152520,42 +151423,41 @@ }, { "ParameterMetadata": { - "Name": "AddressPrefix", + "Name": "FrontendPortRangeEnd", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Asn", + "Name": "BackendPort", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "BgpPeeringAddress", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -152566,37 +151468,7 @@ }, { "ParameterMetadata": { - "Name": "PeerWeight", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", + "Name": "EnableFloatingIP", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -152611,7 +151483,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -152653,15 +151525,42 @@ ] }, { - "Name": "ByLocalNetworkGatewayFqdn", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "Fqdn", + "Name": "FrontendIpConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -152673,30 +151572,27 @@ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -152705,13 +151601,13 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "FrontendPortRangeStart", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -152720,53 +151616,37 @@ }, { "ParameterMetadata": { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Asn", + "Name": "FrontendPortRangeEnd", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "BgpPeeringAddress", + "Name": "BackendPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerWeight", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -152781,22 +151661,7 @@ }, { "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", + "Name": "EnableFloatingIP", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -152811,7 +151676,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -152856,40 +151721,48 @@ }, { "VerbName": "New", - "NounName": "AzNatGateway", - "Name": "New-AzNatGateway", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmNatGateway", + "NounName": "AzLoadBalancerInboundNatRuleConfig", + "Name": "New-AzLoadBalancerInboundNatRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerInboundNatRuleConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", + "BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", + "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "System.Int32", + "BackendPort": "System.Int32", + "EnableFloatingIP": "System.Nullable`1[System.Boolean]", + "EnableTcpReset": "System.Nullable`1[System.Boolean]", "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "FrontendPortRangeStart": "System.Nullable`1[System.Int32]", + "FrontendPortRangeEnd": "System.Nullable`1[System.Int32]", "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "PublicIpPrefixesText": "System.String", - "ResourceGroupName": "System.String", + "BackendAddressPoolText": "System.String", + "BackendIPConfigurationText": "System.String", + "Protocol": "System.String", "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "SkuText": "System.String", "ProvisioningState": "System.String", - "Location": "System.String", + "FrontendIPConfigurationText": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeFrontendPort", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeBackendPort", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -152926,28 +151799,25 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "IdleTimeoutInMinutes", + "Name": "FrontendPort", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -152956,26 +151826,43 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Zone", + "Name": "BackendPort", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Sku", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Location", + "Name": "EnableFloatingIP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FrontendIpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -152984,49 +151871,100 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "FrontendIpConfiguration", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpAddress", + "Name": "FrontendPortRangeStart", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpPrefix", + "Name": "FrontendPortRangeEnd", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "BackendAddressPoolId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "BackendAddressPool", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", + "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", + "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -153057,13 +151995,13 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -153072,21 +152010,48 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BackendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -153101,16 +152066,92 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableFloatingIP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FrontendPortRangeStart", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPortRangeEnd", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -153118,25 +152159,60 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "FrontendIpConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "BackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -153147,15 +152223,75 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BackendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableFloatingIP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "EnableTcpReset", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -153166,12 +152302,58 @@ }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "FrontendPortRangeStart", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPortRangeEnd", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -153179,26 +152361,167 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResource", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "FrontendIpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PublicIpPrefix", + "Name": "BackendAddressPool", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", + "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", + "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BackendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableFloatingIP", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -153213,7 +152536,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -153226,6 +152549,42 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "FrontendPortRangeStart", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPortRangeEnd", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -153258,65 +152617,36 @@ }, { "VerbName": "New", - "NounName": "AzNetworkInterface", - "Name": "New-AzNetworkInterface", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceCommand", + "NounName": "AzLoadBalancerOutboundRuleConfig", + "Name": "New-AzLoadBalancerOutboundRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerOutboundRuleConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByIpConfigurationResource", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", + "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "EnableTcpReset": "System.Nullable`1[System.Boolean]", + "AllocatedOutboundPorts": "System.Nullable`1[System.Int32]", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Protocol": "System.String", + "FrontendIpConfigurationsText": "System.String", + "BackendAddressPoolText": "System.String", "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", "Etag": "System.String", - "AuxiliaryMode": "System.String", - "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", "Id": "System.String" }, "Methods": [ { - "Name": "ShouldSerializeIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeTapConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeHostedWorkloads", + "Name": "ShouldSerializeFrontendIpConfigurations", "ReturnType": "System.Boolean" }, { @@ -153356,36 +152686,24 @@ "Parameters": [ { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Location", + "Name": "AllocatedOutboundPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "EdgeZone", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -153394,68 +152712,35 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "IpConfiguration", + "Name": "EnableTcpReset", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "SubnetId", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Subnet", + "Name": "FrontendIpConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpAddressId", + "Name": "BackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String", @@ -153464,354 +152749,98 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpAddress", + "Name": "BackendAddressPool", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "NetworkSecurityGroupId", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkSecurityGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "FlushConnection": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "NetworkInterfacesText": "System.String", - "SubnetsText": "System.String", - "Etag": "System.String", - "DefaultSecurityRulesText": "System.String", - "SecurityRulesText": "System.String", - "FlushConnectionText": "System.String", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LoadBalancerBackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LoadBalancerBackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LoadBalancerInboundNatRuleId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LoadBalancerInboundNatRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationGatewayBackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationGatewayBackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationSecurityGroupId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationSecurityGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateIpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpConfigurationName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DnsServer", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InternalDnsNameLabel", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DisableTcpStateTracking", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableIPForwarding", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableAcceleratedNetworking", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AuxiliaryMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "MaxConnections", - "AcceleratedConnections", - "Floating" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AuxiliarySku", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "A1", - "A2", - "A4", - "A8" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "AllocatedOutboundPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -153820,27 +152849,26 @@ }, { "ParameterMetadata": { - "Name": "EdgeZone", + "Name": "EnableTcpReset", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DnsServer", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -153851,151 +152879,156 @@ }, { "ParameterMetadata": { - "Name": "InternalDnsNameLabel", + "Name": "FrontendIpConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DisableTcpStateTracking", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableIPForwarding", + "Name": "BackendAddressPoolId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableAcceleratedNetworking", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AuxiliaryMode", + "Name": "AllocatedOutboundPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "None", - "MaxConnections", - "AcceleratedConnections", - "Floating" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AuxiliarySku", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "None", - "A1", - "A2", - "A4", - "A8" - ], "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "EnableTcpReset", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "IdleTimeoutInMinutes", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "FrontendIpConfiguration", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -154026,89 +153059,38 @@ ] }, { - "Name": "SetByIpConfigurationResourceId", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "IpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkSecurityGroupId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkSecurityGroup", + "Name": "BackendAddressPool", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "FlushConnection": "System.Nullable`1[System.Boolean]", + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "NetworkInterfacesText": "System.String", - "SubnetsText": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", "Etag": "System.String", - "DefaultSecurityRulesText": "System.String", - "SecurityRulesText": "System.String", - "FlushConnectionText": "System.String", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, @@ -154116,37 +153098,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EdgeZone", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -154154,34 +153106,18 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DnsServer", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InternalDnsNameLabel", + "Name": "AllocatedOutboundPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -154192,7 +153128,7 @@ }, { "ParameterMetadata": { - "Name": "DisableTcpStateTracking", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -154200,29 +153136,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableIPForwarding", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableAcceleratedNetworking", + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -154237,54 +153158,11 @@ }, { "ParameterMetadata": { - "Name": "AuxiliaryMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "MaxConnections", - "AcceleratedConnections", - "Floating" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AuxiliarySku", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "A1", - "A2", - "A4", - "A8" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -154295,33 +153173,19 @@ }, { "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", + "Name": "FrontendIpConfiguration", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -154350,68 +153214,234 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzLoadBalancerProbeConfig", + "Name": "New-AzLoadBalancerProbeConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerProbeConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "IntervalInSeconds": "System.Int32", + "NumberOfProbes": "System.Int32", + "ProbeThreshold": "System.Nullable`1[System.Int32]", + "Protocol": "System.String", + "RequestPath": "System.String", + "NoHealthyBackendsBehavior": "System.String", + "ProvisioningState": "System.String", + "LoadBalancingRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "ShouldSerializePort", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeIntervalInSeconds", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeNumberOfProbes", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeProbeThreshold", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeLoadBalancingRules", + "ReturnType": "System.Boolean" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "SetByIpConfigurationResource", + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Port", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IntervalInSeconds", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProbeCount", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProbeThreshold", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RequestPath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NoHealthyBackendsBehavior", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "IpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Port", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -154420,42 +153450,44 @@ }, { "ParameterMetadata": { - "Name": "EdgeZone", + "Name": "IntervalInSeconds", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DnsServer", + "Name": "ProbeCount", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "InternalDnsNameLabel", + "Name": "ProbeThreshold", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -154466,7 +153498,7 @@ }, { "ParameterMetadata": { - "Name": "DisableTcpStateTracking", + "Name": "RequestPath", "Type": { "Namespace": "System", "Name": "System.String", @@ -154481,85 +153513,12 @@ }, { "ParameterMetadata": { - "Name": "EnableIPForwarding", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableAcceleratedNetworking", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AuxiliaryMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "MaxConnections", - "AcceleratedConnections", - "Floating" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AuxiliarySku", + "Name": "NoHealthyBackendsBehavior", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "None", - "A1", - "A2", - "A4", - "A8" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -154567,36 +153526,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -154624,28 +153553,297 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzLoadBalancerRuleConfig", + "Name": "New-AzLoadBalancerRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmLoadBalancerRuleConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "SetByResource", + "OutputTypes": [ { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SubnetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "PublicIpAddressId", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "FrontendPort": "System.Int32", + "BackendPort": "System.Int32", + "EnableFloatingIP": "System.Nullable`1[System.Boolean]", + "EnableTcpReset": "System.Nullable`1[System.Boolean]", + "DisableOutboundSNAT": "System.Nullable`1[System.Boolean]", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "ProbeText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendAddressPoolText": "System.String", + "Protocol": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "LoadDistribution": "System.String", + "FrontendIPConfigurationText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "ShouldSerializeFrontendPort", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeBackendPort", + "ReturnType": "System.Boolean" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "LoadDistribution", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FrontendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableFloatingIP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DisableOutboundSNAT", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FrontendIpConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FrontendIpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendAddressPoolId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProbeId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Probe", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "IntervalInSeconds": "System.Int32", + "NumberOfProbes": "System.Int32", + "ProbeThreshold": "System.Nullable`1[System.Int32]", + "Protocol": "System.String", + "RequestPath": "System.String", + "NoHealthyBackendsBehavior": "System.String", + "ProvisioningState": "System.String", + "LoadBalancingRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -154653,14 +153851,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NetworkSecurityGroupId", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -154675,12 +153873,11 @@ }, { "ParameterMetadata": { - "Name": "LoadBalancerBackendAddressPoolId", + "Name": "LoadDistribution", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -154691,12 +153888,11 @@ }, { "ParameterMetadata": { - "Name": "LoadBalancerInboundNatRuleId", + "Name": "FrontendPort", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -154707,12 +153903,11 @@ }, { "ParameterMetadata": { - "Name": "ApplicationGatewayBackendAddressPoolId", + "Name": "BackendPort", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -154723,12 +153918,11 @@ }, { "ParameterMetadata": { - "Name": "ApplicationSecurityGroupId", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -154739,89 +153933,103 @@ }, { "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "EnableFloatingIP", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpConfigurationName", + "Name": "EnableTcpReset", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "DisableOutboundSNAT", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "FrontendIpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EdgeZone", + "Name": "BackendAddressPoolId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -154832,12 +154040,11 @@ }, { "ParameterMetadata": { - "Name": "DnsServer", + "Name": "ProbeId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -154848,7 +154055,7 @@ }, { "ParameterMetadata": { - "Name": "InternalDnsNameLabel", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -154856,14 +154063,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableTcpStateTracking", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -154878,95 +154085,82 @@ }, { "ParameterMetadata": { - "Name": "EnableIPForwarding", + "Name": "LoadDistribution", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableAcceleratedNetworking", + "Name": "FrontendPort", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AuxiliaryMode", + "Name": "BackendPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "None", - "MaxConnections", - "AcceleratedConnections", - "Floating" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AuxiliarySku", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "None", - "A1", - "A2", - "A4", - "A8" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "EnableFloatingIP", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -154981,7 +154175,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DisableOutboundSNAT", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -155027,90 +154221,54 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Subnet", + "Name": "FrontendIpConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "BackendAddressPool", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" }, "ValidateNotNullOrEmpty": false }, @@ -155121,31 +154279,24 @@ }, { "ParameterMetadata": { - "Name": "NetworkSecurityGroup", + "Name": "Probe", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "FlushConnection": "System.Nullable`1[System.Boolean]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "IntervalInSeconds": "System.Int32", + "NumberOfProbes": "System.Int32", + "ProbeThreshold": "System.Nullable`1[System.Int32]", + "Protocol": "System.String", + "RequestPath": "System.String", + "NoHealthyBackendsBehavior": "System.String", + "ProvisioningState": "System.String", + "LoadBalancingRulesText": "System.String", "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "NetworkInterfacesText": "System.String", - "SubnetsText": "System.String", "Etag": "System.String", - "DefaultSecurityRulesText": "System.String", - "SecurityRulesText": "System.String", - "FlushConnectionText": "System.String", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", "Id": "System.String" } }, @@ -155156,151 +154307,39 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "LoadBalancerBackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "LoadBalancerInboundNatRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ApplicationGatewayBackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ApplicationSecurityGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "PrivateIpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IpConfigurationName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EdgeZone", + "Name": "LoadDistribution", "Type": { "Namespace": "System", "Name": "System.String", @@ -155315,12 +154354,11 @@ }, { "ParameterMetadata": { - "Name": "DnsServer", + "Name": "FrontendPort", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -155331,11 +154369,11 @@ }, { "ParameterMetadata": { - "Name": "InternalDnsNameLabel", + "Name": "BackendPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -155346,11 +154384,11 @@ }, { "ParameterMetadata": { - "Name": "DisableTcpStateTracking", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -155361,22 +154399,7 @@ }, { "ParameterMetadata": { - "Name": "EnableIPForwarding", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableAcceleratedNetworking", + "Name": "EnableFloatingIP", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -155391,65 +154414,7 @@ }, { "ParameterMetadata": { - "Name": "AuxiliaryMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "MaxConnections", - "AcceleratedConnections", - "Floating" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AuxiliarySku", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "A1", - "A2", - "A4", - "A8" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -155464,7 +154429,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DisableOutboundSNAT", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -155509,68 +154474,38 @@ }, { "VerbName": "New", - "NounName": "AzNetworkInterfaceIpConfig", - "Name": "New-AzNetworkInterfaceIpConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand", - "SupportsShouldProcess": false, + "NounName": "AzLocalNetworkGateway", + "Name": "New-AzLocalNetworkGateway", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureLocalNetworkGatewayCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "Primary": "System.Boolean", - "ApplicationGatewayBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "ApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "LoadBalancerBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "LoadBalancerInboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "VirtualNetworkTaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]", - "PrivateIpAddressVersion": "System.String", - "Name": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", + "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "Tag": "System.Collections.Hashtable", + "GatewayIpAddress": "System.String", + "Fqdn": "System.String", "ProvisioningState": "System.String", - "PrivateIpAllocationMethod": "System.String", - "ApplicationSecurityGroupsText": "System.String", - "GatewayLoadBalancerText": "System.String", - "PrivateLinkConnectionPropertiesText": "System.String", - "VirtualNetworkTapsText": "System.String", + "AddressSpaceText": "System.String", + "BgpSettingsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Etag": "System.String", - "ApplicationGatewayBackendAddressPoolsText": "System.String", - "LoadBalancerInboundNatRulesText": "System.String", - "LoadBalancerBackendAddressPoolsText": "System.String", - "PrivateIpAddress": "System.String", "Id": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeLoadBalancerBackendAddressPools", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeLoadBalancerInboundNatRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeApplicationGatewayBackendAddressPools", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeApplicationSecurityGroups", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeGatewayLoadBalancer", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -155608,6 +154543,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -155616,222 +154554,102 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateIpAddressVersion", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateIpAddress", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Primary", + "Name": "GatewayIpAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SubnetId", + "Name": "Fqdn", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Subnet", + "Name": "AddressPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "PublicIpAddressId", + "Name": "Asn", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpAddress", + "Name": "BgpPeeringAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "LoadBalancerBackendAddressPoolId", + "Name": "PeerWeight", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "LoadBalancerBackendAddressPool", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "LoadBalancerInboundNatRuleId", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "LoadBalancerInboundNatRule", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationGatewayBackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationGatewayBackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationSecurityGroupId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationSecurityGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "GatewayLoadBalancerId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -155863,6 +154681,9 @@ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -155873,30 +154694,72 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "Asn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BgpPeeringAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -155907,11 +154770,56 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PeerWeight", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Primary", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -155953,80 +154861,81 @@ ] }, { - "Name": "SetByResourceId", + "Name": "ByLocalNetworkGatewayIpAddress", "Parameters": [ { "ParameterMetadata": { - "Name": "SubnetId", + "Name": "GatewayIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PublicIpAddressId", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LoadBalancerBackendAddressPoolId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LoadBalancerInboundNatRuleId", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ApplicationGatewayBackendAddressPoolId", + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -156035,12 +154944,11 @@ }, { "ParameterMetadata": { - "Name": "ApplicationSecurityGroupId", + "Name": "Asn", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -156051,45 +154959,56 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "BgpPeeringAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", + "Name": "PeerWeight", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -156100,7 +155019,7 @@ }, { "ParameterMetadata": { - "Name": "Primary", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -156142,144 +155061,81 @@ ] }, { - "Name": "SetByResource", + "Name": "ByLocalNetworkGatewayFqdn", "Parameters": [ { "ParameterMetadata": { - "Name": "Subnet", + "Name": "Fqdn", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LoadBalancerBackendAddressPool", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LoadBalancerInboundNatRule", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ApplicationGatewayBackendAddressPool", + "Name": "AddressPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -156288,12 +155144,11 @@ }, { "ParameterMetadata": { - "Name": "ApplicationSecurityGroup", + "Name": "Asn", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -156304,7 +155159,7 @@ }, { "ParameterMetadata": { - "Name": "GatewayLoadBalancerId", + "Name": "BgpPeeringAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -156319,45 +155174,41 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PeerWeight", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -156368,7 +155219,7 @@ }, { "ParameterMetadata": { - "Name": "Primary", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -156413,9 +155264,9 @@ }, { "VerbName": "New", - "NounName": "AzNetworkManager", - "Name": "New-AzNetworkManager", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand", + "NounName": "AzNatGateway", + "Name": "New-AzNatGateway", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmNatGateway", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -156423,25 +155274,27 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "NetworkManagerScopeAccesses": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "NetworkManagerScopeAccessesText": "System.String", - "NetworkManagerScopesText": "System.String", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", "TagsTable": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", + "ResourceGuid": "System.String", + "PublicIpPrefixesText": "System.String", + "ResourceGroupName": "System.String", "Etag": "System.String", + "PublicIpAddressesText": "System.String", + "SkuText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", "Id": "System.String" }, "Methods": [ @@ -156480,6 +155333,15 @@ } ], "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Name", "AliasList": [ @@ -156493,16 +155355,26 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Location", + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Sku", "Type": { "Namespace": "System", "Name": "System.String", @@ -156511,7 +155383,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Description", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -156529,29 +155401,22 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "NetworkManagerScope", + "Name": "PublicIpAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CrossTenantScopes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]", - "ManagementGroups": "System.Collections.Generic.List`1[System.String]", - "Subscriptions": "System.Collections.Generic.List`1[System.String]", - "ManagementGroupsText": "System.String", - "SubscriptionsText": "System.String", - "CrossTenantScopesText": "System.String" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, { - "Name": "NetworkManagerScopeAccess", + "Name": "PublicIpPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network", - "Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, @@ -156598,24 +155463,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -156629,11 +155476,14 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -156644,84 +155494,76 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Zone", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NetworkManagerScope", + "Name": "Sku", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CrossTenantScopes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]", - "ManagementGroups": "System.Collections.Generic.List`1[System.String]", - "Subscriptions": "System.Collections.Generic.List`1[System.String]", - "ManagementGroupsText": "System.String", - "SubscriptionsText": "System.String", - "CrossTenantScopesText": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NetworkManagerScopeAccess", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network", - "Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -156732,11 +155574,12 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PublicIpAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, @@ -156747,22 +155590,12 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "PublicIpPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, @@ -156770,146 +155603,36 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkManagerAddressPrefixItem", - "Name": "New-AzNetworkManagerAddressPrefixItem", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerAddressPrefixItemCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressPrefix": "System.String", - "AddressPrefixType": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AddressPrefixType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPPrefix", - "ServiceTag" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "AddressPrefix", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AddressPrefixType", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "IPPrefix", - "ServiceTag" - ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -156943,39 +155666,67 @@ }, { "VerbName": "New", - "NounName": "AzNetworkManagerConnectivityConfiguration", - "Name": "New-AzNetworkManagerConnectivityConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerConnectivityConfigurationCommand", + "NounName": "AzNetworkInterface", + "Name": "New-AzNetworkInterface", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "SetByIpConfigurationResource", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", - "Hubs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]", - "NetworkManagerName": "System.String", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", "Name": "System.String", - "SystemDataText": "System.String", - "ProvisioningState": "System.String", "Type": "System.String", - "Description": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", "ResourceGroupName": "System.String", - "HubsText": "System.String", - "AppliesToGroupsText": "System.String", - "IsGlobal": "System.String", - "DeleteExistingPeering": "System.String", - "ConnectivityTopology": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", "Etag": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeTapConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeHostedWorkloads", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -157024,7 +155775,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "NetworkManagerName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -157033,7 +155784,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -157042,30 +155793,77 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "AppliesToGroup", + "Name": "EdgeZone", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ConnectivityTopology", + "Name": "IpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SubnetId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "HubAndSpoke", - "Mesh" - ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Subnet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } + }, "ValidateNotNullOrEmpty": false }, { - "Name": "Description", + "Name": "PublicIpAddressId", "Type": { "Namespace": "System", "Name": "System.String", @@ -157074,89 +155872,325 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Hub", + "Name": "PublicIpAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "DeleteExistingPeering", + "Name": "NetworkSecurityGroupId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "IsGlobal", + "Name": "NetworkSecurityGroup", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", + "FlushConnection": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "NetworkInterfacesText": "System.String", + "SubnetsText": "System.String", + "Etag": "System.String", + "DefaultSecurityRulesText": "System.String", + "SecurityRulesText": "System.String", + "FlushConnectionText": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "LoadBalancerBackendAddressPoolId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "LoadBalancerBackendAddressPool", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" }, "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "LoadBalancerInboundNatRuleId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + }, { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, + "Name": "LoadBalancerInboundNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ApplicationGatewayBackendAddressPoolId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ApplicationGatewayBackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ApplicationSecurityGroupId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ApplicationSecurityGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateIpAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpConfigurationName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DnsServer", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InternalDnsNameLabel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DisableTcpStateTracking", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableIPForwarding", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableAcceleratedNetworking", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AuxiliaryMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "MaxConnections", + "AcceleratedConnections", + "Floating" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AuxiliarySku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "A1", + "A2", + "A4", + "A8" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, @@ -157164,7 +156198,7 @@ }, { "ParameterMetadata": { - "Name": "NetworkManagerName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -157179,7 +156213,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -157194,42 +156228,38 @@ }, { "ParameterMetadata": { - "Name": "AppliesToGroup", + "Name": "EdgeZone", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ConnectivityTopology", + "Name": "DnsServer", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "HubAndSpoke", - "Mesh" - ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "InternalDnsNameLabel", "Type": { "Namespace": "System", "Name": "System.String", @@ -157244,12 +156274,11 @@ }, { "ParameterMetadata": { - "Name": "Hub", + "Name": "DisableTcpStateTracking", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -157260,7 +156289,7 @@ }, { "ParameterMetadata": { - "Name": "DeleteExistingPeering", + "Name": "EnableIPForwarding", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -157271,11 +156300,11 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IsGlobal", + "Name": "EnableAcceleratedNetworking", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -157286,6 +156315,64 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuxiliaryMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "MaxConnections", + "AcceleratedConnections", + "Floating" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuxiliarySku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "A1", + "A2", + "A4", + "A8" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { @@ -157345,140 +156432,105 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkManagerConnectivityGroupItem", - "Name": "New-AzNetworkManagerConnectivityGroupItem", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerConnectivityGroupItemCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkGroupId": "System.String", - "UseHubGateway": "System.String", - "IsGlobal": "System.String", - "GroupConnectivity": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + "Name": "SetByIpConfigurationResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "IpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkSecurityGroupId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkSecurityGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", + "FlushConnection": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "NetworkInterfacesText": "System.String", + "SubnetsText": "System.String", + "Etag": "System.String", + "DefaultSecurityRulesText": "System.String", + "SecurityRulesText": "System.String", + "FlushConnectionText": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "NetworkGroupId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UseHubGateway", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "GroupConnectivity", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "None", - "DirectlyConnected" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IsGlobal", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "NetworkGroupId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -157487,7 +156539,83 @@ }, { "ParameterMetadata": { - "Name": "UseHubGateway", + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EdgeZone", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DnsServer", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InternalDnsNameLabel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DisableTcpStateTracking", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableIPForwarding", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -157498,11 +156626,26 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GroupConnectivity", + "Name": "EnableAcceleratedNetworking", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuxiliaryMode", "Type": { "Namespace": "System", "Name": "System.String", @@ -157510,18 +156653,57 @@ }, "ValidateSet": [ "None", - "DirectlyConnected" + "MaxConnections", + "AcceleratedConnections", + "Floating" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuxiliarySku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "A1", + "A2", + "A4", + "A8" ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IsGlobal", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -157532,7 +156714,22 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -157561,163 +156758,26 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkManagerGroup", - "Name": "New-AzNetworkManagerGroup", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkGroupCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "NetworkManagerName": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NetworkManagerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IfMatch", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByIpConfigurationResource", "Parameters": [ + { + "ParameterMetadata": { + "Name": "IpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "Name", @@ -157738,7 +156798,7 @@ }, { "ParameterMetadata": { - "Name": "NetworkManagerName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -157753,7 +156813,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -157768,7 +156828,7 @@ }, { "ParameterMetadata": { - "Name": "Description", + "Name": "EdgeZone", "Type": { "Namespace": "System", "Name": "System.String", @@ -157783,7 +156843,23 @@ }, { "ParameterMetadata": { - "Name": "IfMatch", + "Name": "DnsServer", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InternalDnsNameLabel", "Type": { "Namespace": "System", "Name": "System.String", @@ -157798,22 +156874,22 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "DisableTcpStateTracking", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableIPForwarding", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -157828,22 +156904,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "EnableAcceleratedNetworking", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -157851,147 +156916,103 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkManagerHub", - "Name": "New-AzNetworkManagerHub", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerHubCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ResourceId": "System.String", - "ResourceType": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "AuxiliaryMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "None", + "MaxConnections", + "AcceleratedConnections", + "Floating" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceType", + "Name": "AuxiliarySku", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "None", + "A1", + "A2", + "A4", + "A8" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", @@ -158011,177 +157032,13 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkManagerManagementGroupConnection", - "Name": "New-AzNetworkManagerManagementGroupConnection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerManagementGroupConnectionCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "ScopeId": "System.String", - "NetworkManagerId": "System.String", - "ConnectionState": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ManagementGroupId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NetworkManagerId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ManagementGroupId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "SubnetId", "Type": { "Namespace": "System", "Name": "System.String", @@ -158196,7 +157053,7 @@ }, { "ParameterMetadata": { - "Name": "NetworkManagerId", + "Name": "PublicIpAddressId", "Type": { "Namespace": "System", "Name": "System.String", @@ -158204,14 +157061,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "NetworkSecurityGroupId", "Type": { "Namespace": "System", "Name": "System.String", @@ -158226,171 +157083,55 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "LoadBalancerBackendAddressPoolId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", + "Name": "LoadBalancerInboundNatRuleId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ApplicationGatewayBackendAddressPoolId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkManagerScope", - "Name": "New-AzNetworkManagerScope", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerScopeCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CrossTenantScopes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]", - "ManagementGroups": "System.Collections.Generic.List`1[System.String]", - "Subscriptions": "System.Collections.Generic.List`1[System.String]", - "ManagementGroupsText": "System.String", - "SubscriptionsText": "System.String", - "CrossTenantScopesText": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ManagementGroup", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Subscription", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "ManagementGroup", + "Name": "ApplicationSecurityGroupId", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -158406,12 +157147,11 @@ }, { "ParameterMetadata": { - "Name": "Subscription", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -158422,200 +157162,19 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "IpConfigurationName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkManagerScopeConnection", - "Name": "New-AzNetworkManagerScopeConnection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerScopeConnectionCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "NetworkManagerName": "System.String", - "TenantId": "System.String", - "ResourceId": "System.String", - "ConnectionState": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NetworkManagerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "TenantId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { "Name": "Name", @@ -158636,7 +157195,7 @@ }, { "ParameterMetadata": { - "Name": "NetworkManagerName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -158651,7 +157210,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -158666,7 +157225,7 @@ }, { "ParameterMetadata": { - "Name": "TenantId", + "Name": "EdgeZone", "Type": { "Namespace": "System", "Name": "System.String", @@ -158674,14 +157233,30 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "DnsServer", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InternalDnsNameLabel", "Type": { "Namespace": "System", "Name": "System.String", @@ -158689,14 +157264,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "DisableTcpStateTracking", "Type": { "Namespace": "System", "Name": "System.String", @@ -158711,7 +157286,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableIPForwarding", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -158724,6 +157299,79 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "EnableAcceleratedNetworking", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuxiliaryMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "MaxConnections", + "AcceleratedConnections", + "Floating" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuxiliarySku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "A1", + "A2", + "A4", + "A8" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "Force", @@ -158739,6 +157387,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -158766,189 +157429,52 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkManagerSecurityAdminConfiguration", - "Name": "New-AzNetworkManagerSecurityAdminConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]", - "NetworkManagerName": "System.String", - "SecurityType": "System.String", - "ApplyOnNetworkIntentPolicyBasedServicesText": "System.String", - "DeleteExistingNSGs": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NetworkManagerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplyOnNetworkIntentPolicyBasedService", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network", - "Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DeleteExistingNSG", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "Subnet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -158957,41 +157483,95 @@ }, { "ParameterMetadata": { - "Name": "NetworkManagerName", + "Name": "PublicIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "NetworkSecurityGroup", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", + "FlushConnection": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "NetworkInterfacesText": "System.String", + "SubnetsText": "System.String", + "Etag": "System.String", + "DefaultSecurityRulesText": "System.String", + "SecurityRulesText": "System.String", + "FlushConnectionText": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "LoadBalancerBackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" }, "ValidateNotNullOrEmpty": false }, @@ -159002,12 +157582,12 @@ }, { "ParameterMetadata": { - "Name": "ApplyOnNetworkIntentPolicyBasedService", + "Name": "LoadBalancerInboundNatRule", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network", - "Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" }, "ValidateNotNullOrEmpty": false }, @@ -159018,11 +157598,12 @@ }, { "ParameterMetadata": { - "Name": "DeleteExistingNSG", + "Name": "ApplicationGatewayBackendAddressPool", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" }, "ValidateNotNullOrEmpty": false }, @@ -159033,28 +157614,271 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "ApplicationSecurityGroup", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PrivateIpAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IpConfigurationName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EdgeZone", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DnsServer", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InternalDnsNameLabel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DisableTcpStateTracking", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableIPForwarding", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableAcceleratedNetworking", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuxiliaryMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "MaxConnections", + "AcceleratedConnections", + "Floating" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuxiliarySku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "None", + "A1", + "A2", + "A4", + "A8" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -159093,34 +157917,68 @@ }, { "VerbName": "New", - "NounName": "AzNetworkManagerSecurityAdminRule", - "Name": "New-AzNetworkManagerSecurityAdminRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminRuleCommand", - "SupportsShouldProcess": true, + "NounName": "AzNetworkInterfaceIpConfig", + "Name": "New-AzNetworkInterfaceIpConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkInterfaceIpConfigCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "Custom", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "NetworkManagerName": "System.String", - "SecurityAdminConfigurationName": "System.String", - "RuleCollectionName": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", + "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "Primary": "System.Boolean", + "ApplicationGatewayBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "ApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", + "LoadBalancerBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "LoadBalancerInboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "VirtualNetworkTaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]", + "PrivateIpAddressVersion": "System.String", "Name": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAllocationMethod": "System.String", + "ApplicationSecurityGroupsText": "System.String", + "GatewayLoadBalancerText": "System.String", + "PrivateLinkConnectionPropertiesText": "System.String", + "VirtualNetworkTapsText": "System.String", "Etag": "System.String", + "ApplicationGatewayBackendAddressPoolsText": "System.String", + "LoadBalancerInboundNatRulesText": "System.String", + "LoadBalancerBackendAddressPoolsText": "System.String", + "PrivateIpAddress": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeLoadBalancerBackendAddressPools", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeLoadBalancerInboundNatRules", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeApplicationGatewayBackendAddressPools", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeApplicationSecurityGroups", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeGatewayLoadBalancer", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -159158,9 +158016,6 @@ "Parameters": [ { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -159169,37 +158024,38 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RuleCollectionName", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "SecurityAdminConfigurationName", - "AliasList": [ - "ConfigName" - ], + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "NetworkManagerName", + "Name": "Primary", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "SubnetId", "Type": { "Namespace": "System", "Name": "System.String", @@ -159208,16 +158064,49 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Description", + "Name": "Subnet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "Flag", + "Name": "PublicIpAddressId", "Type": { "Namespace": "System", "Name": "System.String", @@ -159226,71 +158115,87 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Protocol", + "Name": "PublicIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } }, - "ValidateSet": [ - "Tcp", - "Udp", - "Icmp", - "Esp", - "Any", - "Ah" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "Direction", + "Name": "LoadBalancerBackendAddressPoolId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "Inbound", - "Outbound" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "Access", + "Name": "LoadBalancerBackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" }, - "ValidateSet": [ - "Allow", - "Deny", - "AlwaysAllow" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "SourceAddressPrefix", + "Name": "LoadBalancerInboundNatRuleId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationAddressPrefix", + "Name": "LoadBalancerInboundNatRule", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SourcePortRange", + "Name": "ApplicationGatewayBackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -159300,39 +158205,41 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationPortRange", + "Name": "ApplicationGatewayBackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Priority", + "Name": "ApplicationSecurityGroupId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "ApplicationSecurityGroup", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "GatewayLoadBalancerId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -159364,9 +158271,6 @@ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -159377,79 +158281,35 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleCollectionName", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", - "AliasList": [ - "ConfigName" + "ValidateSet": [ + "IPv4", + "IPv6" ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkManagerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -159459,7 +158319,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Primary", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -159501,109 +158361,46 @@ ] }, { - "Name": "Custom", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Description", + "Name": "SubnetId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Tcp", - "Udp", - "Icmp", - "Esp", - "Any", - "Ah" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Direction", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Inbound", - "Outbound" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Access", + "Name": "PublicIpAddressId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Allow", - "Deny", - "AlwaysAllow" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SourceAddressPrefix", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DestinationAddressPrefix", + "Name": "LoadBalancerBackendAddressPoolId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -159614,7 +158411,7 @@ }, { "ParameterMetadata": { - "Name": "SourcePortRange", + "Name": "LoadBalancerInboundNatRuleId", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -159630,7 +158427,7 @@ }, { "ParameterMetadata": { - "Name": "DestinationPortRange", + "Name": "ApplicationGatewayBackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -159646,15 +158443,16 @@ }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "ApplicationSecurityGroupId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -159662,9 +158460,6 @@ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -159675,79 +158470,35 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleCollectionName", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", - "AliasList": [ - "ConfigName" + "ValidateSet": [ + "IPv4", + "IPv6" ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkManagerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -159757,7 +158508,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Primary", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -159799,77 +158550,184 @@ ] }, { - "Name": "Default", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "Flag", + "Name": "Subnet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PublicIpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LoadBalancerBackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "LoadBalancerInboundNatRule", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RuleCollectionName", + "Name": "ApplicationGatewayBackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", - "AliasList": [ - "ConfigName" - ], + "Name": "ApplicationSecurityGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "GatewayLoadBalancerId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "NetworkManagerName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -159880,30 +158738,34 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "PrivateIpAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -159914,7 +158776,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Primary", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -159959,9 +158821,9 @@ }, { "VerbName": "New", - "NounName": "AzNetworkManagerSecurityAdminRuleCollection", - "Name": "New-AzNetworkManagerSecurityAdminRuleCollection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminRuleCollectionCommand", + "NounName": "AzNetworkManager", + "Name": "New-AzNetworkManager", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -159970,14 +158832,17 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", - "NetworkManagerName": "System.String", - "SecurityAdminConfigurationName": "System.String", - "AppliesToGroupsText": "System.String", + "NetworkManagerScopeAccesses": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "NetworkManagerScopeAccessesText": "System.String", + "NetworkManagerScopesText": "System.String", + "TagsTable": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -160036,10 +158901,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "SecurityAdminConfigurationName", - "AliasList": [ - "ConfigName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -160048,7 +158910,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "NetworkManagerName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -160057,30 +158919,47 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Description", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AppliesToGroup", + "Name": "NetworkManagerScope", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem" + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CrossTenantScopes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]", + "ManagementGroups": "System.Collections.Generic.List`1[System.String]", + "Subscriptions": "System.Collections.Generic.List`1[System.String]", + "ManagementGroupsText": "System.String", + "SubscriptionsText": "System.String", + "CrossTenantScopesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkManagerScopeAccess", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network", + "Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType" }, "ValidateNotNullOrEmpty": false }, @@ -160147,10 +159026,7 @@ }, { "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", - "AliasList": [ - "ConfigName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -160165,7 +159041,7 @@ }, { "ParameterMetadata": { - "Name": "NetworkManagerName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -160180,26 +159056,26 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -160210,12 +159086,35 @@ }, { "ParameterMetadata": { - "Name": "AppliesToGroup", + "Name": "NetworkManagerScope", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem" + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CrossTenantScopes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]", + "ManagementGroups": "System.Collections.Generic.List`1[System.String]", + "Subscriptions": "System.Collections.Generic.List`1[System.String]", + "ManagementGroupsText": "System.String", + "SubscriptionsText": "System.String", + "CrossTenantScopesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerScopeAccess", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network", + "Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType" }, "ValidateNotNullOrEmpty": false }, @@ -160286,9 +159185,9 @@ }, { "VerbName": "New", - "NounName": "AzNetworkManagerSecurityGroupItem", - "Name": "New-AzNetworkManagerSecurityGroupItem", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityGroupItemCommand", + "NounName": "AzNetworkManagerAddressPrefixItem", + "Name": "New-AzNetworkManagerAddressPrefixItem", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerAddressPrefixItemCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -160297,10 +159196,11 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkGroupId": "System.String" + "AddressPrefix": "System.String", + "AddressPrefixType": "System.String" }, "Methods": [ { @@ -160339,7 +159239,7 @@ ], "Parameters": [ { - "Name": "NetworkGroupId", + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", @@ -160347,6 +159247,19 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "AddressPrefixType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPPrefix", + "ServiceTag" + ], + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -160374,7 +159287,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkGroupId", + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", @@ -160387,6 +159300,25 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "AddressPrefixType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPPrefix", + "ServiceTag" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -160419,9 +159351,9 @@ }, { "VerbName": "New", - "NounName": "AzNetworkManagerStaticMember", - "Name": "New-AzNetworkManagerStaticMember", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerStaticMemberCommand", + "NounName": "AzNetworkManagerConnectivityConfiguration", + "Name": "New-AzNetworkManagerConnectivityConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerConnectivityConfigurationCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -160430,19 +159362,24 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", + "Hubs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]", "NetworkManagerName": "System.String", - "NetworkGroupName": "System.String", - "ResourceId": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", "Name": "System.String", + "SystemDataText": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Description": "System.String", + "ResourceGroupName": "System.String", + "HubsText": "System.String", + "AppliesToGroupsText": "System.String", + "IsGlobal": "System.String", + "DeleteExistingPeering": "System.String", + "ConnectivityTopology": "System.String", "Etag": "System.String", "Id": "System.String" }, @@ -160504,7 +159441,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "NetworkGroupName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -160513,16 +159450,30 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "AppliesToGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConnectivityTopology", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "HubAndSpoke", + "Mesh" + ], + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceId", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -160530,6 +159481,34 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "Hub", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeleteExistingPeering", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IsGlobal", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Force", "Type": { @@ -160608,7 +159587,7 @@ }, { "ParameterMetadata": { - "Name": "NetworkGroupName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -160623,13 +159602,33 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "AppliesToGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ConnectivityTopology", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "HubAndSpoke", + "Mesh" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -160638,7 +159637,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -160646,7 +159645,53 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Hub", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeleteExistingPeering", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IsGlobal", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -160713,10 +159758,10 @@ }, { "VerbName": "New", - "NounName": "AzNetworkManagerSubscriptionConnection", - "Name": "New-AzNetworkManagerSubscriptionConnection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSubscriptionConnectionCommand", - "SupportsShouldProcess": true, + "NounName": "AzNetworkManagerConnectivityGroupItem", + "Name": "New-AzNetworkManagerConnectivityGroupItem", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerConnectivityGroupItemCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -160724,21 +159769,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "ScopeId": "System.String", - "NetworkManagerId": "System.String", - "ConnectionState": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "NetworkGroupId": "System.String", + "UseHubGateway": "System.String", + "IsGlobal": "System.String", + "GroupConnectivity": "System.String" }, "Methods": [ { @@ -160777,46 +159814,38 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "NetworkGroupId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "NetworkManagerId", + "Name": "UseHubGateway", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Description", + "Name": "GroupConnectivity", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "None", + "DirectlyConnected" + ], "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", + "Name": "IsGlobal", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -160851,16 +159880,13 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "NetworkGroupId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -160869,27 +159895,31 @@ }, { "ParameterMetadata": { - "Name": "NetworkManagerId", + "Name": "UseHubGateway", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "GroupConnectivity", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "None", + "DirectlyConnected" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -160899,22 +159929,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", + "Name": "IsGlobal", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -160925,7 +159940,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -160959,9 +159974,9 @@ }, { "VerbName": "New", - "NounName": "AzNetworkProfile", - "Name": "New-AzNetworkProfile", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkProfile", + "NounName": "AzNetworkManagerGroup", + "Name": "New-AzNetworkManagerGroup", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkGroupCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -160969,21 +159984,18 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", - "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ContainerNetworkInterfacesText": "System.String", - "ContainerNetworkInterfaceConfigurationsText": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "MemberType": "System.String", "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "Description": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -161025,7 +160037,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -161034,10 +160049,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -161046,33 +160058,42 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Tag", + "Name": "Description", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ContainerNicConfig", - "AliasList": [ - "ContainerNetworkInterfaceConfiguration" + "Name": "MemberType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "VirtualNetwork", + "Subnet" ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IfMatch", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -161121,7 +160142,10 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -161136,10 +160160,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -161154,7 +160175,22 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -161169,12 +160205,16 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "MemberType", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "VirtualNetwork", + "Subnet" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -161184,15 +160224,11 @@ }, { "ParameterMetadata": { - "Name": "ContainerNicConfig", - "AliasList": [ - "ContainerNetworkInterfaceConfiguration" - ], + "Name": "IfMatch", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -161263,58 +160299,192 @@ }, { "VerbName": "New", - "NounName": "AzNetworkSecurityGroup", - "Name": "New-AzNetworkSecurityGroup", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand", - "SupportsShouldProcess": true, + "NounName": "AzNetworkManagerHub", + "Name": "New-AzNetworkManagerHub", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerHubCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "FlushConnection": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "NetworkInterfacesText": "System.String", - "SubnetsText": "System.String", - "Etag": "System.String", - "DefaultSecurityRulesText": "System.String", - "SecurityRulesText": "System.String", - "FlushConnectionText": "System.String", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" + "ResourceId": "System.String", + "ResourceType": "System.String" }, "Methods": [ { - "Name": "ShouldSerializeSecurityRules", - "ReturnType": "System.Boolean" + "Name": "GetType", + "ReturnType": "System.Type" }, { - "Name": "ShouldSerializeDefaultSecurityRules", - "ReturnType": "System.Boolean" + "Name": "ToString", + "ReturnType": "System.String" }, { - "Name": "ShouldSerializeNetworkInterfaces", + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], "ReturnType": "System.Boolean" }, { - "Name": "ShouldSerializeSubnets", - "ReturnType": "System.Boolean" + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerManagementGroupConnection", + "Name": "New-AzNetworkManagerManagementGroupConnection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerManagementGroupConnectionCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "ScopeId": "System.String", + "NetworkManagerId": "System.String", + "ConnectionState": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ { "Name": "GetType", "ReturnType": "System.Type" @@ -161351,19 +160521,19 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ManagementGroupId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -161372,44 +160542,25 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "NetworkManagerId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FlushConnection", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SecurityRules", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule" - }, "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "Description", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -161418,7 +160569,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -161453,16 +160604,13 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ManagementGroupId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -161471,7 +160619,10 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -161486,57 +160637,26 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "NetworkManagerId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FlushConnection", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "SecurityRules", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Description", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -161547,7 +160667,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -161562,7 +160682,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -161607,36 +160727,29 @@ }, { "VerbName": "New", - "NounName": "AzNetworkSecurityRuleConfig", - "Name": "New-AzNetworkSecurityRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand", - "SupportsShouldProcess": false, + "NounName": "AzNetworkManagerRoutingConfiguration", + "Name": "New-AzNetworkManagerRoutingConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingConfigurationCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "ByName", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", - "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", - "SourceAddressPrefix": "System.Collections.Generic.IList`1[System.String]", - "DestinationAddressPrefix": "System.Collections.Generic.IList`1[System.String]", - "DestinationApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "SourceApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "Priority": "System.Int32", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "ResourceGroupName": "System.String", "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", - "DestinationApplicationSecurityGroupsText": "System.String", - "SourceApplicationSecurityGroupsText": "System.String", - "Direction": "System.String", "Etag": "System.String", - "Access": "System.String", - "Protocol": "System.String", - "ProvisioningState": "System.String", "Id": "System.String" }, "Methods": [ @@ -161677,6 +160790,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -161685,7 +160801,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Description", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -161694,137 +160810,41 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Protocol", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Tcp", - "Udp", - "Icmp", - "Esp", - "Ah", - "*" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SourcePortRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DestinationPortRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SourceAddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, "ValidateNotNullOrEmpty": true }, { - "Name": "DestinationAddressPrefix", + "Name": "Description", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SourceApplicationSecurityGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DestinationApplicationSecurityGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SourceApplicationSecurityGroupId", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationApplicationSecurityGroupId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - { - "Name": "Access", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Allow", - "Deny" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Direction", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Inbound", - "Outbound" - ], - "ValidateNotNullOrEmpty": true - }, { "Name": "DefaultProfile", "AliasList": [ @@ -161848,11 +160868,14 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -161863,11 +160886,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -161875,76 +160898,50 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Tcp", - "Udp", - "Icmp", - "Esp", - "Ah", - "*" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourcePortRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationPortRange", + "Name": "Description", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SourceAddressPrefix", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -161953,14 +160950,13 @@ }, { "ParameterMetadata": { - "Name": "DestinationAddressPrefix", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -161969,32 +160965,44 @@ }, { "ParameterMetadata": { - "Name": "Access", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateSet": [ - "Allow", - "Deny" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Priority", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -162003,17 +161011,13 @@ }, { "ParameterMetadata": { - "Name": "Direction", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "Inbound", - "Outbound" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -162047,34 +161051,130 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerRoutingGroupItem", + "Name": "New-AzNetworkManagerRoutingGroupItem", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingGroupItemCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkGroupId": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "NetworkGroupId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "SetByResource", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "SourceApplicationSecurityGroup", + "Name": "NetworkGroupId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationApplicationSecurityGroup", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -162082,10 +161182,213 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerRoutingRule", + "Name": "New-AzNetworkManagerRoutingRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByName", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Destination": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination", + "NextHop": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "RuleCollectionName": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Destination", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DestinationAddress": "System.String", + "Type": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NextHop", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NextHopAddress": "System.String", + "NextHopType": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByName", + "Parameters": [ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -162096,11 +161399,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Description", + "Name": "RuleCollectionName", "Type": { "Namespace": "System", "Name": "System.String", @@ -162108,126 +161411,121 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Tcp", - "Udp", - "Icmp", - "Esp", - "Ah", - "*" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SourcePortRange", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationPortRange", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SourceAddressPrefix", + "Name": "Destination", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DestinationAddress": "System.String", + "Type": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationAddressPrefix", + "Name": "NextHop", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NextHopAddress": "System.String", + "NextHopType": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Access", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Allow", - "Deny" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -162236,17 +161534,13 @@ }, { "ParameterMetadata": { - "Name": "Direction", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "Inbound", - "Outbound" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -162282,16 +161576,15 @@ ] }, { - "Name": "SetByResourceId", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "SourceApplicationSecurityGroupId", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -162302,12 +161595,11 @@ }, { "ParameterMetadata": { - "Name": "DestinationApplicationSecurityGroupId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -162316,176 +161608,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Description", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Tcp", - "Udp", - "Icmp", - "Esp", - "Ah", - "*" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourcePortRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DestinationPortRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourceAddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DestinationAddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Access", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Allow", - "Deny" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Direction", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Inbound", - "Outbound" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -162518,43 +161640,33 @@ }, { "VerbName": "New", - "NounName": "AzNetworkVirtualAppliance", - "Name": "New-AzNetworkVirtualAppliance", - "ClassName": "Microsoft.Azure.Commands.Network.NewNetworkVirtualApplianceCommand", + "NounName": "AzNetworkManagerRoutingRuleCollection", + "Name": "New-AzNetworkManagerRoutingRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleCollectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ResourceNameParameterSet", + "DefaultParameterSetName": "ByName", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "NetworkProfile": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", - "NvaSku": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "VirtualApplianceConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "VirtualApplianceSites": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AdditionalNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]", - "InternetIngressPublicIps": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]", - "VirtualApplianceNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", - "BootStrapConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", - "CloudInitConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", - "Tag": "System.Collections.Hashtable", - "VirtualApplianceAsn": "System.Nullable`1[System.Int64]", - "Etag": "System.String", - "CloudInitConfiguration": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesTo": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem]", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "DisableBgpRoutePropagation": "System.String", + "AppliesToText": "System.String", "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "Description": "System.String", "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ @@ -162606,7 +161718,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -162615,7 +161730,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -162624,7 +161739,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -162633,88 +161748,31 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubId", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Sku", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Vendor": "System.String", - "BundledScaleUnit": "System.String", - "MarketPlaceVersion": "System.String" - } - }, "ValidateNotNullOrEmpty": false }, { - "Name": "VirtualApplianceAsn", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Identity", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "BootStrapConfigurationBlob", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "CloudInitConfigurationBlob", + "Name": "AppliesTo", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "CloudInitConfiguration", + "Name": "DisableBgpRoutePropagation", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": false }, { @@ -162735,38 +161793,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "AdditionalNic", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InternetIngressIp", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NetworkProfile", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]" - } - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "DefaultProfile", "AliasList": [ @@ -162790,7 +161816,7 @@ ], "ParameterSets": [ { - "Name": "ResourceNameParameterSet", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { @@ -162812,7 +161838,10 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -162827,7 +161856,7 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -162842,7 +161871,7 @@ }, { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -162857,70 +161886,13 @@ }, { "ParameterMetadata": { - "Name": "Sku", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Vendor": "System.String", - "BundledScaleUnit": "System.String", - "MarketPlaceVersion": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "VirtualApplianceAsn", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Identity", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BootStrapConfigurationBlob", + "Name": "Description", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -162929,46 +161901,31 @@ }, { "ParameterMetadata": { - "Name": "CloudInitConfigurationBlob", + "Name": "AppliesTo", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "CloudInitConfiguration", + "Name": "DisableBgpRoutePropagation", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -163005,53 +161962,64 @@ }, { "ParameterMetadata": { - "Name": "AdditionalNic", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "InternetIngressIp", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NetworkProfile", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -163080,19 +162048,120 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerRoutingRuleDestination", + "Name": "New-AzNetworkManagerRoutingRuleDestination", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleDestinationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DestinationAddress": "System.String", + "Type": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "DestinationAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceIdParameterSet", + "Name": "Type", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "AddressPrefix", + "ServiceTag" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "DestinationAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -163101,13 +162170,17 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Type", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "AddressPrefix", + "ServiceTag" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -163116,48 +162189,170 @@ }, { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerRoutingRuleNextHop", + "Name": "New-AzNetworkManagerRoutingRuleNextHop", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerRoutingRuleNextHopCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NextHopAddress": "System.String", + "NextHopType": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "NextHopAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NextHopType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Internet", + "NoNextHop", + "VirtualAppliance", + "VirtualNetworkGateway", + "VnetLocal" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Sku", + "Name": "NextHopAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Vendor": "System.String", - "BundledScaleUnit": "System.String", - "MarketPlaceVersion": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualApplianceAsn", + "Name": "NextHopType", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Internet", + "NoNextHop", + "VirtualAppliance", + "VirtualNetworkGateway", + "VnetLocal" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -163166,35 +162361,148 @@ }, { "ParameterMetadata": { - "Name": "Identity", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerScope", + "Name": "New-AzNetworkManagerScope", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerScopeCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CrossTenantScopes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]", + "ManagementGroups": "System.Collections.Generic.List`1[System.String]", + "Subscriptions": "System.Collections.Generic.List`1[System.String]", + "ManagementGroupsText": "System.String", + "SubscriptionsText": "System.String", + "CrossTenantScopesText": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ManagementGroup", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Subscription", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "BootStrapConfigurationBlob", + "Name": "ManagementGroup", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -163203,43 +162511,13 @@ }, { "ParameterMetadata": { - "Name": "CloudInitConfigurationBlob", + "Name": "Subscription", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "CloudInitConfiguration", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -163249,26 +162527,22 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -163276,91 +162550,183 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerScopeConnection", + "Name": "New-AzNetworkManagerScopeConnection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerScopeConnectionCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "TenantId": "System.String", + "ResourceId": "System.String", + "ConnectionState": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "AdditionalNic", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "InternetIngressIp", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkProfile", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]" + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TenantId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -163375,7 +162741,7 @@ }, { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -163390,31 +162756,11 @@ }, { "ParameterMetadata": { - "Name": "Sku", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Vendor": "System.String", - "BundledScaleUnit": "System.String", - "MarketPlaceVersion": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "VirtualApplianceAsn", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -163425,80 +162771,42 @@ }, { "ParameterMetadata": { - "Name": "Identity", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BootStrapConfigurationBlob", + "Name": "TenantId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "CloudInitConfigurationBlob", + "Name": "ResourceId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "CloudInitConfiguration", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -163508,7 +162816,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -163523,7 +162831,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -163536,56 +162844,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AdditionalNic", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "InternetIngressIp", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkProfile", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -163618,9 +162876,9 @@ }, { "VerbName": "New", - "NounName": "AzNetworkWatcher", - "Name": "New-AzNetworkWatcher", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherCommand", + "NounName": "AzNetworkManagerSecurityAdminConfiguration", + "Name": "New-AzNetworkManagerSecurityAdminConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -163628,17 +162886,21 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]", + "NetworkManagerName": "System.String", + "SecurityType": "System.String", + "ApplyOnNetworkIntentPolicyBasedServicesText": "System.String", + "DeleteExistingNSGs": "System.String", "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "Description": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -163692,7 +162954,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -163701,7 +162963,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -163710,11 +162972,48 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Tag", + "Name": "Description", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ApplyOnNetworkIntentPolicyBasedService", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network", + "Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeleteExistingNSG", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -163763,7 +163062,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -163778,7 +163077,7 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -163793,11 +163092,42 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Description", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ApplyOnNetworkIntentPolicyBasedService", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network", + "Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DeleteExistingNSG", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -163806,6 +163136,36 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -163838,90 +163198,29 @@ }, { "VerbName": "New", - "NounName": "AzNetworkWatcherConnectionMonitor", - "Name": "New-AzNetworkWatcherConnectionMonitor", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorCommand", + "NounName": "AzNetworkManagerSecurityAdminRule", + "Name": "New-AzNetworkManagerSecurityAdminRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByName", + "DefaultParameterSetName": "Custom", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", - "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", - "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", - "AutoStart": "System.Nullable`1[System.Boolean]", - "StartTime": "System.Nullable`1[System.DateTime]", - "MonitoringIntervalInSeconds": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsText": "System.String", - "ConnectionMonitorType": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "SecurityAdminConfigurationName": "System.String", + "RuleCollectionName": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", "Type": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DestinationText": "System.String", - "SourceText": "System.String", - "MonitoringStatus": "System.String", - "Location": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - }, - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", - "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", - "TestGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", - "StartTime": "System.Nullable`1[System.DateTime]", - "Notes": "System.String", - "TestGroupsText": "System.String", - "OutputsText": "System.String", "ProvisioningState": "System.String", - "Type": "System.String", - "Location": "System.String", - "ConnectionMonitorType": "System.String", - "TagsText": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -163963,28 +163262,10 @@ ], "Parameters": [ { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkWatcherName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -163993,7 +163274,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "RuleCollectionName", "Type": { "Namespace": "System", "Name": "System.String", @@ -164002,19 +163283,19 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "SecurityAdminConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -164023,7 +163304,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "SourceResourceId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -164032,122 +163313,113 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "MonitoringIntervalInSeconds", + "Name": "Description", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "SourcePort", + "Name": "Flag", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationResourceId", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Tcp", + "Udp", + "Icmp", + "Esp", + "Any", + "Ah" + ], + "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationPort", + "Name": "Direction", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, + "ValidateSet": [ + "Inbound", + "Outbound" + ], "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationAddress", + "Name": "Access", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Allow", + "Deny", + "AlwaysAllow" + ], + "ValidateNotNullOrEmpty": false }, { - "Name": "TestGroup", + "Name": "SourceAddressPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Output", + "Name": "DestinationAddressPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Note", + "Name": "SourcePortRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ConnectionMonitor", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", - "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", - "TestGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", - "NetworkWatcherName": "System.String", - "ResourceGroupName": "System.String", - "Name": "System.String", - "Notes": "System.String", - "TagsText": "System.String", - "TestGroupsText": "System.String", - "OutputsText": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ConfigureOnly", + "Name": "DestinationPortRange", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "Priority", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -164192,40 +163464,13 @@ ], "ParameterSets": [ { - "Name": "SetByResource", + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ConnectionMonitorName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -164237,11 +163482,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SourceResourceId", + "Name": "RuleCollectionName", "Type": { "Namespace": "System", "Name": "System.String", @@ -164252,46 +163497,29 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "MonitoringIntervalInSeconds", + "Name": "SecurityAdminConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourcePort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationResourceId", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -164299,31 +163527,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DestinationPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -164331,40 +163542,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ConfigureOnly", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -164425,179 +163606,170 @@ ] }, { - "Name": "SetByResourceV2", + "Name": "Custom", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcher", + "Name": "Description", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Tcp", + "Udp", + "Icmp", + "Esp", + "Any", + "Ah" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TestGroup", + "Name": "Direction", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Inbound", + "Outbound" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Output", + "Name": "Access", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Allow", + "Deny", + "AlwaysAllow" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Note", + "Name": "SourceAddressPrefix", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DestinationAddressPrefix", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", + "Name": "SourcePortRange", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DestinationPortRange", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Priority", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByName", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "NetworkWatcherName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -164608,11 +163780,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "RuleCollectionName", "Type": { "Namespace": "System", "Name": "System.String", @@ -164623,13 +163795,13 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "SecurityAdminConfigurationName", "AliasList": [ - "ConnectionMonitorName" + "ConfigName" ], "Type": { "Namespace": "System", @@ -164641,11 +163813,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SourceResourceId", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -164656,46 +163828,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MonitoringIntervalInSeconds", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourcePort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationResourceId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -164703,72 +163840,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DestinationPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DestinationAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ConfigureOnly", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -164829,26 +163904,29 @@ ] }, { - "Name": "SetByNameV2", + "Name": "Default", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcherName", + "Name": "Flag", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -164859,14 +163937,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], + "Name": "RuleCollectionName", "Type": { "Namespace": "System", "Name": "System.String", @@ -164877,69 +163952,55 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TestGroup", + "Name": "SecurityAdminConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Output", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Note", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -164998,30 +164059,202 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerSecurityAdminRuleCollection", + "Name": "New-AzNetworkManagerSecurityAdminRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminRuleCollectionCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", + "NetworkManagerName": "System.String", + "SecurityAdminConfigurationName": "System.String", + "AppliesToGroupsText": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "SetByLocation", + "Name": "SecurityAdminConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AppliesToGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "SecurityAdminConfigurationName", "AliasList": [ - "ConnectionMonitorName" + "ConfigName" ], "Type": { "Namespace": "System", @@ -165033,11 +164266,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SourceResourceId", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -165048,46 +164281,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MonitoringIntervalInSeconds", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SourcePort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationResourceId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -165095,72 +164293,41 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DestinationPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationAddress", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ConfigureOnly", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "AppliesToGroup", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -165219,13 +164386,100 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerSecurityGroupItem", + "Name": "New-AzNetworkManagerSecurityGroupItem", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityGroupItemCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkGroupId": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "NetworkGroupId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "SetByLocationV2", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "NetworkGroupId", "Type": { "Namespace": "System", "Name": "System.String", @@ -165236,87 +164490,245 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DefaultProfile", "AliasList": [ - "ConnectionMonitorName" + "AzContext", + "AzureRmContext", + "AzureCredential" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerSecurityUserConfiguration", + "Name": "New-AzNetworkManagerSecurityUserConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityUserConfigurationCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByName", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByName", + "Parameters": [ { "ParameterMetadata": { - "Name": "TestGroup", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Output", + "Name": "NetworkManagerName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Note", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Description", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -165377,35 +164789,8 @@ ] }, { - "Name": "SetByConnectionMonitorV2Object", + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ConnectionMonitor", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", - "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", - "TestGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", - "NetworkWatcherName": "System.String", - "ResourceGroupName": "System.String", - "Name": "System.String", - "Notes": "System.String", - "TagsText": "System.String", - "TestGroupsText": "System.String", - "OutputsText": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Force", @@ -165463,39 +164848,111 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerSecurityUserGroupItem", + "Name": "New-AzNetworkManagerSecurityUserGroupItem", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityUserGroupItemCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkGroupId": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "NetworkGroupId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", + "Name": "NetworkGroupId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -165529,27 +164986,42 @@ }, { "VerbName": "New", - "NounName": "AzNetworkWatcherConnectionMonitorEndpointObject", - "Name": "New-AzNetworkWatcherConnectionMonitorEndpointObject", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand", + "NounName": "AzNetworkManagerSecurityUserRule", + "Name": "New-AzNetworkManagerSecurityUserRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityUserRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByName", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Scope": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "Sources": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "Destinations": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "SourcePortRanges": "System.Collections.Generic.IList`1[System.String]", + "DestinationPortRanges": "System.Collections.Generic.IList`1[System.String]", + "Protocol": "System.String", "Name": "System.String", + "SystemDataText": "System.String", + "ProvisioningState": "System.String", "Type": "System.String", - "ResourceId": "System.String", - "Address": "System.String", - "CoverageLevel": "System.String", - "ScopeText": "System.String" + "Description": "System.String", + "ResourceGroupName": "System.String", + "DestinationsText": "System.String", + "SourcePortRangesText": "System.String", + "Etag": "System.String", + "SourcesText": "System.String", + "RuleCollectionName": "System.String", + "SecurityUserConfigurationName": "System.String", + "NetworkManagerName": "System.String", + "Direction": "System.String", + "DestinationPortRangesText": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -165589,6 +165061,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -165597,123 +165072,140 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "AzureVM", + "Name": "RuleCollectionName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AzureVNet", + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AzureSubnet", + "Name": "NetworkManagerName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ExternalAddress", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "MMAWorkspaceMachine", + "Name": "Description", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "MMAWorkspaceNetwork", + "Name": "Protocol", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Tcp", + "Udp", + "Icmp", + "Esp", + "Any", + "Ah" + ], "ValidateNotNullOrEmpty": false }, { - "Name": "AzureVMSS", + "Name": "Direction", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Inbound", + "Outbound" + ], + "ValidateNotNullOrEmpty": false }, { - "Name": "AzureArcVM", + "Name": "SourceAddressPrefix", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceId", + "Name": "DestinationAddressPrefix", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Address", + "Name": "SourcePortRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "IncludeItem", + "Name": "DestinationPortRange", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ExcludeItem", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "CoverageLevel", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -165738,11 +165230,14 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -165753,57 +165248,59 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecurityUserConfigurationName", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "ConfigName" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "AzureVM", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "AzureVM", + "Name": "NetworkManagerName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -165814,140 +165311,138 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Address", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Tcp", + "Udp", + "Icmp", + "Esp", + "Any", + "Ah" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Direction", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Inbound", + "Outbound" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "AzureVNet", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "AzureVNet", + "Name": "SourceAddressPrefix", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "DestinationAddressPrefix", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IncludeItem", + "Name": "SourcePortRange", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExcludeItem", + "Name": "DestinationPortRange", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "CoverageLevel", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -165956,15 +165451,15 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -165998,11 +165493,11 @@ ] }, { - "Name": "AzureSubnet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "AzureSubnet", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -166010,37 +165505,6 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExcludeItem", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -166048,34 +165512,19 @@ }, { "ParameterMetadata": { - "Name": "CoverageLevel", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -166103,28 +165552,203 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerSecurityUserRuleCollection", + "Name": "New-AzNetworkManagerSecurityUserRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityUserRuleCollectionCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByName", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem]", + "NetworkManagerName": "System.String", + "SecurityUserConfigurationName": "System.String", + "AppliesToGroupText": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ExternalAddress", + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AppliesToGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { - "Name": "ExternalAddress", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Address", + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -166135,11 +165759,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -166150,94 +165774,63 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "MMAWorkspaceMachine", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "MMAWorkspaceMachine", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Address", + "Name": "AppliesToGroup", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IncludeItem", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -166246,15 +165839,15 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -166288,11 +165881,11 @@ ] }, { - "Name": "MMAWorkspaceNetwork", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "MMAWorkspaceNetwork", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -166300,53 +165893,6 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IncludeItem", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExcludeItem", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -166354,34 +165900,19 @@ }, { "ParameterMetadata": { - "Name": "CoverageLevel", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -166409,28 +165940,171 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkManagerStaticMember", + "Name": "New-AzNetworkManagerStaticMember", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerStaticMemberCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerStaticMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "NetworkGroupName": "System.String", + "ResourceId": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "AzureVMSS", + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "AzureVMSS", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -166441,43 +166115,41 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IncludeItem", + "Name": "NetworkManagerName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExcludeItem", + "Name": "NetworkGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "CoverageLevel", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -166485,44 +166157,33 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -166530,15 +166191,10 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "AzureArcVM", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "AzureArcVM", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -166546,37 +166202,7 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -166613,9 +166239,9 @@ }, { "VerbName": "New", - "NounName": "AzNetworkWatcherConnectionMonitorEndpointScopeItemObject", - "Name": "New-AzNetworkWatcherConnectionMonitorEndpointScopeItemObject", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointScopeItemObjectCommand", + "NounName": "AzNetworkManagerSubscriptionConnection", + "Name": "New-AzNetworkManagerSubscriptionConnection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSubscriptionConnectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -166623,11 +166249,22 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Address": "System.String" + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "ScopeId": "System.String", + "NetworkManagerId": "System.String", + "ConnectionState": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -166665,6 +166302,54 @@ } ], "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -166684,15 +166369,6 @@ } }, "ValidateNotNullOrEmpty": false - }, - { - "Name": "Address", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true } ], "ParameterSets": [ @@ -166701,43 +166377,106 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "Name", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "ResourceName" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Address", + "Name": "NetworkManagerId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false } ] @@ -166746,9 +166485,9 @@ }, { "VerbName": "New", - "NounName": "AzNetworkWatcherConnectionMonitorObject", - "Name": "New-AzNetworkWatcherConnectionMonitorObject", - "ClassName": "Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand", + "NounName": "AzNetworkProfile", + "Name": "New-AzNetworkProfile", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkProfile", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -166757,19 +166496,23 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", - "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", - "TestGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", - "NetworkWatcherName": "System.String", + "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", + "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ContainerNetworkInterfacesText": "System.String", + "ContainerNetworkInterfaceConfigurationsText": "System.String", "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", - "Notes": "System.String", - "TagsText": "System.String", - "TestGroupsText": "System.String", - "OutputsText": "System.String" + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -166808,28 +166551,7 @@ ], "Parameters": [ { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkWatcherName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -166838,7 +166560,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -166856,52 +166581,42 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "TestGroup", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Output", + "Name": "ContainerNicConfig", + "AliasList": [ + "ContainerNetworkInterfaceConfiguration" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" + "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Note", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "AsJob", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -166928,40 +166643,28 @@ ], "ParameterSets": [ { - "Name": "SetByResource", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcher", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ConnectionMonitorName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -166973,49 +166676,66 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TestGroup", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Output", + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ContainerNicConfig", + "AliasList": [ + "ContainerNetworkInterfaceConfiguration" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" + "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Note", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -167024,18 +166744,18 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "AsJob", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -167064,13 +166784,205 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkSecurityGroup", + "Name": "New-AzNetworkSecurityGroup", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityGroupCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", + "FlushConnection": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "NetworkInterfacesText": "System.String", + "SubnetsText": "System.String", + "Etag": "System.String", + "DefaultSecurityRulesText": "System.String", + "SecurityRulesText": "System.String", + "FlushConnectionText": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "ShouldSerializeSecurityRules", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeDefaultSecurityRules", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeNetworkInterfaces", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeSubnets", + "ReturnType": "System.Boolean" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "SetByName", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "FlushConnection", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SecurityRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcherName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -167081,7 +166993,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -167096,14 +167008,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -167114,49 +167023,63 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TestGroup", + "Name": "FlushConnection", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Output", + "Name": "SecurityRules", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" + "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Note", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -167165,18 +167088,18 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "AsJob", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -167205,19 +167128,263 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkSecurityRuleConfig", + "Name": "New-AzNetworkSecurityRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkSecurityRuleConfigCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "SetByResource", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", + "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", + "SourceAddressPrefix": "System.Collections.Generic.IList`1[System.String]", + "DestinationAddressPrefix": "System.Collections.Generic.IList`1[System.String]", + "DestinationApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", + "SourceApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", + "Priority": "System.Int32", + "Description": "System.String", + "Name": "System.String", + "DestinationApplicationSecurityGroupsText": "System.String", + "SourceApplicationSecurityGroupsText": "System.String", + "Direction": "System.String", + "Etag": "System.String", + "Access": "System.String", + "Protocol": "System.String", + "ProvisioningState": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "SetByLocation", + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Tcp", + "Udp", + "Icmp", + "Esp", + "Ah", + "*" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SourcePortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DestinationPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SourceAddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DestinationAddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SourceApplicationSecurityGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationApplicationSecurityGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SourceApplicationSecurityGroupId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationApplicationSecurityGroupId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Access", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Allow", + "Deny" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Direction", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Inbound", + "Outbound" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -167226,10 +167393,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -167237,20 +167401,27 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TestGroup", + "Name": "Protocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Tcp", + "Udp", + "Icmp", + "Esp", + "Ah", + "*" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -167260,12 +167431,12 @@ }, { "ParameterMetadata": { - "Name": "Output", + "Name": "SourcePortRange", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -167276,12 +167447,64 @@ }, { "ParameterMetadata": { - "Name": "Note", + "Name": "DestinationPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SourceAddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DestinationAddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Access", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Allow", + "Deny" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -167291,18 +167514,37 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Priority", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Direction", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Inbound", + "Outbound" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -167333,14 +167575,43 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByResource", "Parameters": [ + { + "ParameterMetadata": { + "Name": "SourceApplicationSecurityGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DestinationApplicationSecurityGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ConnectionMonitorName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -167355,12 +167626,11 @@ }, { "ParameterMetadata": { - "Name": "TestGroup", + "Name": "Description", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -167371,13 +167641,20 @@ }, { "ParameterMetadata": { - "Name": "Output", + "Name": "Protocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Tcp", + "Udp", + "Icmp", + "Esp", + "Ah", + "*" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -167387,11 +167664,12 @@ }, { "ParameterMetadata": { - "Name": "Note", + "Name": "SourcePortRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -167402,155 +167680,44 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DestinationPortRange", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "SourceAddressPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkWatcherConnectionMonitorOutputObject", - "Name": "New-AzNetworkWatcherConnectionMonitorOutputObject", - "ClassName": "Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorOutputObjectCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings", - "Type": "System.String", - "WorkspaceSettingsText": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "OutputType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "WorkspaceResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "OutputType", + "Name": "DestinationAddressPrefix", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -167561,364 +167728,30 @@ }, { "ParameterMetadata": { - "Name": "WorkspaceResourceId", + "Name": "Access", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "ValidateSet": [ + "Allow", + "Deny" ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkWatcherConnectionMonitorProtocolConfigurationObject", - "Name": "New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject", - "ClassName": "Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisableTraceRoute": "System.Nullable`1[System.Boolean]", - "Port": "System.Nullable`1[System.Int32]", - "DestinationPortBehavior": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - }, - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RequestHeaders": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]", - "ValidStatusCodeRanges": "System.Collections.Generic.List`1[System.String]", - "PreferHTTPS": "System.Nullable`1[System.Boolean]", - "Port": "System.Nullable`1[System.Int32]", - "Method": "System.String", - "Path": "System.String", - "RequestHeadersText": "System.String", - "ValidStatusCodeRangesText": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - }, - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisableTraceRoute": "System.Nullable`1[System.Boolean]" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "TcpProtocol", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HttpProtocol", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IcmpProtocol", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Port", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.UInt16]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt16, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt16" - ] - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DisableTraceRoute", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Method", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Path", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RequestHeader", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ValidStatusCodeRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PreferHTTPS", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DestinationPortBehavior", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "TCP", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "TcpProtocol", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Port", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.UInt16]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt16, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt16" - ] - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DisableTraceRoute", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -167929,12 +167762,16 @@ }, { "ParameterMetadata": { - "Name": "DestinationPortBehavior", + "Name": "Direction", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Inbound", + "Outbound" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -167971,35 +167808,34 @@ ] }, { - "Name": "HTTP", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "HttpProtocol", + "Name": "SourceApplicationSecurityGroupId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Port", + "Name": "DestinationApplicationSecurityGroupId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.UInt16]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt16, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt16" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -168008,7 +167844,22 @@ }, { "ParameterMetadata": { - "Name": "Method", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -168023,12 +167874,20 @@ }, { "ParameterMetadata": { - "Name": "Path", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Tcp", + "Udp", + "Icmp", + "Esp", + "Ah", + "*" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -168038,11 +167897,12 @@ }, { "ParameterMetadata": { - "Name": "RequestHeader", + "Name": "SourcePortRange", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -168053,7 +167913,7 @@ }, { "ParameterMetadata": { - "Name": "ValidStatusCodeRange", + "Name": "DestinationPortRange", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -168069,11 +167929,12 @@ }, { "ParameterMetadata": { - "Name": "PreferHTTPS", + "Name": "SourceAddressPrefix", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -168084,57 +167945,46 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DestinationAddressPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ICMP", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "IcmpProtocol", + "Name": "Access", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Allow", + "Deny" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableTraceRoute", + "Name": "Priority", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -168145,35 +167995,23 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Direction", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Inbound", + "Outbound" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -168206,27 +168044,44 @@ }, { "VerbName": "New", - "NounName": "AzNetworkWatcherConnectionMonitorTestConfigurationObject", - "Name": "New-AzNetworkWatcherConnectionMonitorTestConfigurationObject", - "ClassName": "Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand", + "NounName": "AzNetworkVirtualAppliance", + "Name": "New-AzNetworkVirtualAppliance", + "ClassName": "Microsoft.Azure.Commands.Network.NewNetworkVirtualApplianceCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ResourceNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", - "SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold", - "TestFrequencySec": "System.Nullable`1[System.Int32]", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "NetworkProfile": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", + "NvaSku": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", + "VirtualApplianceConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "VirtualApplianceSites": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AdditionalNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]", + "InternetIngressPublicIps": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]", + "VirtualApplianceNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", + "BootStrapConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", + "CloudInitConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", + "Tag": "System.Collections.Hashtable", + "VirtualApplianceAsn": "System.Nullable`1[System.Int64]", + "Etag": "System.String", + "CloudInitConfiguration": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", - "PreferredIPVersion": "System.String", - "ProtocolConfigurationText": "System.String", - "SuccessThresholdText": "System.String" + "ProvisioningState": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -168266,6 +168121,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -168274,10 +168132,57 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "TestFrequencySec", - "AliasList": [ - "TestFrequency" - ], + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VirtualHubId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Sku", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Vendor": "System.String", + "BundledScaleUnit": "System.String", + "MarketPlaceVersion": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualApplianceAsn", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -168286,40 +168191,42 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ProtocolConfiguration", + "Name": "Identity", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "SuccessThresholdChecksFailedPercent", + "Name": "BootStrapConfigurationBlob", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, { - "Name": "SuccessThresholdRoundTripTimeMs", + "Name": "CloudInitConfigurationBlob", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Double]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Double" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, { - "Name": "PreferredIPVersion", + "Name": "CloudInitConfiguration", "Type": { "Namespace": "System", "Name": "System.String", @@ -168327,6 +168234,65 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AdditionalNic", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InternetIngressIp", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkProfile", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]" + } + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -168350,11 +168316,14 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ResourceNameParameterSet", "Parameters": [ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -168365,14 +168334,76 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TestFrequencySec", - "AliasList": [ - "TestFrequency" - ], + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualHubId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Sku", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Vendor": "System.String", + "BundledScaleUnit": "System.String", + "MarketPlaceVersion": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualApplianceAsn", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -168383,62 +168414,64 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ProtocolConfiguration", + "Name": "Identity", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SuccessThresholdChecksFailedPercent", + "Name": "BootStrapConfigurationBlob", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SuccessThresholdRoundTripTimeMs", + "Name": "CloudInitConfigurationBlob", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Double]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Double" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PreferredIPVersion", + "Name": "CloudInitConfiguration", "Type": { "Namespace": "System", "Name": "System.String", @@ -168449,8 +168482,103 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AdditionalNic", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InternetIngressIp", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkProfile", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -168478,33 +168606,568 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkWatcherConnectionMonitorTestGroupObject", - "Name": "New-AzNetworkWatcherConnectionMonitorTestGroupObject", - "ClassName": "Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestGroupObjectCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "Destinations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "TestConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", - "Disable": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TestConfigurationsText": "System.String", - "SourcesText": "System.String", - "DestinationsText": "System.String" + "Name": "ResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualHubId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Sku", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Vendor": "System.String", + "BundledScaleUnit": "System.String", + "MarketPlaceVersion": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualApplianceAsn", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Identity", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BootStrapConfigurationBlob", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "CloudInitConfigurationBlob", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "CloudInitConfiguration", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AdditionalNic", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InternetIngressIp", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkProfile", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualHubId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Sku", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Vendor": "System.String", + "BundledScaleUnit": "System.String", + "MarketPlaceVersion": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualApplianceAsn", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Identity", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BootStrapConfigurationBlob", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "CloudInitConfigurationBlob", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "CloudInitConfiguration", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AdditionalNic", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "InternetIngressIp", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkProfile", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkWatcher", + "Name": "New-AzNetworkWatcher", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -168544,6 +169207,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -168552,47 +169218,29 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "TestConfiguration", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject" - ] - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Source", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject" - ] + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "Destination", + "Name": "Location", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject" - ] + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "Disable", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -168624,6 +169272,9 @@ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -168634,76 +169285,52 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TestConfiguration", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject" - ] - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Source", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject" - ] + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Destination", + "Name": "Location", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject" - ] + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Disable", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -168737,9 +169364,9 @@ }, { "VerbName": "New", - "NounName": "AzNetworkWatcherFlowLog", - "Name": "New-AzNetworkWatcherFlowLog", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand", + "NounName": "AzNetworkWatcherConnectionMonitor", + "Name": "New-AzNetworkWatcherConnectionMonitor", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -168748,31 +169375,81 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", - "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties", - "Tag": "System.Collections.Hashtable", - "Enabled": "System.Nullable`1[System.Boolean]", - "ProvisioningState": "System.String", + "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", + "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "AutoStart": "System.Nullable`1[System.Boolean]", + "StartTime": "System.Nullable`1[System.DateTime]", + "MonitoringIntervalInSeconds": "System.Nullable`1[System.Int32]", "Name": "System.String", - "TagsTable": "System.String", + "TagsText": "System.String", + "ConnectionMonitorType": "System.String", "Type": "System.String", - "ResourceGuid": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DestinationText": "System.String", + "SourceText": "System.String", + "MonitoringStatus": "System.String", "Location": "System.String", - "ResourceGroupName": "System.String", - "FormatText": "System.String", - "IdentityText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + }, + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", + "TestGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", + "StartTime": "System.Nullable`1[System.DateTime]", + "Notes": "System.String", + "TestGroupsText": "System.String", + "OutputsText": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Location": "System.String", + "ConnectionMonitorType": "System.String", + "TagsText": "System.String", + "Name": "System.String", "Etag": "System.String", - "RetentionPolicyText": "System.String", - "EnabledFilteringCriteria": "System.String", - "StorageId": "System.String", - "TargetResourceGuid": "System.String", - "TargetResourceId": "System.String", - "FlowAnalyticsConfigurationText": "System.String", "Id": "System.String" }, "Methods": [ @@ -168816,7 +169493,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -168862,7 +169539,7 @@ { "Name": "Name", "AliasList": [ - "FlowLogName" + "ConnectionMonitorName" ], "Type": { "Namespace": "System", @@ -168872,7 +169549,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "TargetResourceId", + "Name": "SourceResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -168881,55 +169558,50 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "StorageId", + "Name": "MonitoringIntervalInSeconds", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": true }, { - "Name": "EnabledFilteringCriteria", + "Name": "SourcePort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false }, { - "Name": "Enabled", + "Name": "DestinationResourceId", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "EnableRetention", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RetentionPolicyDays", + "Name": "DestinationPort", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, { - "Name": "FormatType", + "Name": "DestinationAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -168938,48 +169610,63 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "FormatVersion", + "Name": "TestGroup", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "EnableTrafficAnalytics", + "Name": "Output", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, "ValidateNotNullOrEmpty": false }, { - "Name": "TrafficAnalyticsWorkspaceId", + "Name": "Note", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConnectionMonitor", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", + "TestGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", + "NetworkWatcherName": "System.String", + "ResourceGroupName": "System.String", + "Name": "System.String", + "Notes": "System.String", + "TagsText": "System.String", + "TestGroupsText": "System.String", + "OutputsText": "System.String" + } + }, "ValidateNotNullOrEmpty": true }, { - "Name": "TrafficAnalyticsInterval", + "Name": "ConfigureOnly", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "Tag", @@ -168991,19 +169678,16 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -169042,7 +169726,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -169067,7 +169751,7 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "FlowLogName" + "ConnectionMonitorName" ], "Type": { "Namespace": "System", @@ -169083,7 +169767,7 @@ }, { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "SourceResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -169098,28 +169782,33 @@ }, { "ParameterMetadata": { - "Name": "StorageId", + "Name": "MonitoringIntervalInSeconds", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnabledFilteringCriteria", + "Name": "SourcePort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -169128,29 +169817,14 @@ }, { "ParameterMetadata": { - "Name": "Enabled", + "Name": "DestinationResourceId", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableRetention", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -169158,25 +169832,24 @@ }, { "ParameterMetadata": { - "Name": "RetentionPolicyDays", + "Name": "DestinationPort", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FormatType", + "Name": "DestinationAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -169191,16 +169864,13 @@ }, { "ParameterMetadata": { - "Name": "FormatVersion", + "Name": "ConfigureOnly", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -169224,16 +169894,13 @@ }, { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -169242,7 +169909,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -169284,7 +169951,7 @@ ] }, { - "Name": "SetByResourceWithTA", + "Name": "SetByResourceV2", "Parameters": [ { "ParameterMetadata": { @@ -169292,7 +169959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -169315,13 +169982,16 @@ }, { "ParameterMetadata": { - "Name": "EnableTrafficAnalytics", + "Name": "Name", + "AliasList": [ + "ConnectionMonitorName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -169330,32 +170000,29 @@ }, { "ParameterMetadata": { - "Name": "TrafficAnalyticsWorkspaceId", + "Name": "TestGroup", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TrafficAnalyticsInterval", + "Name": "Output", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -169365,175 +170032,43 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "FlowLogName" - ], + "Name": "Note", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StorageId", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnabledFilteringCriteria", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Enabled", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableRetention", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RetentionPolicyDays", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FormatType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FormatVersion", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -169542,7 +170077,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -169620,7 +170155,7 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "FlowLogName" + "ConnectionMonitorName" ], "Type": { "Namespace": "System", @@ -169636,7 +170171,7 @@ }, { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "SourceResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -169651,28 +170186,33 @@ }, { "ParameterMetadata": { - "Name": "StorageId", + "Name": "MonitoringIntervalInSeconds", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnabledFilteringCriteria", + "Name": "SourcePort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -169681,29 +170221,14 @@ }, { "ParameterMetadata": { - "Name": "Enabled", + "Name": "DestinationResourceId", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableRetention", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -169711,25 +170236,24 @@ }, { "ParameterMetadata": { - "Name": "RetentionPolicyDays", + "Name": "DestinationPort", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FormatType", + "Name": "DestinationAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -169744,16 +170268,13 @@ }, { "ParameterMetadata": { - "Name": "FormatVersion", + "Name": "ConfigureOnly", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -169777,16 +170298,13 @@ }, { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -169795,7 +170313,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -169837,7 +170355,7 @@ ] }, { - "Name": "SetByNameWithTA", + "Name": "SetByNameV2", "Parameters": [ { "ParameterMetadata": { @@ -169869,61 +170387,11 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "EnableTrafficAnalytics", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TrafficAnalyticsWorkspaceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TrafficAnalyticsInterval", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "FlowLogName" + "ConnectionMonitorName" ], "Type": { "Namespace": "System", @@ -169939,56 +170407,12 @@ }, { "ParameterMetadata": { - "Name": "TargetResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnabledFilteringCriteria", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Enabled", + "Name": "TestGroup", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true }, @@ -169999,29 +170423,12 @@ }, { "ParameterMetadata": { - "Name": "EnableRetention", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RetentionPolicyDays", + "Name": "Output", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, "ValidateNotNullOrEmpty": false }, @@ -170032,30 +170439,12 @@ }, { "ParameterMetadata": { - "Name": "FormatType", + "Name": "Note", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FormatVersion", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -170080,16 +170469,13 @@ }, { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -170098,7 +170484,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -170161,7 +170547,7 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "FlowLogName" + "ConnectionMonitorName" ], "Type": { "Namespace": "System", @@ -170177,7 +170563,7 @@ }, { "ParameterMetadata": { - "Name": "TargetResourceId", + "Name": "SourceResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -170192,28 +170578,33 @@ }, { "ParameterMetadata": { - "Name": "StorageId", + "Name": "MonitoringIntervalInSeconds", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnabledFilteringCriteria", + "Name": "SourcePort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -170222,29 +170613,14 @@ }, { "ParameterMetadata": { - "Name": "Enabled", + "Name": "DestinationResourceId", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableRetention", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -170252,25 +170628,24 @@ }, { "ParameterMetadata": { - "Name": "RetentionPolicyDays", + "Name": "DestinationPort", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FormatType", + "Name": "DestinationAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -170285,16 +170660,13 @@ }, { "ParameterMetadata": { - "Name": "FormatVersion", + "Name": "ConfigureOnly", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -170318,16 +170690,13 @@ }, { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -170336,7 +170705,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -170378,7 +170747,7 @@ ] }, { - "Name": "SetByLocationWithTA", + "Name": "SetByLocationV2", "Parameters": [ { "ParameterMetadata": { @@ -170395,61 +170764,11 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "EnableTrafficAnalytics", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TrafficAnalyticsWorkspaceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TrafficAnalyticsInterval", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "FlowLogName" + "ConnectionMonitorName" ], "Type": { "Namespace": "System", @@ -170465,56 +170784,12 @@ }, { "ParameterMetadata": { - "Name": "TargetResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnabledFilteringCriteria", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Enabled", + "Name": "TestGroup", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true }, @@ -170525,29 +170800,12 @@ }, { "ParameterMetadata": { - "Name": "EnableRetention", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RetentionPolicyDays", + "Name": "Output", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, "ValidateNotNullOrEmpty": false }, @@ -170558,30 +170816,12 @@ }, { "ParameterMetadata": { - "Name": "FormatType", + "Name": "Note", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FormatVersion", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -170606,16 +170846,13 @@ }, { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -170624,7 +170861,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -170666,78 +170903,27 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByConnectionMonitorV2Object", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "FlowLogName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TargetResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "StorageId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnabledFilteringCriteria", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Enabled", + "Name": "ConnectionMonitor", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", + "TestGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", + "NetworkWatcherName": "System.String", + "ResourceGroupName": "System.String", + "Name": "System.String", + "Notes": "System.String", + "TagsText": "System.String", + "TestGroupsText": "System.String", + "OutputsText": "System.String" + } }, "ValidateNotNullOrEmpty": true }, @@ -170748,11 +170934,11 @@ }, { "ParameterMetadata": { - "Name": "EnableRetention", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -170763,14 +170949,11 @@ }, { "ParameterMetadata": { - "Name": "RetentionPolicyDays", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -170781,29 +170964,22 @@ }, { "ParameterMetadata": { - "Name": "FormatType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FormatVersion", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -170811,14 +170987,19 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Tag", + "Name": "Force", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -170829,25 +171010,7 @@ }, { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -170892,10 +171055,10 @@ }, { "VerbName": "New", - "NounName": "AzNetworkWatcherNetworkConfigurationDiagnosticProfile", - "Name": "New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile", - "ClassName": "Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand", - "SupportsShouldProcess": false, + "NounName": "AzNetworkWatcherConnectionMonitorEndpointObject", + "Name": "New-AzNetworkWatcherConnectionMonitorEndpointObject", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointObjectCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -170903,14 +171066,16 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Direction": "System.String", - "Protocol": "System.String", - "Source": "System.String", - "Destination": "System.String", - "DestinationPort": "System.String" + "Scope": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope", + "Name": "System.String", + "Type": "System.String", + "ResourceId": "System.String", + "Address": "System.String", + "CoverageLevel": "System.String", + "ScopeText": "System.String" }, "Methods": [ { @@ -170949,7 +171114,7 @@ ], "Parameters": [ { - "Name": "Direction", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -170958,7 +171123,79 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Protocol", + "Name": "AzureVM", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureVNet", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureSubnet", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ExternalAddress", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MMAWorkspaceMachine", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MMAWorkspaceNetwork", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureVMSS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AzureArcVM", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -170967,7 +171204,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Source", + "Name": "Address", "Type": { "Namespace": "System", "Name": "System.String", @@ -170976,16 +171213,27 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Destination", + "Name": "IncludeItem", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" }, "ValidateNotNullOrEmpty": true }, { - "Name": "DestinationPort", + "Name": "ExcludeItem", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CoverageLevel", "Type": { "Namespace": "System", "Name": "System.String", @@ -171020,7 +171268,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Direction", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -171030,27 +171278,58 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AzureVM", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AzureVM", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Source", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -171061,11 +171340,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Destination", + "Name": "Address", "Type": { "Namespace": "System", "Name": "System.String", @@ -171073,14 +171352,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -171091,7 +171370,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -171120,297 +171399,28 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzNetworkWatcherPacketCapture", - "Name": "New-AzNetworkWatcherPacketCapture", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherPacketCaptureCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Scope": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", - "StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", - "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", - "TargetType": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType]", - "BytesToCapturePerPacket": "System.Nullable`1[System.Int32]", - "TimeLimitInSeconds": "System.Nullable`1[System.Int32]", - "TotalBytesPerSession": "System.Nullable`1[System.UInt32]", - "ProvisioningState": "System.String", - "Target": "System.String", - "FiltersText": "System.String", - "ScopeText": "System.String", - "StorageLocationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "ShouldSerializeStorageLocation", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeFilters", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "NetworkWatcher", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkWatcherName", - "AliasList": [ - "Name" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PacketCaptureName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "TargetVirtualMachineId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "StorageAccountId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "StoragePath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "LocalFilePath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "BytesToCapturePerPacket", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TotalBytesPerSession", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.UInt32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 4294967295, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TimeLimitInSeconds", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Filter", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "SetByResource", + "Name": "AzureVNet", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcher", + "Name": "AzureVNet", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PacketCaptureName", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -171421,41 +171431,43 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetVirtualMachineId", + "Name": "IncludeItem", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StorageAccountId", + "Name": "ExcludeItem", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StoragePath", + "Name": "CoverageLevel", "Type": { "Namespace": "System", "Name": "System.String", @@ -171466,11 +171478,11 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LocalFilePath", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -171478,81 +171490,82 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BytesToCapturePerPacket", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AzureSubnet", + "Parameters": [ { "ParameterMetadata": { - "Name": "TotalBytesPerSession", + "Name": "AzureSubnet", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.UInt32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt32" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 4294967295, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TimeLimitInSeconds", + "Name": "ResourceId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Filter", + "Name": "ExcludeItem", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -171561,19 +171574,34 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "CoverageLevel", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -171603,29 +171631,26 @@ ] }, { - "Name": "SetByName", + "Name": "ExternalAddress", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkWatcherName", - "AliasList": [ - "Name" - ], + "Name": "ExternalAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Address", "Type": { "Namespace": "System", "Name": "System.String", @@ -171636,11 +171661,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PacketCaptureName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -171651,41 +171676,57 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetVirtualMachineId", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "MMAWorkspaceMachine", + "Parameters": [ { "ParameterMetadata": { - "Name": "StorageAccountId", + "Name": "MMAWorkspaceMachine", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StoragePath", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -171693,14 +171734,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LocalFilePath", + "Name": "Address", "Type": { "Namespace": "System", "Name": "System.String", @@ -171708,81 +171749,21 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BytesToCapturePerPacket", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TotalBytesPerSession", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.UInt32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 4294967295, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TimeLimitInSeconds", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Filter", + "Name": "IncludeItem", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -171791,15 +171772,15 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -171833,15 +171814,15 @@ ] }, { - "Name": "SetByLocation", + "Name": "MMAWorkspaceNetwork", "Parameters": [ { "ParameterMetadata": { - "Name": "Location", + "Name": "MMAWorkspaceNetwork", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -171852,7 +171833,7 @@ }, { "ParameterMetadata": { - "Name": "PacketCaptureName", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -171863,41 +171844,43 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetVirtualMachineId", + "Name": "IncludeItem", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StorageAccountId", + "Name": "ExcludeItem", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StoragePath", + "Name": "CoverageLevel", "Type": { "Namespace": "System", "Name": "System.String", @@ -171908,11 +171891,11 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LocalFilePath", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -171920,98 +171903,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BytesToCapturePerPacket", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TotalBytesPerSession", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.UInt32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 4294967295, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TimeLimitInSeconds", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Filter", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -172045,26 +171937,26 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "AzureVMSS", "Parameters": [ { "ParameterMetadata": { - "Name": "PacketCaptureName", + "Name": "AzureVMSS", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetVirtualMachineId", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -172075,41 +171967,43 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StorageAccountId", + "Name": "IncludeItem", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "StoragePath", + "Name": "ExcludeItem", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LocalFilePath", + "Name": "CoverageLevel", "Type": { "Namespace": "System", "Name": "System.String", @@ -172120,95 +172014,95 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BytesToCapturePerPacket", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TotalBytesPerSession", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.UInt32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt32" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 4294967295, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "AzureArcVM", + "Parameters": [ { "ParameterMetadata": { - "Name": "TimeLimitInSeconds", + "Name": "AzureArcVM", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Filter", + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -172245,45 +172139,165 @@ }, { "VerbName": "New", - "NounName": "AzNetworkWatcherPacketCaptureV2", - "Name": "New-AzNetworkWatcherPacketCaptureV2", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherPacketCaptureCommandV2", + "NounName": "AzNetworkWatcherConnectionMonitorEndpointScopeItemObject", + "Name": "New-AzNetworkWatcherConnectionMonitorEndpointScopeItemObject", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherConnectionMonitorEndpointScopeItemObjectCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Scope": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", - "StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", - "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", - "TargetType": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType]", - "BytesToCapturePerPacket": "System.Nullable`1[System.Int32]", - "TimeLimitInSeconds": "System.Nullable`1[System.Int32]", - "TotalBytesPerSession": "System.Nullable`1[System.UInt32]", - "ProvisioningState": "System.String", - "Target": "System.String", - "FiltersText": "System.String", - "ScopeText": "System.String", - "StorageLocationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Address": "System.String" }, "Methods": [ { - "Name": "ShouldSerializeStorageLocation", - "ReturnType": "System.Boolean" + "Name": "GetType", + "ReturnType": "System.Type" }, { - "Name": "ShouldSerializeFilters", + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], "ReturnType": "System.Boolean" }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Address", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkWatcherConnectionMonitorObject", + "Name": "New-AzNetworkWatcherConnectionMonitorObject", + "ClassName": "Microsoft.Azure.Commands.Network.AzureNetworkWatcherConnectionMonitorObjectCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", + "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", + "TestGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", + "NetworkWatcherName": "System.String", + "ResourceGroupName": "System.String", + "Name": "System.String", + "Notes": "System.String", + "TagsText": "System.String", + "TestGroupsText": "System.String", + "OutputsText": "System.String" + }, + "Methods": [ { "Name": "GetType", "ReturnType": "System.Type" @@ -172324,7 +172338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -172370,7 +172384,7 @@ { "Name": "Name", "AliasList": [ - "PacketCaptureName" + "ConnectionMonitorName" ], "Type": { "Namespace": "System", @@ -172380,25 +172394,27 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "TargetId", + "Name": "TestGroup", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true }, { - "Name": "StorageAccountId", + "Name": "Output", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, "ValidateNotNullOrEmpty": true }, { - "Name": "StoragePath", + "Name": "Note", "Type": { "Namespace": "System", "Name": "System.String", @@ -172407,104 +172423,21 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "LocalFilePath", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "BytesToCapturePerPacket", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TotalBytesPerSession", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.UInt32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 4294967295, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TimeLimitInSecond", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Scope", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Include": "System.Collections.Generic.List`1[System.String]", - "Exclude": "System.Collections.Generic.List`1[System.String]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TargetType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Filter", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", @@ -172529,7 +172462,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -172547,14 +172480,14 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "PacketCaptureName" + "ConnectionMonitorName" ], "Type": { "Namespace": "System", @@ -172566,141 +172499,34 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TargetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StorageAccountId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StoragePath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LocalFilePath", + "Name": "TestGroup", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BytesToCapturePerPacket", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TotalBytesPerSession", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.UInt32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 4294967295, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TimeLimitInSecond", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Scope", + "Name": "Output", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Include": "System.Collections.Generic.List`1[System.String]", - "Exclude": "System.Collections.Generic.List`1[System.String]" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -172709,7 +172535,7 @@ }, { "ParameterMetadata": { - "Name": "TargetType", + "Name": "Note", "Type": { "Namespace": "System", "Name": "System.String", @@ -172724,34 +172550,18 @@ }, { "ParameterMetadata": { - "Name": "Filter", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -172796,7 +172606,7 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -172812,13 +172622,13 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "PacketCaptureName" + "ConnectionMonitorName" ], "Type": { "Namespace": "System", @@ -172830,141 +172640,34 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TargetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StorageAccountId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StoragePath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LocalFilePath", + "Name": "TestGroup", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BytesToCapturePerPacket", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TotalBytesPerSession", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.UInt32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 4294967295, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TimeLimitInSecond", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Scope", + "Name": "Output", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Include": "System.Collections.Generic.List`1[System.String]", - "Exclude": "System.Collections.Generic.List`1[System.String]" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -172973,7 +172676,7 @@ }, { "ParameterMetadata": { - "Name": "TargetType", + "Name": "Note", "Type": { "Namespace": "System", "Name": "System.String", @@ -172988,34 +172691,18 @@ }, { "ParameterMetadata": { - "Name": "Filter", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -173067,7 +172754,7 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "PacketCaptureName" + "ConnectionMonitorName" ], "Type": { "Namespace": "System", @@ -173079,141 +172766,34 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TargetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StorageAccountId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StoragePath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LocalFilePath", + "Name": "TestGroup", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BytesToCapturePerPacket", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TotalBytesPerSession", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.UInt32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 4294967295, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TimeLimitInSecond", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Scope", + "Name": "Output", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Include": "System.Collections.Generic.List`1[System.String]", - "Exclude": "System.Collections.Generic.List`1[System.String]" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -173222,7 +172802,7 @@ }, { "ParameterMetadata": { - "Name": "TargetType", + "Name": "Note", "Type": { "Namespace": "System", "Name": "System.String", @@ -173237,34 +172817,18 @@ }, { "ParameterMetadata": { - "Name": "Filter", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -173301,7 +172865,7 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "PacketCaptureName" + "ConnectionMonitorName" ], "Type": { "Namespace": "System", @@ -173313,141 +172877,34 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TargetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StorageAccountId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "StoragePath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LocalFilePath", + "Name": "TestGroup", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BytesToCapturePerPacket", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TotalBytesPerSession", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.UInt32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.UInt32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 4294967295, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "TimeLimitInSecond", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Scope", + "Name": "Output", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Include": "System.Collections.Generic.List`1[System.String]", - "Exclude": "System.Collections.Generic.List`1[System.String]" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -173456,7 +172913,7 @@ }, { "ParameterMetadata": { - "Name": "TargetType", + "Name": "Note", "Type": { "Namespace": "System", "Name": "System.String", @@ -173471,34 +172928,18 @@ }, { "ParameterMetadata": { - "Name": "Filter", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -173532,10 +172973,10 @@ }, { "VerbName": "New", - "NounName": "AzNetworkWatcherProtocolConfiguration", - "Name": "New-AzNetworkWatcherProtocolConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration", - "SupportsShouldProcess": false, + "NounName": "AzNetworkWatcherConnectionMonitorOutputObject", + "Name": "New-AzNetworkWatcherConnectionMonitorOutputObject", + "ClassName": "Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorOutputObjectCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -173543,13 +172984,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Header": "System.Collections.IDictionary", - "ValidStatusCode": "System.Int32[]", - "Protocol": "System.String", - "Method": "System.String" + "WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings", + "Type": "System.String", + "WorkspaceSettingsText": "System.String" }, "Methods": [ { @@ -173588,7 +173028,7 @@ ], "Parameters": [ { - "Name": "Protocol", + "Name": "OutputType", "Type": { "Namespace": "System", "Name": "System.String", @@ -173597,7 +173037,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Method", + "Name": "WorkspaceResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -173605,25 +173045,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "Header", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.IDictionary", - "AssemblyQualifiedName": "System.Collections.IDictionary, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ValidStatusCode", - "Type": { - "Namespace": "System", - "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.Int32" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "DefaultProfile", "AliasList": [ @@ -173651,7 +173072,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Protocol", + "Name": "OutputType", "Type": { "Namespace": "System", "Name": "System.String", @@ -173659,14 +173080,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Method", + "Name": "WorkspaceResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -173674,38 +173095,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Header", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.IDictionary", - "AssemblyQualifiedName": "System.Collections.IDictionary, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ValidStatusCode", - "Type": { - "Namespace": "System", - "Name": "System.Int32[]", - "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.Int32" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -173742,9 +173132,9 @@ }, { "VerbName": "New", - "NounName": "AzO365PolicyProperty", - "Name": "New-AzO365PolicyProperty", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand", + "NounName": "AzNetworkWatcherConnectionMonitorProtocolConfigurationObject", + "Name": "New-AzNetworkWatcherConnectionMonitorProtocolConfigurationObject", + "ClassName": "Microsoft.Azure.Commands.Network.NetworkWatcher.NewNetworkWatcherConnectionMonitorProtocolConfigurationObject", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -173753,10 +173143,103 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTcpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + "DisableTraceRoute": "System.Nullable`1[System.Boolean]", + "Port": "System.Nullable`1[System.Int32]", + "DestinationPortBehavior": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + }, + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorHttpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RequestHeaders": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]", + "ValidStatusCodeRanges": "System.Collections.Generic.List`1[System.String]", + "PreferHTTPS": "System.Nullable`1[System.Boolean]", + "Port": "System.Nullable`1[System.Int32]", + "Method": "System.String", + "Path": "System.String", + "RequestHeadersText": "System.String", + "ValidStatusCodeRangesText": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + }, + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorIcmpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DisableTraceRoute": "System.Nullable`1[System.Boolean]" }, "Methods": [ { @@ -173795,7 +173278,7 @@ ], "Parameters": [ { - "Name": "Allow", + "Name": "TcpProtocol", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -173804,7 +173287,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Optimize", + "Name": "HttpProtocol", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -173813,7 +173296,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Default", + "Name": "IcmpProtocol", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -173821,6 +173304,82 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "Port", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt16]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt16, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt16" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DisableTraceRoute", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Method", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Path", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RequestHeader", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ValidStatusCodeRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PreferHTTPS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DestinationPortBehavior", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "DefaultProfile", "AliasList": [ @@ -173844,11 +173403,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "TCP", "Parameters": [ { "ParameterMetadata": { - "Name": "Allow", + "Name": "TcpProtocol", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -173856,20 +173415,38 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Optimize", + "Name": "Port", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt16]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt16, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt16" + ] + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisableTraceRoute", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -173878,13 +173455,13 @@ }, { "ParameterMetadata": { - "Name": "Default", + "Name": "DestinationPortBehavior", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -173918,15 +173495,247 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzOffice365PolicyProperty", - "Name": "New-AzOffice365PolicyProperty", - "ClassName": "Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand", - "SupportsShouldProcess": false, + }, + { + "Name": "HTTP", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "HttpProtocol", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Port", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt16]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt16, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt16" + ] + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Method", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Path", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RequestHeader", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ValidStatusCodeRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PreferHTTPS", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ICMP", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "IcmpProtocol", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisableTraceRoute", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkWatcherConnectionMonitorTestConfigurationObject", + "Name": "New-AzNetworkWatcherConnectionMonitorTestConfigurationObject", + "ClassName": "Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestConfigurationObjectCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -173934,10 +173743,16 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" + "ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", + "SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold", + "TestFrequencySec": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "PreferredIPVersion": "System.String", + "ProtocolConfigurationText": "System.String", + "SuccessThresholdText": "System.String" }, "Methods": [ { @@ -173976,25 +173791,330 @@ ], "Parameters": [ { - "Name": "Allow", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Optimize", + "Name": "TestFrequencySec", + "AliasList": [ + "TestFrequency" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ProtocolConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SuccessThresholdChecksFailedPercent", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SuccessThresholdRoundTripTimeMs", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Double]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Double" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PreferredIPVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TestFrequencySec", + "AliasList": [ + "TestFrequency" + ], + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ProtocolConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SuccessThresholdChecksFailedPercent", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SuccessThresholdRoundTripTimeMs", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Double]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Double, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Double" + ] + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PreferredIPVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzNetworkWatcherConnectionMonitorTestGroupObject", + "Name": "New-AzNetworkWatcherConnectionMonitorTestGroupObject", + "ClassName": "Microsoft.Azure.Commands.Network.NetworkWatcherConnectionMonitorTestGroupObjectCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", + "Destinations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", + "TestConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", + "Disable": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TestConfigurationsText": "System.String", + "SourcesText": "System.String", + "DestinationsText": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "Default", + "Name": "TestConfiguration", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Source", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Destination", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Disable", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -174029,37 +174149,76 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Allow", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Optimize", + "Name": "TestConfiguration", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject" + ] }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Default", + "Name": "Source", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject" + ] + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Destination", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject" + ] + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Disable", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -174104,40 +174263,42 @@ }, { "VerbName": "New", - "NounName": "AzP2sVpnGateway", - "Name": "New-AzP2sVpnGateway", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmP2SVpnGatewayCommand", + "NounName": "AzNetworkWatcherFlowLog", + "Name": "New-AzNetworkWatcherFlowLog", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzNetworkWatcherFlowLogCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubNameByVpnServerConfigurationObject", + "DefaultParameterSetName": "SetByName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", + "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", + "FlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties", "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Enabled": "System.Nullable`1[System.Boolean]", + "ProvisioningState": "System.String", "Name": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", - "P2SConnectionConfigurationsText": "System.String", - "CustomDnsServersText": "System.String", - "Etag": "System.String", - "VpnClientConnectionHealthText": "System.String", - "ProvisioningState": "System.String", - "VpnServerConfigurationLocation": "System.String", "ResourceGroupName": "System.String", + "FormatText": "System.String", + "IdentityText": "System.String", + "Etag": "System.String", + "RetentionPolicyText": "System.String", + "EnabledFilteringCriteria": "System.String", + "StorageId": "System.String", + "TargetResourceGuid": "System.String", + "TargetResourceId": "System.String", + "FlowAnalyticsConfigurationText": "System.String", "Id": "System.String" }, "Methods": [ @@ -174177,20 +174338,28 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "NetworkWatcher", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "P2SVpnGatewayName" - ], + "Name": "NetworkWatcherName", "Type": { "Namespace": "System", "Name": "System.String", @@ -174199,16 +174368,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VpnGatewayScaleUnit", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -174217,166 +174386,97 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "VirtualHub", + "Name": "Name", + "AliasList": [ + "FlowLogName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubId", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VpnServerConfiguration", + "Name": "StorageId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", - "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VpnServerConfigurationId", + "Name": "EnabledFilteringCriteria", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VpnClientAddressPool", + "Name": "Enabled", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "CustomDnsServer", + "Name": "EnableRetention", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "RoutingConfiguration", + "Name": "RetentionPolicyDays", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableInternetSecurityFlag", + "Name": "FormatType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "DisableInternetSecurityFlag", + "Name": "FormatVersion", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableRoutingPreferenceInternetFlag", + "Name": "EnableTrafficAnalytics", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -174385,13 +174485,26 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "P2SConnectionConfiguration", + "Name": "TrafficAnalyticsWorkspaceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TrafficAnalyticsInterval", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, { @@ -174404,7 +174517,19 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -174435,29 +174560,40 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "NetworkWatcher", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName", - "P2SVpnGatewayName" + "FlowLogName" ], "Type": { "Namespace": "System", @@ -174473,13 +174609,13 @@ }, { "ParameterMetadata": { - "Name": "VpnGatewayScaleUnit", + "Name": "TargetResourceId", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -174488,67 +174624,56 @@ }, { "ParameterMetadata": { - "Name": "VpnClientAddressPool", + "Name": "StorageId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomDnsServer", + "Name": "EnabledFilteringCriteria", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "Enabled", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "EnableRetention", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -174559,11 +174684,14 @@ }, { "ParameterMetadata": { - "Name": "DisableInternetSecurityFlag", + "Name": "RetentionPolicyDays", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -174574,13 +174702,13 @@ }, { "ParameterMetadata": { - "Name": "EnableRoutingPreferenceInternetFlag", + "Name": "FormatType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -174589,12 +174717,14 @@ }, { "ParameterMetadata": { - "Name": "P2SConnectionConfiguration", + "Name": "FormatVersion", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -174620,13 +174750,31 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -174662,75 +174810,53 @@ ] }, { - "Name": "ByVirtualHubNameByVpnServerConfigurationObject", + "Name": "SetByResourceWithTA", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubName", + "Name": "NetworkWatcher", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnServerConfiguration", + "Name": "EnableTrafficAnalytics", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", - "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TrafficAnalyticsWorkspaceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -174738,7 +174864,27 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TrafficAnalyticsInterval", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -174747,8 +174893,7 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName", - "P2SVpnGatewayName" + "FlowLogName" ], "Type": { "Namespace": "System", @@ -174764,13 +174909,13 @@ }, { "ParameterMetadata": { - "Name": "VpnGatewayScaleUnit", + "Name": "TargetResourceId", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -174779,67 +174924,56 @@ }, { "ParameterMetadata": { - "Name": "VpnClientAddressPool", + "Name": "StorageId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomDnsServer", + "Name": "EnabledFilteringCriteria", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "Enabled", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "EnableRetention", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -174850,11 +174984,14 @@ }, { "ParameterMetadata": { - "Name": "DisableInternetSecurityFlag", + "Name": "RetentionPolicyDays", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -174865,13 +175002,13 @@ }, { "ParameterMetadata": { - "Name": "EnableRoutingPreferenceInternetFlag", + "Name": "FormatType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -174880,12 +175017,14 @@ }, { "ParameterMetadata": { - "Name": "P2SConnectionConfiguration", + "Name": "FormatVersion", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -174911,7 +175050,25 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -174953,17 +175110,17 @@ ] }, { - "Name": "ByVirtualHubNameByVpnServerConfigurationResourceId", + "Name": "SetByName", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubName", + "Name": "NetworkWatcherName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -174972,22 +175129,25 @@ }, { "ParameterMetadata": { - "Name": "VpnServerConfigurationId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "FlowLogName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -175002,11 +175162,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "P2SVpnGatewayName" - ], + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -175021,13 +175177,13 @@ }, { "ParameterMetadata": { - "Name": "VpnGatewayScaleUnit", + "Name": "StorageId", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -175036,12 +175192,11 @@ }, { "ParameterMetadata": { - "Name": "VpnClientAddressPool", + "Name": "EnabledFilteringCriteria", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -175052,36 +175207,26 @@ }, { "ParameterMetadata": { - "Name": "CustomDnsServer", + "Name": "Enabled", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "EnableRetention", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -175092,11 +175237,14 @@ }, { "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "RetentionPolicyDays", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -175107,13 +175255,13 @@ }, { "ParameterMetadata": { - "Name": "DisableInternetSecurityFlag", + "Name": "FormatType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -175122,11 +175270,14 @@ }, { "ParameterMetadata": { - "Name": "EnableRoutingPreferenceInternetFlag", + "Name": "FormatVersion", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -175137,12 +175288,11 @@ }, { "ParameterMetadata": { - "Name": "P2SConnectionConfiguration", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -175153,13 +175303,16 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -175168,7 +175321,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -175210,108 +175363,56 @@ ] }, { - "Name": "ByVirtualHubObjectByVpnServerConfigurationObject", + "Name": "SetByNameWithTA", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHub", + "Name": "NetworkWatcherName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnServerConfiguration", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", - "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableTrafficAnalytics", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TrafficAnalyticsWorkspaceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -175319,7 +175420,27 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TrafficAnalyticsInterval", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -175328,8 +175449,7 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName", - "P2SVpnGatewayName" + "FlowLogName" ], "Type": { "Namespace": "System", @@ -175345,13 +175465,13 @@ }, { "ParameterMetadata": { - "Name": "VpnGatewayScaleUnit", + "Name": "TargetResourceId", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -175360,67 +175480,56 @@ }, { "ParameterMetadata": { - "Name": "VpnClientAddressPool", + "Name": "StorageId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomDnsServer", + "Name": "EnabledFilteringCriteria", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "Enabled", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "EnableRetention", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -175431,11 +175540,14 @@ }, { "ParameterMetadata": { - "Name": "DisableInternetSecurityFlag", + "Name": "RetentionPolicyDays", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -175446,13 +175558,13 @@ }, { "ParameterMetadata": { - "Name": "EnableRoutingPreferenceInternetFlag", + "Name": "FormatType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -175461,12 +175573,14 @@ }, { "ParameterMetadata": { - "Name": "P2SConnectionConfiguration", + "Name": "FormatVersion", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -175492,7 +175606,25 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -175534,59 +175666,11 @@ ] }, { - "Name": "ByVirtualHubObjectByVpnServerConfigurationResourceId", + "Name": "SetByLocation", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHub", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnServerConfigurationId", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -175597,11 +175681,14 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "FlowLogName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -175616,11 +175703,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "P2SVpnGatewayName" - ], + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -175635,13 +175718,13 @@ }, { "ParameterMetadata": { - "Name": "VpnGatewayScaleUnit", + "Name": "StorageId", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -175650,12 +175733,11 @@ }, { "ParameterMetadata": { - "Name": "VpnClientAddressPool", + "Name": "EnabledFilteringCriteria", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -175666,36 +175748,26 @@ }, { "ParameterMetadata": { - "Name": "CustomDnsServer", + "Name": "Enabled", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "EnableRetention", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -175706,11 +175778,14 @@ }, { "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "RetentionPolicyDays", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -175721,13 +175796,13 @@ }, { "ParameterMetadata": { - "Name": "DisableInternetSecurityFlag", + "Name": "FormatType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -175736,11 +175811,14 @@ }, { "ParameterMetadata": { - "Name": "EnableRoutingPreferenceInternetFlag", + "Name": "FormatVersion", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -175751,12 +175829,11 @@ }, { "ParameterMetadata": { - "Name": "P2SConnectionConfiguration", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -175767,13 +175844,16 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -175782,7 +175862,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -175824,11 +175904,11 @@ ] }, { - "Name": "ByVirtualHubResourceIdByVpnServerConfigurationObject", + "Name": "SetByLocationWithTA", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -175839,60 +175919,26 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnServerConfiguration", + "Name": "EnableTrafficAnalytics", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", - "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TrafficAnalyticsWorkspaceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -175900,7 +175946,27 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TrafficAnalyticsInterval", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -175909,8 +175975,7 @@ "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName", - "P2SVpnGatewayName" + "FlowLogName" ], "Type": { "Namespace": "System", @@ -175926,13 +175991,13 @@ }, { "ParameterMetadata": { - "Name": "VpnGatewayScaleUnit", + "Name": "TargetResourceId", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -175941,67 +176006,56 @@ }, { "ParameterMetadata": { - "Name": "VpnClientAddressPool", + "Name": "StorageId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomDnsServer", + "Name": "EnabledFilteringCriteria", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "Enabled", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "EnableRetention", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -176012,11 +176066,14 @@ }, { "ParameterMetadata": { - "Name": "DisableInternetSecurityFlag", + "Name": "RetentionPolicyDays", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -176027,13 +176084,13 @@ }, { "ParameterMetadata": { - "Name": "EnableRoutingPreferenceInternetFlag", + "Name": "FormatType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -176042,12 +176099,14 @@ }, { "ParameterMetadata": { - "Name": "P2SConnectionConfiguration", + "Name": "FormatVersion", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -176073,7 +176132,25 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -176115,41 +176192,44 @@ ] }, { - "Name": "ByVirtualHubResourceIdByVpnServerConfigurationResourceId", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "Name", + "AliasList": [ + "FlowLogName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnServerConfigurationId", + "Name": "TargetResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "StorageId", "Type": { "Namespace": "System", "Name": "System.String", @@ -176164,11 +176244,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "P2SVpnGatewayName" - ], + "Name": "EnabledFilteringCriteria", "Type": { "Namespace": "System", "Name": "System.String", @@ -176176,20 +176252,20 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnGatewayScaleUnit", + "Name": "Enabled", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -176198,14 +176274,13 @@ }, { "ParameterMetadata": { - "Name": "VpnClientAddressPool", + "Name": "EnableRetention", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -176214,38 +176289,31 @@ }, { "ParameterMetadata": { - "Name": "CustomDnsServer", + "Name": "RetentionPolicyDays", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "FormatType", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -176254,11 +176322,14 @@ }, { "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "FormatVersion", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -176269,11 +176340,11 @@ }, { "ParameterMetadata": { - "Name": "DisableInternetSecurityFlag", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -176284,44 +176355,16 @@ }, { "ParameterMetadata": { - "Name": "EnableRoutingPreferenceInternetFlag", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "P2SConnectionConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -176330,7 +176373,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -176375,9 +176418,9 @@ }, { "VerbName": "New", - "NounName": "AzPacketCaptureFilterConfig", - "Name": "New-AzPacketCaptureFilterConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand", + "NounName": "AzNetworkWatcherNetworkConfigurationDiagnosticProfile", + "Name": "New-AzNetworkWatcherNetworkConfigurationDiagnosticProfile", + "ClassName": "Microsoft.Azure.Commands.Network.NewNetworkWatcherNetworkConfigurationDiagnosticProfileCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -176386,14 +176429,14 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "Direction": "System.String", "Protocol": "System.String", - "RemoteIPAddress": "System.String", - "LocalIPAddress": "System.String", - "LocalPort": "System.String", - "RemotePort": "System.String" + "Source": "System.String", + "Destination": "System.String", + "DestinationPort": "System.String" }, "Methods": [ { @@ -176432,7 +176475,7 @@ ], "Parameters": [ { - "Name": "Protocol", + "Name": "Direction", "Type": { "Namespace": "System", "Name": "System.String", @@ -176441,7 +176484,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RemoteIPAddress", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -176450,7 +176493,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "LocalIPAddress", + "Name": "Source", "Type": { "Namespace": "System", "Name": "System.String", @@ -176459,7 +176502,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "LocalPort", + "Name": "Destination", "Type": { "Namespace": "System", "Name": "System.String", @@ -176468,7 +176511,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RemotePort", + "Name": "DestinationPort", "Type": { "Namespace": "System", "Name": "System.String", @@ -176503,7 +176546,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Direction", "Type": { "Namespace": "System", "Name": "System.String", @@ -176511,14 +176554,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RemoteIPAddress", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -176526,14 +176569,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LocalIPAddress", + "Name": "Source", "Type": { "Namespace": "System", "Name": "System.String", @@ -176541,14 +176584,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LocalPort", + "Name": "Destination", "Type": { "Namespace": "System", "Name": "System.String", @@ -176556,14 +176599,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RemotePort", + "Name": "DestinationPort", "Type": { "Namespace": "System", "Name": "System.String", @@ -176571,7 +176614,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -176608,24 +176651,45 @@ }, { "VerbName": "New", - "NounName": "AzPacketCaptureScopeConfig", - "Name": "New-AzPacketCaptureScopeConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewPacketCaptureScopeCommand", - "SupportsShouldProcess": false, + "NounName": "AzNetworkWatcherPacketCapture", + "Name": "New-AzNetworkWatcherPacketCapture", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherPacketCaptureCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Include": "System.Collections.Generic.List`1[System.String]", - "Exclude": "System.Collections.Generic.List`1[System.String]" + "Scope": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", + "StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", + "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", + "TargetType": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType]", + "BytesToCapturePerPacket": "System.Nullable`1[System.Int32]", + "TimeLimitInSeconds": "System.Nullable`1[System.Int32]", + "TotalBytesPerSession": "System.Nullable`1[System.UInt32]", + "ProvisioningState": "System.String", + "Target": "System.String", + "FiltersText": "System.String", + "ScopeText": "System.String", + "StorageLocationText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeStorageLocation", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeFilters", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -176662,172 +176726,58 @@ ], "Parameters": [ { - "Name": "Include", + "Name": "NetworkWatcher", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "Exclude", + "Name": "NetworkWatcherName", + "AliasList": [ + "Name" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Include", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Exclude", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzPrivateDnsZoneConfig", - "Name": "New-AzPrivateDnsZoneConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + "ValidateNotNullOrEmpty": true + }, { + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RecordSets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]", - "Name": "System.String", - "PrivateDnsZoneId": "System.String", - "ProvisioningState": "System.String", - "RecordSetsText": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ + "ValidateNotNullOrEmpty": false + }, { - "Name": "Name", + "Name": "PacketCaptureName", "Type": { "Namespace": "System", "Name": "System.String", @@ -176836,7 +176786,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateDnsZoneId", + "Name": "TargetVirtualMachineId", "Type": { "Namespace": "System", "Name": "System.String", @@ -176845,151 +176795,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateDnsZoneId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzPrivateDnsZoneGroup", - "Name": "New-AzPrivateDnsZoneGroup", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneGroupCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateDnsZoneConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "ProvisioningState": "System.String", - "PrivateDnsZoneConfigsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", + "Name": "StorageAccountId", "Type": { "Namespace": "System", "Name": "System.String", @@ -176998,7 +176804,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateEndpointName", + "Name": "StoragePath", "Type": { "Namespace": "System", "Name": "System.String", @@ -177007,10 +176813,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "PrivateDnsZoneGroupName" - ], + "Name": "LocalFilePath", "Type": { "Namespace": "System", "Name": "System.String", @@ -177019,23 +176822,54 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateDnsZoneConfig", + "Name": "BytesToCapturePerPacket", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig" + "System.Int32" ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "TotalBytesPerSession", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 4294967295, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TimeLimitInSeconds", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Filter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" }, "ValidateNotNullOrEmpty": false }, @@ -177071,11 +176905,38 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCaptureName", "Type": { "Namespace": "System", "Name": "System.String", @@ -177090,7 +176951,7 @@ }, { "ParameterMetadata": { - "Name": "PrivateEndpointName", + "Name": "TargetVirtualMachineId", "Type": { "Namespace": "System", "Name": "System.String", @@ -177105,10 +176966,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "PrivateDnsZoneGroupName" - ], + "Name": "StorageAccountId", "Type": { "Namespace": "System", "Name": "System.String", @@ -177116,36 +176974,109 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateDnsZoneConfig", + "Name": "StoragePath", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LocalFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BytesToCapturePerPacket", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig" + "System.Int32" ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", + "Name": "TotalBytesPerSession", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 4294967295, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TimeLimitInSeconds", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Filter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" }, "ValidateNotNullOrEmpty": false }, @@ -177196,287 +177127,15 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzPrivateEndpoint", - "Name": "New-AzPrivateEndpoint", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateEndpoint", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "ApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "CustomDnsConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration]", - "PrivateLinkServiceConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]", - "ManualPrivateLinkServiceConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "IpConfigurationsText": "System.String", - "ManualPrivateLinkServiceConnectionsText": "System.String", - "ExtendedLocationText": "System.String", - "CustomDnsConfigsText": "System.String", - "Etag": "System.String", - "PrivateLinkServiceConnectionsText": "System.String", - "NetworkInterfacesText": "System.String", - "SubnetText": "System.String", - "CustomNetworkInterfaceName": "System.String", - "ApplicationSecurityGroupsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "ShouldSerializeNetworkInterfaces", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializePrivateLinkServiceConnections", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeManualPrivateLinkServiceConnections", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PrivateLinkServiceConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ByManualRequest", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EdgeZone", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationSecurityGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "CustomNetworkInterfaceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "NetworkWatcherName", "AliasList": [ - "ResourceName" + "Name" ], "Type": { "Namespace": "System", @@ -177487,8 +177146,8 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -177507,7 +177166,7 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "PacketCaptureName", "Type": { "Namespace": "System", "Name": "System.String", @@ -177522,44 +177181,11 @@ }, { "ParameterMetadata": { - "Name": "Subnet", + "Name": "TargetVirtualMachineId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -177570,44 +177196,43 @@ }, { "ParameterMetadata": { - "Name": "PrivateLinkServiceConnection", + "Name": "StorageAccountId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ByManualRequest", + "Name": "StoragePath", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EdgeZone", + "Name": "LocalFilePath", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -177616,12 +177241,17 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "BytesToCapturePerPacket", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -177631,42 +177261,52 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "TotalBytesPerSession", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 4294967295, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "TimeLimitInSeconds", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ApplicationSecurityGroup", + "Name": "Filter", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" }, "ValidateNotNullOrEmpty": false }, @@ -177677,12 +177317,11 @@ }, { "ParameterMetadata": { - "Name": "IpConfiguration", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -177693,12 +177332,209 @@ }, { "ParameterMetadata": { - "Name": "CustomNetworkInterfaceName", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByLocation", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PacketCaptureName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TargetVirtualMachineId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StorageAccountId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StoragePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LocalFilePath", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BytesToCapturePerPacket", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TotalBytesPerSession", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 4294967295, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TimeLimitInSeconds", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Filter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -177733,132 +177569,13 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzPrivateEndpointIpConfiguration", - "Name": "New-AzPrivateEndpointIpConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateEndpointIPConfigurationCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Name": "System.String", - "GroupId": "System.String", - "MemberName": "System.String", - "PrivateIPAddress": "System.String", - "Type": "System.String", - "Etag": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "GroupId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "MemberName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PrivateIpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "PacketCaptureName", "Type": { "Namespace": "System", "Name": "System.String", @@ -177869,11 +177586,26 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "GroupId", + "Name": "TargetVirtualMachineId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StorageAccountId", "Type": { "Namespace": "System", "Name": "System.String", @@ -177884,11 +177616,11 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "MemberName", + "Name": "StoragePath", "Type": { "Namespace": "System", "Name": "System.String", @@ -177899,11 +177631,11 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "LocalFilePath", "Type": { "Namespace": "System", "Name": "System.String", @@ -177911,7 +177643,98 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BytesToCapturePerPacket", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TotalBytesPerSession", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 4294967295, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TimeLimitInSeconds", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Filter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -177948,50 +177771,45 @@ }, { "VerbName": "New", - "NounName": "AzPrivateLinkService", - "Name": "New-AzPrivateLinkService", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateLinkService", + "NounName": "AzNetworkWatcherPacketCaptureV2", + "Name": "New-AzNetworkWatcherPacketCaptureV2", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureNetworkWatcherPacketCaptureCommandV2", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", - "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", - "LoadBalancerFrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableProxyProtocol": "System.Nullable`1[System.Boolean]", - "ExtendedLocationText": "System.String", + "Scope": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", + "StorageLocation": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", + "Filters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", + "TargetType": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType]", + "BytesToCapturePerPacket": "System.Nullable`1[System.Int32]", + "TimeLimitInSeconds": "System.Nullable`1[System.Int32]", + "TotalBytesPerSession": "System.Nullable`1[System.UInt32]", + "ProvisioningState": "System.String", + "Target": "System.String", + "FiltersText": "System.String", + "ScopeText": "System.String", + "StorageLocationText": "System.String", "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "AutoApprovalText": "System.String", - "IpConfigurationsText": "System.String", - "PrivateEndpointConnectionsText": "System.String", - "NetworkInterfacesText": "System.String", "Etag": "System.String", - "LoadBalancerFrontendIpConfigurationsText": "System.String", - "DestinationIPAddress": "System.String", - "Alias": "System.String", - "ProvisioningState": "System.String", - "VisibilityText": "System.String", - "Id": "System.String", - "Fqdns": "System.String[]" + "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeStorageLocation", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeFilters", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -178028,10 +177846,28 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ServiceName" - ], + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NetworkWatcherName", "Type": { "Namespace": "System", "Name": "System.String", @@ -178055,100 +177891,137 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "IpConfiguration", + "Name": "Name", + "AliasList": [ + "PacketCaptureName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "LoadBalancerFrontendIpConfiguration", + "Name": "TargetId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "Visibility", + "Name": "StorageAccountId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AutoApproval", + "Name": "StoragePath", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "EnableProxyProtocol", + "Name": "LocalFilePath", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "EdgeZone", + "Name": "BytesToCapturePerPacket", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "TotalBytesPerSession", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 4294967295, "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "TimeLimitInSecond", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "Scope", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Include": "System.Collections.Generic.List`1[System.String]", + "Exclude": "System.Collections.Generic.List`1[System.String]" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationIPAddress", + "Name": "TargetType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Filter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, { @@ -178174,13 +178047,40 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "SetByResource", "Parameters": [ + { + "ParameterMetadata": { + "Name": "NetworkWatcher", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ServiceName" + "PacketCaptureName" ], "Type": { "Namespace": "System", @@ -178196,7 +178096,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TargetId", "Type": { "Namespace": "System", "Name": "System.String", @@ -178211,7 +178111,7 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "StorageAccountId", "Type": { "Namespace": "System", "Name": "System.String", @@ -178219,35 +178119,33 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IpConfiguration", + "Name": "StoragePath", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LoadBalancerFrontendIpConfiguration", + "Name": "LocalFilePath", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -178258,13 +178156,17 @@ }, { "ParameterMetadata": { - "Name": "Visibility", + "Name": "BytesToCapturePerPacket", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -178274,13 +178176,17 @@ }, { "ParameterMetadata": { - "Name": "AutoApproval", + "Name": "TotalBytesPerSession", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Nullable`1[System.UInt32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 4294967295, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -178290,12 +178196,17 @@ }, { "ParameterMetadata": { - "Name": "EnableProxyProtocol", + "Name": "TimeLimitInSecond", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -178305,41 +178216,46 @@ }, { "ParameterMetadata": { - "Name": "EdgeZone", + "Name": "Scope", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Include": "System.Collections.Generic.List`1[System.String]", + "Exclude": "System.Collections.Generic.List`1[System.String]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "TargetType", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Filter", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" }, "ValidateNotNullOrEmpty": false }, @@ -178363,21 +178279,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "DestinationIPAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -178405,176 +178306,13 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzPrivateLinkServiceConnection", - "Name": "New-AzPrivateLinkServiceConnection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", - "GroupIds": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "PrivateLinkServiceId": "System.String", - "RequestMessage": "System.String", - "GroupIdsText": "System.String", - "PrivateLinkServiceConnectionStateText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PrivateLinkService", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", - "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", - "LoadBalancerFrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableProxyProtocol": "System.Nullable`1[System.Boolean]", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "AutoApprovalText": "System.String", - "IpConfigurationsText": "System.String", - "PrivateEndpointConnectionsText": "System.String", - "NetworkInterfacesText": "System.String", - "Etag": "System.String", - "LoadBalancerFrontendIpConfigurationsText": "System.String", - "DestinationIPAddress": "System.String", - "Alias": "System.String", - "ProvisioningState": "System.String", - "VisibilityText": "System.String", - "Id": "System.String", - "Fqdns": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PrivateLinkServiceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "GroupId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RequestMessage", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "NetworkWatcherName", "Type": { "Namespace": "System", "Name": "System.String", @@ -178584,119 +178322,279 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GroupId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RequestMessage", + "Name": "Name", + "AliasList": [ + "PacketCaptureName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "TargetId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResource", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "PrivateLinkService", + "Name": "StorageAccountId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StoragePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LocalFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BytesToCapturePerPacket", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TotalBytesPerSession", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 4294967295, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TimeLimitInSecond", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Scope", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", - "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", - "LoadBalancerFrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableProxyProtocol": "System.Nullable`1[System.Boolean]", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "AutoApprovalText": "System.String", - "IpConfigurationsText": "System.String", - "PrivateEndpointConnectionsText": "System.String", - "NetworkInterfacesText": "System.String", - "Etag": "System.String", - "LoadBalancerFrontendIpConfigurationsText": "System.String", - "DestinationIPAddress": "System.String", - "Alias": "System.String", - "ProvisioningState": "System.String", - "VisibilityText": "System.String", - "Id": "System.String", - "Fqdns": "System.String[]" + "Include": "System.Collections.Generic.List`1[System.String]", + "Exclude": "System.Collections.Generic.List`1[System.String]" } }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Filter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByLocation", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "PacketCaptureName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -178707,16 +178605,139 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "GroupId", + "Name": "TargetId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StorageAccountId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StoragePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LocalFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BytesToCapturePerPacket", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TotalBytesPerSession", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 4294967295, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TimeLimitInSecond", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Include": "System.Collections.Generic.List`1[System.String]", + "Exclude": "System.Collections.Generic.List`1[System.String]" + } }, "ValidateNotNullOrEmpty": false }, @@ -178727,12 +178748,43 @@ }, { "ParameterMetadata": { - "Name": "RequestMessage", + "Name": "TargetType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Filter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -178769,11 +178821,14 @@ ] }, { - "Name": "SetByResourceId", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateLinkServiceId", + "Name": "Name", + "AliasList": [ + "PacketCaptureName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -178788,7 +178843,7 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "TargetId", "Type": { "Namespace": "System", "Name": "System.String", @@ -178799,16 +178854,124 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "GroupId", + "Name": "StorageAccountId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "StoragePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LocalFilePath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BytesToCapturePerPacket", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TotalBytesPerSession", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.UInt32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.UInt32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 4294967295, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TimeLimitInSecond", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Scope", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Include": "System.Collections.Generic.List`1[System.String]", + "Exclude": "System.Collections.Generic.List`1[System.String]" + } }, "ValidateNotNullOrEmpty": false }, @@ -178819,12 +178982,43 @@ }, { "ParameterMetadata": { - "Name": "RequestMessage", + "Name": "TargetType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Filter", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -178864,9 +179058,9 @@ }, { "VerbName": "New", - "NounName": "AzPrivateLinkServiceIpConfig", - "Name": "New-AzPrivateLinkServiceIpConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration", + "NounName": "AzNetworkWatcherProtocolConfiguration", + "Name": "New-AzNetworkWatcherProtocolConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NetworkWatcher.NewAzureNetworkWatcherProtocolConfiguration", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -178875,21 +179069,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "Primary": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "Id": "System.String", - "Etag": "System.String", - "PrivateIPAddress": "System.String", - "PrivateIPAllocationMethod": "System.String", - "ProvisioningState": "System.String", - "PrivateIPAddressVersion": "System.String", - "PublicIPAddressText": "System.String", - "SubnetText": "System.String" + "Header": "System.Collections.IDictionary", + "ValidStatusCode": "System.Int32[]", + "Protocol": "System.String", + "Method": "System.String" }, "Methods": [ { @@ -178928,7 +179114,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -178937,117 +179123,32 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateIpAddressVersion", + "Name": "Method", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateIpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PublicIpAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Subnet", + "Name": "Header", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Namespace": "System.Collections", + "Name": "System.Collections.IDictionary", + "AssemblyQualifiedName": "System.Collections.IDictionary, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Primary", + "Name": "ValidStatusCode", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32[]", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.Int32" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -179076,7 +179177,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -179091,16 +179192,12 @@ }, { "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", + "Name": "Method", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -179110,13 +179207,29 @@ }, { "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "Header", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.IDictionary", + "AssemblyQualifiedName": "System.Collections.IDictionary, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ValidStatusCode", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32[]", + "AssemblyQualifiedName": "System.Int32[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.Int32" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -179125,42 +179238,147 @@ }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzO365PolicyProperty", + "Name": "New-AzO365PolicyProperty", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmO365PolicyPropertyCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Allow", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Optimize", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Default", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Allow", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -179171,44 +179389,11 @@ }, { "ParameterMetadata": { - "Name": "Subnet", + "Name": "Optimize", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -179219,7 +179404,7 @@ }, { "ParameterMetadata": { - "Name": "Primary", + "Name": "Default", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -179264,10 +179449,10 @@ }, { "VerbName": "New", - "NounName": "AzPublicIpAddress", - "Name": "New-AzPublicIpAddress", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePublicIpAddressCommand", - "SupportsShouldProcess": true, + "NounName": "AzOffice365PolicyProperty", + "Name": "New-AzOffice365PolicyProperty", + "ClassName": "Microsoft.Azure.Commands.Network.NewOffice365PolicyPropertyCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -179275,38 +179460,10 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" }, "Methods": [ { @@ -179345,272 +179502,49 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "Allow", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "Optimize", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Location", + "Name": "Default", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "EdgeZone", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Sku", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Basic", - "Standard" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Tier", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Regional", - "Global" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AllocationMethod", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Dynamic", - "Static" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "IpAddressVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DomainNameLabel", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DomainNameLabelScope", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType" - ] - }, - "ValidateSet": [ - "TenantReuse", - "SubscriptionReuse", - "ResourceGroupReuse", - "NoReuse" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpTag", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PublicIpPrefix", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", - "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "CustomIpPrefixText": "System.String", - "IpTagsText": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "IPPrefix": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "SkuText": "System.String", - "Id": "System.String", - "PrefixLength": "System.UInt16" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DdosProtectionMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "VirtualNetworkInherited", - "Enabled", - "Disabled" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DdosProtectionPlanId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ReverseFqdn", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false } @@ -179621,353 +179555,22 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EdgeZone", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Sku", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Basic", - "Standard" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tier", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Regional", - "Global" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AllocationMethod", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Dynamic", - "Static" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IpAddressVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DomainNameLabel", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DomainNameLabelScope", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType" - ] - }, - "ValidateSet": [ - "TenantReuse", - "SubscriptionReuse", - "ResourceGroupReuse", - "NoReuse" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IpTag", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "PublicIpPrefix", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", - "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "CustomIpPrefixText": "System.String", - "IpTagsText": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "IPPrefix": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "SkuText": "System.String", - "Id": "System.String", - "PrefixLength": "System.UInt16" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DdosProtectionMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "VirtualNetworkInherited", - "Enabled", - "Disabled" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DdosProtectionPlanId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ReverseFqdn", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Zone", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", + "Name": "Allow", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Optimize", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -179982,7 +179585,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Default", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -180027,44 +179630,41 @@ }, { "VerbName": "New", - "NounName": "AzPublicIpPrefix", - "Name": "New-AzPublicIpPrefix", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePublicIpPrefixCommand", + "NounName": "AzP2sVpnGateway", + "Name": "New-AzP2sVpnGateway", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmP2SVpnGatewayCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByVirtualHubNameByVpnServerConfigurationObject", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", - "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnClientConnectionHealth": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", + "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", + "CustomDnsServers": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", "Name": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "CustomIpPrefixText": "System.String", - "IpTagsText": "System.String", + "P2SConnectionConfigurationsText": "System.String", + "CustomDnsServersText": "System.String", "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "IPPrefix": "System.String", + "VpnClientConnectionHealthText": "System.String", "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "SkuText": "System.String", - "Id": "System.String", - "PrefixLength": "System.UInt16" + "VpnServerConfigurationLocation": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -180103,10 +179703,7 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -180115,7 +179712,11 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "P2SVpnGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -180124,73 +179725,138 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "VpnGatewayScaleUnit", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Sku", + "Name": "VirtualHubName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Standard" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Tier", + "Name": "VirtualHub", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Regional", - "Global" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "PrefixLength", + "Name": "VpnServerConfiguration", "Type": { - "Namespace": "System", - "Name": "System.UInt16", - "AssemblyQualifiedName": "System.UInt16, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "IpAddressVersion", + "Name": "VpnServerConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "IpTag", + "Name": "VpnClientAddressPool", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Zone", + "Name": "CustomDnsServer", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -180200,62 +179866,43 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "CustomIpPrefix", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", - "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ChildCustomIpPrefixesText": "System.String", - "CustomIpPrefixParentText": "System.String", - "Cidr": "System.String", - "PrefixType": "System.String", - "Etag": "System.String", - "AuthorizationMessage": "System.String", - "SignedMessage": "System.String", - "ProvisioningState": "System.String", - "CommissionedState": "System.String", - "Asn": "System.String", - "Geo": "System.String", - "PublicIpPrefixesText": "System.String", - "Id": "System.String" + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "EdgeZone", + "Name": "EnableInternetSecurityFlag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "DisableInternetSecurityFlag", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "EnableRoutingPreferenceInternetFlag", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -180263,6 +179910,25 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "P2SConnectionConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "Type": { @@ -180299,10 +179965,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -180313,11 +179976,15 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "P2SVpnGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -180328,54 +179995,49 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "VpnGatewayScaleUnit", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "VpnClientAddressPool", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "Standard" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tier", + "Name": "CustomDnsServer", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "Regional", - "Global" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -180384,127 +180046,88 @@ }, { "ParameterMetadata": { - "Name": "PrefixLength", - "Type": { - "Namespace": "System", - "Name": "System.UInt16", - "AssemblyQualifiedName": "System.UInt16, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IpAddressVersion", + "Name": "RoutingConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpTag", + "Name": "EnableInternetSecurityFlag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "DisableInternetSecurityFlag", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomIpPrefix", + "Name": "EnableRoutingPreferenceInternetFlag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", - "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ChildCustomIpPrefixesText": "System.String", - "CustomIpPrefixParentText": "System.String", - "Cidr": "System.String", - "PrefixType": "System.String", - "Etag": "System.String", - "AuthorizationMessage": "System.String", - "SignedMessage": "System.String", - "ProvisioningState": "System.String", - "CommissionedState": "System.String", - "Asn": "System.String", - "Geo": "System.String", - "PublicIpPrefixesText": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EdgeZone", + "Name": "P2SConnectionConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -180519,21 +180142,6 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -180578,125 +180186,77 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzPublicIpTag", - "Name": "New-AzPublicIpTag", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePublicIpTagCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "IpTagType": "System.String", - "Tag": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "IpTagType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubNameByVpnServerConfigurationObject", "Parameters": [ { "ParameterMetadata": { - "Name": "IpTagType", + "Name": "VirtualHubName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "VpnServerConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -180707,183 +180267,66 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "Name", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "ResourceName", + "P2SVpnGatewayName" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzRadiusServer", - "Name": "New-AzRadiusServer", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "RadiusServer", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RadiusServerScore": "System.Int32", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "RadiusServerAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RadiusServerSecret", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RadiusServerScore", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "RadiusServer", - "Parameters": [ { "ParameterMetadata": { - "Name": "RadiusServerAddress", + "Name": "VpnGatewayScaleUnit", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RadiusServerSecret", + "Name": "VpnClientAddressPool", "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RadiusServerScore", + "Name": "CustomDnsServer", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -180894,21 +180337,19 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "RoutingConfiguration", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -180917,30 +180358,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "EnableInternetSecurityFlag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -180948,139 +180373,29 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzRouteConfig", - "Name": "New-AzRouteConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteConfigCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressPrefix": "System.String", - "NextHopType": "System.String", - "NextHopIpAddress": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + { + "ParameterMetadata": { + "Name": "DisableInternetSecurityFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NextHopType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NextHopIpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "Name", + "Name": "EnableRoutingPreferenceInternetFlag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -181091,48 +180406,49 @@ }, { "ParameterMetadata": { - "Name": "AddressPrefix", + "Name": "P2SConnectionConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NextHopType", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NextHopIpAddress", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -181161,188 +180477,34 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzRouteFilter", - "Name": "New-AzRouteFilter", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRouteFilterCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RulesText": "System.String", - "PeeringsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "ShouldSerializePeerings", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Rule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubNameByVpnServerConfigurationResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "VirtualHubName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnServerConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -181362,11 +180524,15 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Name", + "AliasList": [ + "ResourceName", + "P2SVpnGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -181377,61 +180543,71 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Rule", + "Name": "VpnGatewayScaleUnit", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "VpnClientAddressPool", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "CustomDnsServer", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "RoutingConfiguration", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -181442,22 +180618,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "EnableInternetSecurityFlag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -181465,151 +180630,10 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzRouteFilterRuleConfig", - "Name": "New-AzRouteFilterRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRouteFilterRuleConfigCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Communities": "System.Collections.Generic.List`1[System.String]", - "Access": "System.String", - "RouteFilterRuleType": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Access", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Allow", - "Deny" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RouteFilterRuleType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Community" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "CommunityList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Force", + "Name": "DisableInternetSecurityFlag", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -181624,68 +180648,61 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "EnableRoutingPreferenceInternetFlag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Access", + "Name": "P2SConnectionConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, - "ValidateSet": [ - "Allow", - "Deny" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RouteFilterRuleType", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Community" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CommunityList", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -181717,210 +180734,107 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzRouteMap", - "Name": "New-AzRouteMap", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteMapCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]", - "AssociatedInboundConnections": "System.Collections.Generic.List`1[System.String]", - "AssociatedOutboundConnections": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "AssociatedInboundConnectionsText": "System.String", - "AssociatedOutboundConnectionsText": "System.String", - "RouteMapRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" + "Name": "ByVirtualHubObjectByVpnServerConfigurationObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualHub", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" } - ], - "ReturnType": "System.Boolean" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubName", - "AliasList": [ - "ParentVirtualHubName", - "ParentResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubObject", - "AliasList": [ - "VirtualHub", - "ParentVirtualHub" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RouteMapName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RouteMapRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ByVirtualHubName", - "Parameters": [ + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnServerConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -181929,27 +180843,58 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualHubName", + "Name": "Name", "AliasList": [ - "ParentVirtualHubName", - "ParentResourceName" + "ResourceName", + "P2SVpnGatewayName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnGatewayScaleUnit", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnClientAddressPool", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -181957,15 +180902,36 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RouteMapName" - ], + "Name": "CustomDnsServer", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RoutingConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -181976,12 +180942,72 @@ }, { "ParameterMetadata": { - "Name": "RouteMapRule", + "Name": "EnableInternetSecurityFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisableInternetSecurityFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableRoutingPreferenceInternetFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "P2SConnectionConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -182034,19 +181060,15 @@ ] }, { - "Name": "ByVirtualHubObject", + "Name": "ByVirtualHubObjectByVpnServerConfigurationResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubObject", - "AliasList": [ - "VirtualHub", - "ParentVirtualHub" - ], + "Name": "VirtualHub", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -182083,25 +181105,86 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "VpnServerConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ "ResourceName", - "RouteMapName" + "P2SVpnGatewayName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnGatewayScaleUnit", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnClientAddressPool", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -182109,12 +181192,112 @@ }, { "ParameterMetadata": { - "Name": "RouteMapRule", + "Name": "CustomDnsServer", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableInternetSecurityFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisableInternetSecurityFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableRoutingPreferenceInternetFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "P2SConnectionConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -182167,15 +181350,11 @@ ] }, { - "Name": "ByVirtualHubResourceId", + "Name": "ByVirtualHubResourceIdByVpnServerConfigurationObject", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "VirtualHubId", "Type": { "Namespace": "System", "Name": "System.String", @@ -182183,25 +181362,120 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "VpnServerConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ "ResourceName", - "RouteMapName" + "P2SVpnGatewayName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnGatewayScaleUnit", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnClientAddressPool", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -182209,12 +181483,112 @@ }, { "ParameterMetadata": { - "Name": "RouteMapRule", + "Name": "CustomDnsServer", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableInternetSecurityFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisableInternetSecurityFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableRoutingPreferenceInternetFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "P2SConnectionConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -182267,22 +181641,98 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubResourceIdByVpnServerConfigurationResourceId", "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualHubId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VpnServerConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ "ResourceName", - "RouteMapName" + "P2SVpnGatewayName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnGatewayScaleUnit", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnClientAddressPool", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -182290,12 +181740,112 @@ }, { "ParameterMetadata": { - "Name": "RouteMapRule", + "Name": "CustomDnsServer", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableInternetSecurityFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisableInternetSecurityFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableRoutingPreferenceInternetFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "P2SConnectionConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -182351,10 +181901,10 @@ }, { "VerbName": "New", - "NounName": "AzRouteMapRule", - "Name": "New-AzRouteMapRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteMapRuleCommand", - "SupportsShouldProcess": true, + "NounName": "AzPacketCaptureFilterConfig", + "Name": "New-AzPacketCaptureFilterConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewPacketCaptureFilterCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -182362,17 +181912,14 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Actions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction]", - "MatchCriteria": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion]", - "NextStepIfMatched": "System.String", - "MatchCriteriaText": "System.String", - "ActionsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Protocol": "System.String", + "RemoteIPAddress": "System.String", + "LocalIPAddress": "System.String", + "LocalPort": "System.String", + "RemotePort": "System.String" }, "Methods": [ { @@ -182411,27 +181958,25 @@ ], "Parameters": [ { - "Name": "MatchCriteria", + "Name": "Protocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "RouteMapRuleAction", + "Name": "RemoteIPAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "NextStepIfMatched", + "Name": "LocalIPAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -182440,7 +181985,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "LocalPort", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RemotePort", "Type": { "Namespace": "System", "Name": "System.String", @@ -182475,39 +182029,37 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "MatchCriteria", + "Name": "Protocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RouteMapRuleAction", + "Name": "RemoteIPAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "NextStepIfMatched", + "Name": "LocalIPAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -182515,14 +182067,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "LocalPort", "Type": { "Namespace": "System", "Name": "System.String", @@ -182530,10 +182082,25 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RemotePort", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -182567,10 +182134,10 @@ }, { "VerbName": "New", - "NounName": "AzRouteMapRuleAction", - "Name": "New-AzRouteMapRuleAction", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteMapRuleActionCommand", - "SupportsShouldProcess": true, + "NounName": "AzPacketCaptureScopeConfig", + "Name": "New-AzPacketCaptureScopeConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewPacketCaptureScopeCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -182578,15 +182145,11 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Parameters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter]", - "Type": "System.String", - "ParametersText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Include": "System.Collections.Generic.List`1[System.String]", + "Exclude": "System.Collections.Generic.List`1[System.String]" }, "Methods": [ { @@ -182625,21 +182188,22 @@ ], "Parameters": [ { - "Name": "Type", + "Name": "Include", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Parameter", + "Name": "Exclude", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -182670,34 +182234,35 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Type", + "Name": "Include", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Parameter", + "Name": "Exclude", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -182731,10 +182296,10 @@ }, { "VerbName": "New", - "NounName": "AzRouteMapRuleActionParameter", - "Name": "New-AzRouteMapRuleActionParameter", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteMapRuleActionParameterCommand", - "SupportsShouldProcess": true, + "NounName": "AzPrivateDnsZoneConfig", + "Name": "New-AzPrivateDnsZoneConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneConfigCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -182742,15 +182307,14 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RoutePrefix": "System.Collections.Generic.List`1[System.String]", - "Community": "System.Collections.Generic.List`1[System.String]", - "AsPath": "System.Collections.Generic.List`1[System.String]", + "RecordSets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]", "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "PrivateDnsZoneId": "System.String", + "ProvisioningState": "System.String", + "RecordSetsText": "System.String" }, "Methods": [ { @@ -182789,34 +182353,22 @@ ], "Parameters": [ { - "Name": "RoutePrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Community", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AsPath", + "Name": "PrivateDnsZoneId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -182845,46 +182397,28 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "RoutePrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Community", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsPath", + "Name": "PrivateDnsZoneId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -182923,9 +182457,9 @@ }, { "VerbName": "New", - "NounName": "AzRouteMapRuleCriterion", - "Name": "New-AzRouteMapRuleCriterion", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteMapRuleCriterionCommand", + "NounName": "AzPrivateDnsZoneGroup", + "Name": "New-AzPrivateDnsZoneGroup", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateDnsZoneGroupCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -182934,13 +182468,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RoutePrefix": "System.Collections.Generic.List`1[System.String]", - "Community": "System.Collections.Generic.List`1[System.String]", - "AsPath": "System.Collections.Generic.List`1[System.String]", - "MatchCondition": "System.String", + "PrivateDnsZoneConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", + "ProvisioningState": "System.String", + "PrivateDnsZoneConfigsText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -182982,7 +182515,7 @@ ], "Parameters": [ { - "Name": "MatchCondition", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -182991,32 +182524,53 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RoutePrefix", + "Name": "PrivateEndpointName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Community", + "Name": "Name", + "AliasList": [ + "PrivateDnsZoneGroupName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PrivateDnsZoneConfig", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "AsPath", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -183047,7 +182601,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "MatchCondition", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -183058,32 +182612,66 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RoutePrefix", + "Name": "PrivateEndpointName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Community", + "Name": "Name", + "AliasList": [ + "PrivateDnsZoneGroupName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PrivateDnsZoneConfig", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -183094,12 +182682,11 @@ }, { "ParameterMetadata": { - "Name": "AsPath", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -183140,40 +182727,61 @@ }, { "VerbName": "New", - "NounName": "AzRouteServer", - "Name": "New-AzRouteServer", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteServer", + "NounName": "AzPrivateEndpoint", + "Name": "New-AzPrivateEndpoint", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateEndpoint", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "RouteServerNameParameterSet", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowBranchToBranchTraffic": "System.Boolean", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]", - "RouteServerIps": "System.Collections.Generic.List`1[System.String]", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "ApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "CustomDnsConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration]", + "PrivateLinkServiceConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]", + "ManualPrivateLinkServiceConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]", "Tag": "System.Collections.Hashtable", - "PeeringsText": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", "Location": "System.String", - "Id": "System.String", - "Etag": "System.String", - "HubRoutingPreference": "System.String", - "PublicIpAddress": "System.String", - "HostedSubnet": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", "ProvisioningState": "System.String", + "Name": "System.String", "ResourceGroupName": "System.String", - "RouteServerAsn": "System.UInt32" + "TagsTable": "System.String", + "IpConfigurationsText": "System.String", + "ManualPrivateLinkServiceConnectionsText": "System.String", + "ExtendedLocationText": "System.String", + "CustomDnsConfigsText": "System.String", + "Etag": "System.String", + "PrivateLinkServiceConnectionsText": "System.String", + "NetworkInterfacesText": "System.String", + "SubnetText": "System.String", + "CustomNetworkInterfaceName": "System.String", + "ApplicationSecurityGroupsText": "System.String", + "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeNetworkInterfaces", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializePrivateLinkServiceConnections", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeManualPrivateLinkServiceConnections", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -183200,15 +182808,6 @@ "Constructors": [ { "Name": "" - }, - { - "Name": "", - "Parameters": [ - { - "Name": "virtualHub", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] } ] }, @@ -183219,7 +182818,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -183228,10 +182830,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RouteServerName", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -183240,7 +182839,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "HostedSubnet", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -183249,53 +182848,74 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PublicIpAddress", + "Name": "Subnet", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", "Etag": "System.String", - "IpConfigurationText": "System.String", "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "PrivateLinkServiceConnection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ByManualRequest", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EdgeZone", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "Tag", @@ -183325,25 +182945,31 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "HubRoutingPreference", + "Name": "ApplicationSecurityGroup", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, - "ValidateSet": [ - "ExpressRoute", - "VpnGateway", - "ASPath" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "AllowBranchToBranchTraffic", + "Name": "IpConfiguration", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CustomNetworkInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -183374,7 +183000,10 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -183389,10 +183018,7 @@ }, { "ParameterMetadata": { - "Name": "RouteServerName", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -183407,7 +183033,7 @@ }, { "ParameterMetadata": { - "Name": "HostedSubnet", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -183418,49 +183044,82 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "Subnet", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", "Etag": "System.String", - "IpConfigurationText": "System.String", "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PrivateLinkServiceConnection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ByManualRequest", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -183468,15 +183127,15 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "EdgeZone", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -183528,17 +183187,13 @@ }, { "ParameterMetadata": { - "Name": "HubRoutingPreference", + "Name": "ApplicationSecurityGroup", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, - "ValidateSet": [ - "ExpressRoute", - "VpnGateway", - "ASPath" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -183548,11 +183203,27 @@ }, { "ParameterMetadata": { - "Name": "AllowBranchToBranchTraffic", + "Name": "IpConfiguration", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CustomNetworkInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -183593,10 +183264,10 @@ }, { "VerbName": "New", - "NounName": "AzRouteTable", - "Name": "New-AzRouteTable", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteTable", - "SupportsShouldProcess": true, + "NounName": "AzPrivateEndpointIpConfiguration", + "Name": "New-AzPrivateEndpointIpConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateEndpointIPConfigurationCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -183604,34 +183275,17 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DisableBgpRoutePropagation": "System.Boolean", - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RoutesText": "System.String", - "SubnetsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "GroupId": "System.String", + "MemberName": "System.String", + "PrivateIPAddress": "System.String", + "Type": "System.String", + "Etag": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeSubnets", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeRoutes", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -183668,7 +183322,7 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -183677,10 +183331,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "GroupId", "Type": { "Namespace": "System", "Name": "System.String", @@ -183689,16 +183340,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "DisableBgpRoutePropagation", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Location", + "Name": "MemberName", "Type": { "Namespace": "System", "Name": "System.String", @@ -183707,41 +183349,13 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Route", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", + "Name": "PrivateIpAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -183770,7 +183384,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -183781,14 +183395,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "GroupId", "Type": { "Namespace": "System", "Name": "System.String", @@ -183796,21 +183407,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DisableBgpRoutePropagation", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -183818,7 +183414,7 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "MemberName", "Type": { "Namespace": "System", "Name": "System.String", @@ -183826,52 +183422,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Route", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -183879,15 +183429,15 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PrivateIpAddress", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -183924,10 +183474,10 @@ }, { "VerbName": "New", - "NounName": "AzRoutingConfiguration", - "Name": "New-AzRoutingConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand", - "SupportsShouldProcess": false, + "NounName": "AzPrivateLinkService", + "Name": "New-AzPrivateLinkService", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateLinkService", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -183935,16 +183485,37 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", + "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", + "LoadBalancerFrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]", + "Tag": "System.Collections.Hashtable", + "EnableProxyProtocol": "System.Nullable`1[System.Boolean]", + "ExtendedLocationText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "AutoApprovalText": "System.String", + "IpConfigurationsText": "System.String", + "PrivateEndpointConnectionsText": "System.String", + "NetworkInterfacesText": "System.String", + "Etag": "System.String", + "LoadBalancerFrontendIpConfigurationsText": "System.String", + "DestinationIPAddress": "System.String", + "Alias": "System.String", + "ProvisioningState": "System.String", + "VisibilityText": "System.String", + "Id": "System.String", + "Fqdns": "System.String[]" }, "Methods": [ { @@ -183983,16 +183554,57 @@ ], "Parameters": [ { - "Name": "AssociatedRouteTable", + "Name": "Name", + "AliasList": [ + "ServiceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Label", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "LoadBalancerFrontendIpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Visibility", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -184002,7 +183614,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Id", + "Name": "AutoApproval", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -184012,17 +183624,16 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "StaticRoute", + "Name": "EnableProxyProtocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "VnetLocalRouteOverrideCriteria", + "Name": "EdgeZone", "Type": { "Namespace": "System", "Name": "System.String", @@ -184031,16 +183642,34 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "InboundRouteMap", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "OutboundRouteMap", + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationIPAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -184075,22 +183704,87 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "AssociatedRouteTable", + "Name": "Name", + "AliasList": [ + "ServiceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Label", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LoadBalancerFrontendIpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Visibility", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -184099,14 +183793,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Id", + "Name": "AutoApproval", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -184115,30 +183809,29 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "StaticRoute", + "Name": "EnableProxyProtocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VnetLocalRouteOverrideCriteria", + "Name": "EdgeZone", "Type": { "Namespace": "System", "Name": "System.String", @@ -184149,15 +183842,45 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InboundRouteMap", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -184168,7 +183891,7 @@ }, { "ParameterMetadata": { - "Name": "OutboundRouteMap", + "Name": "DestinationIPAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -184179,7 +183902,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -184213,23 +183936,27 @@ }, { "VerbName": "New", - "NounName": "AzRoutingIntent", - "Name": "New-AzRoutingIntent", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRoutingIntentCommand", - "SupportsShouldProcess": true, + "NounName": "AzPrivateLinkServiceConnection", + "Name": "New-AzPrivateLinkServiceConnection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceConnectionCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", + "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", + "GroupIds": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", - "RoutingPoliciesText": "System.String", + "PrivateLinkServiceId": "System.String", + "RequestMessage": "System.String", + "GroupIdsText": "System.String", + "PrivateLinkServiceConnectionStateText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -184271,7 +183998,7 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -184280,106 +184007,69 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ParentResourceName", - "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ParentObject", - "AliasList": [ - "VirtualHub", - "ParentVirtualHub" - ], + "Name": "PrivateLinkService", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", + "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", + "LoadBalancerFrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]", "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "EnableProxyProtocol": "System.Nullable`1[System.Boolean]", + "ExtendedLocationText": "System.String", + "Name": "System.String", "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", "TagsTable": "System.String", - "Name": "System.String", + "AutoApprovalText": "System.String", + "IpConfigurationsText": "System.String", + "PrivateEndpointConnectionsText": "System.String", + "NetworkInterfacesText": "System.String", "Etag": "System.String", + "LoadBalancerFrontendIpConfigurationsText": "System.String", + "DestinationIPAddress": "System.String", + "Alias": "System.String", + "ProvisioningState": "System.String", + "VisibilityText": "System.String", "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "Fqdns": "System.String[]" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ParentResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "PrivateLinkServiceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RoutingIntentName" - ], + "Name": "GroupId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RoutingPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "RequestMessage", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -184406,11 +184096,11 @@ ], "ParameterSets": [ { - "Name": "ByVirtualHubName", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -184425,30 +184115,23 @@ }, { "ParameterMetadata": { - "Name": "ParentResourceName", - "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName" - ], + "Name": "GroupId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RoutingIntentName" - ], + "Name": "RequestMessage", "Type": { "Namespace": "System", "Name": "System.String", @@ -184456,37 +184139,6 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -184521,54 +184173,47 @@ ] }, { - "Name": "ByVirtualHubObject", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentObject", - "AliasList": [ - "VirtualHub", - "ParentVirtualHub" - ], + "Name": "PrivateLinkService", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", + "AutoApproval": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", + "LoadBalancerFrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]", "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "EnableProxyProtocol": "System.Nullable`1[System.Boolean]", + "ExtendedLocationText": "System.String", + "Name": "System.String", "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", "TagsTable": "System.String", - "Name": "System.String", + "AutoApprovalText": "System.String", + "IpConfigurationsText": "System.String", + "PrivateEndpointConnectionsText": "System.String", + "NetworkInterfacesText": "System.String", "Etag": "System.String", + "LoadBalancerFrontendIpConfigurationsText": "System.String", + "DestinationIPAddress": "System.String", + "Alias": "System.String", + "ProvisioningState": "System.String", + "VisibilityText": "System.String", "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "Fqdns": "System.String[]" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -184578,16 +184223,12 @@ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "RoutingIntentName" - ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -184596,27 +184237,27 @@ }, { "ParameterMetadata": { - "Name": "RoutingPolicy", + "Name": "GroupId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "RequestMessage", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -184654,21 +184295,17 @@ ] }, { - "Name": "ByVirtualHubResourceId", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "PrivateLinkServiceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -184678,32 +184315,12 @@ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "RoutingIntentName" - ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -184712,11 +184329,12 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "GroupId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -184727,42 +184345,7 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "RoutingIntentName" - ], + "Name": "RequestMessage", "Type": { "Namespace": "System", "Name": "System.String", @@ -184770,37 +184353,6 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -184838,10 +184390,10 @@ }, { "VerbName": "New", - "NounName": "AzRoutingPolicy", - "Name": "New-AzRoutingPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRoutingPolicyCommand", - "SupportsShouldProcess": true, + "NounName": "AzPrivateLinkServiceIpConfig", + "Name": "New-AzPrivateLinkServiceIpConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePrivateLinkServiceIpConfiguration", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -184849,14 +184401,21 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Destinations": "System.Collections.Generic.List`1[System.String]", + "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "Primary": "System.Nullable`1[System.Boolean]", "Name": "System.String", - "DestinationType": "System.String", - "NextHopType": "System.String", - "NextHop": "System.String" + "Id": "System.String", + "Etag": "System.String", + "PrivateIPAddress": "System.String", + "PrivateIPAllocationMethod": "System.String", + "ProvisioningState": "System.String", + "PrivateIPAddressVersion": "System.String", + "PublicIPAddressText": "System.String", + "SubnetText": "System.String" }, "Methods": [ { @@ -184895,32 +184454,126 @@ ], "Parameters": [ { - "Name": "Destination", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "NextHop", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PublicIpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Subnet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Primary", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -184949,12 +184602,11 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Destination", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -184965,30 +184617,143 @@ }, { "ParameterMetadata": { - "Name": "NextHop", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PublicIpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Subnet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Primary", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -185025,43 +184790,48 @@ }, { "VerbName": "New", - "NounName": "AzSaaSNetworkVirtualAppliance", - "Name": "New-AzSaaSNetworkVirtualAppliance", - "ClassName": "Microsoft.Azure.Commands.Network.NewSaaSNetworkVirtualApplianceCommand", + "NounName": "AzPublicIpAddress", + "Name": "New-AzPublicIpAddress", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePublicIpAddressCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ResourceNameParameterSet", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "NetworkProfile": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", - "NvaSku": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "VirtualApplianceConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "VirtualApplianceSites": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AdditionalNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]", - "InternetIngressPublicIps": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]", - "VirtualApplianceNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", - "BootStrapConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", - "CloudInitConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "VirtualApplianceAsn": "System.Nullable`1[System.Int64]", - "Etag": "System.String", - "CloudInitConfiguration": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", "TagsTable": "System.String", + "Type": "System.String", "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", "Id": "System.String" }, "Methods": [ @@ -185122,7 +184892,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -185131,16 +184901,154 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "EdgeZone", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Sku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Basic", + "Standard" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Tier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Regional", + "Global" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AllocationMethod", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Dynamic", + "Static" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubId", + "Name": "IpAddressVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DomainNameLabel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DomainNameLabelScope", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType" + ] + }, + "ValidateSet": [ + "TenantReuse", + "SubscriptionReuse", + "ResourceGroupReuse", + "NoReuse" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpTag", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PublicIpPrefix", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", + "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "CustomIpPrefixText": "System.String", + "IpTagsText": "System.String", + "Etag": "System.String", + "PublicIpAddressesText": "System.String", + "IPPrefix": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "SkuText": "System.String", + "Id": "System.String", + "PrefixLength": "System.UInt16" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DdosProtectionMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "VirtualNetworkInherited", + "Enabled", + "Disabled" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DdosProtectionPlanId", "Type": { "Namespace": "System", "Name": "System.String", @@ -185148,6 +185056,43 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "ReverseFqdn", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Tag", "Type": { @@ -185175,15 +185120,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "DelegatedServiceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "DefaultProfile", "AliasList": [ @@ -185207,7 +185143,7 @@ ], "ParameterSets": [ { - "Name": "ResourceNameParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { @@ -185222,7 +185158,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -185259,27 +185195,12 @@ }, { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "EdgeZone", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -185289,42 +185210,54 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Sku", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Basic", + "Standard" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Tier", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Regional", + "Global" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DelegatedServiceName", + "Name": "AllocationMethod", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Dynamic", + "Static" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -185334,87 +185267,111 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "IpAddressVersion", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ResourceIdParameterSet", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "DomainNameLabel", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Location", + "Name": "DomainNameLabelScope", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType]", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "TenantReuse", + "SubscriptionReuse", + "ResourceGroupReuse", + "NoReuse" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "IpTag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "PublicIpPrefix", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", + "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "CustomIpPrefixText": "System.String", + "IpTagsText": "System.String", + "Etag": "System.String", + "PublicIpAddressesText": "System.String", + "IPPrefix": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "SkuText": "System.String", + "Id": "System.String", + "PrefixLength": "System.UInt16" + } }, "ValidateNotNullOrEmpty": false }, @@ -185425,106 +185382,96 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "DdosProtectionMode", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "VirtualNetworkInherited", + "Enabled", + "Disabled" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DdosProtectionPlanId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DelegatedServiceName", + "Name": "ReverseFqdn", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "IdleTimeoutInMinutes", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Zone", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "IpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -185574,21 +185521,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "DelegatedServiceName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -185621,9 +185553,9 @@ }, { "VerbName": "New", - "NounName": "AzSecurityPartnerProvider", - "Name": "New-AzSecurityPartnerProvider", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureSecurityPartnerProviderCommand", + "NounName": "AzPublicIpPrefix", + "Name": "New-AzPublicIpPrefix", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePublicIpPrefixCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -185632,22 +185564,33 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", + "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "SecurityProviderName": "System.String", - "ProvisioningState": "System.String", - "ConnectionStatus": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "CustomIpPrefixText": "System.String", + "IpTagsText": "System.String", "Etag": "System.String", - "Id": "System.String" + "PublicIpAddressesText": "System.String", + "IPPrefix": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "SkuText": "System.String", + "Id": "System.String", + "PrefixLength": "System.UInt16" }, "Methods": [ { @@ -185716,118 +185659,157 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "SecurityProviderName", + "Name": "Sku", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "ZScaler", - "IBoss", - "Checkpoint" + "Standard" ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHub", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubId", + "Name": "Tier", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Regional", + "Global" + ], + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubName", + "Name": "PrefixLength", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt16", + "AssemblyQualifiedName": "System.UInt16, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Tag", + "Name": "IpAddressVersion", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": true }, { - "Name": "Force", + "Name": "IpTag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "Zone", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "CustomIpPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", + "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ChildCustomIpPrefixesText": "System.String", + "CustomIpPrefixParentText": "System.String", + "Cidr": "System.String", + "PrefixType": "System.String", + "Etag": "System.String", + "AuthorizationMessage": "System.String", + "SignedMessage": "System.String", + "ProvisioningState": "System.String", + "CommissionedState": "System.String", + "Asn": "System.String", + "Geo": "System.String", + "PublicIpPrefixesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EdgeZone", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", @@ -185891,18 +185873,50 @@ }, { "ParameterMetadata": { - "Name": "SecurityProviderName", + "Name": "Sku", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "ZScaler", - "IBoss", - "Checkpoint" + "Standard" ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Regional", + "Global" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PrefixLength", + "Type": { + "Namespace": "System", + "Name": "System.UInt16", + "AssemblyQualifiedName": "System.UInt16, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -185911,59 +185925,47 @@ }, { "ParameterMetadata": { - "Name": "VirtualHub", + "Name": "IpAddressVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IpTag", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "Zone", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -185974,7 +185976,50 @@ }, { "ParameterMetadata": { - "Name": "VirtualHubName", + "Name": "CustomIpPrefix", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", + "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ChildCustomIpPrefixesText": "System.String", + "CustomIpPrefixParentText": "System.String", + "Cidr": "System.String", + "PrefixType": "System.String", + "Etag": "System.String", + "AuthorizationMessage": "System.String", + "SignedMessage": "System.String", + "ProvisioningState": "System.String", + "CommissionedState": "System.String", + "Asn": "System.String", + "Geo": "System.String", + "PublicIpPrefixesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EdgeZone", "Type": { "Namespace": "System", "Name": "System.String", @@ -185985,7 +186030,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -186064,9 +186109,9 @@ }, { "VerbName": "New", - "NounName": "AzServiceEndpointPolicy", - "Name": "New-AzServiceEndpointPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureServiceEndpointPolicyCommand", + "NounName": "AzPublicIpTag", + "Name": "New-AzPublicIpTag", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzurePublicIpTagCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -186075,33 +186120,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "ServiceEndpointPolicyDefinitionsText": "System.String", - "SubnetsText": "System.String", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "IpTagType": "System.String", + "Tag": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeSubnets", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeServiceEndpointPolicyDefinitions", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -186138,26 +186163,7 @@ ], "Parameters": [ { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ServiceEndpointPolicyDefinition", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", + "Name": "IpTagType", "Type": { "Namespace": "System", "Name": "System.String", @@ -186166,7 +186172,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "Tag", "Type": { "Namespace": "System", "Name": "System.String", @@ -186174,15 +186180,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -186210,7 +186207,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "IpTagType", "Type": { "Namespace": "System", "Name": "System.String", @@ -186221,33 +186218,170 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ServiceEndpointPolicyDefinition", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzRadiusServer", + "Name": "New-AzRadiusServer", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzRadiusServerCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "RadiusServer", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RadiusServerScore": "System.Int32", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "RadiusServerAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RadiusServerSecret", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RadiusServerScore", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "RadiusServer", + "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "RadiusServerAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -186256,13 +186390,13 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "RadiusServerSecret", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -186271,18 +186405,18 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "RadiusServerScore", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -186311,28 +186445,59 @@ "ValueFromPipelineByPropertyName": false } ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] } ] }, { "VerbName": "New", - "NounName": "AzServiceEndpointPolicyDefinition", - "Name": "New-AzServiceEndpointPolicyDefinition", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureServiceEndpointPolicyDefinitionCommand", + "NounName": "AzRouteConfig", + "Name": "New-AzRouteConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "serviceResources": "System.Collections.Generic.List`1[System.String]", - "Description": "System.String", - "Service": "System.String", + "AddressPrefix": "System.String", + "NextHopType": "System.String", + "NextHopIpAddress": "System.String", "ProvisioningState": "System.String", "Name": "System.String", "Etag": "System.String", @@ -186381,35 +186546,34 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Description", + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ServiceResource", + "Name": "NextHopType", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Service", + "Name": "NextHopIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -186444,58 +186608,57 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Description", + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ServiceResource", + "Name": "NextHopType", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Service", + "Name": "NextHopIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -186529,10 +186692,10 @@ }, { "VerbName": "New", - "NounName": "AzStaticRoute", - "Name": "New-AzStaticRoute", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand", - "SupportsShouldProcess": false, + "NounName": "AzRouteFilter", + "Name": "New-AzRouteFilter", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRouteFilterCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -186540,14 +186703,33 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "RulesText": "System.String", + "PeeringsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", - "NextHopIpAddress": "System.String" + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializePeerings", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeRules", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -186585,30 +186767,69 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AddressPrefix", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "NextHopIpAddress", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Rule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, { @@ -186639,47 +186860,110 @@ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AddressPrefix", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "NextHopIpAddress", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Rule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -186714,10 +186998,10 @@ }, { "VerbName": "New", - "NounName": "AzVHubRoute", - "Name": "New-AzVHubRoute", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand", - "SupportsShouldProcess": false, + "NounName": "AzRouteFilterRuleConfig", + "Name": "New-AzRouteFilterRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRouteFilterRuleConfigCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -186725,14 +187009,15 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Destinations": "System.Collections.Generic.List`1[System.String]", + "Communities": "System.Collections.Generic.List`1[System.String]", + "Access": "System.String", + "RouteFilterRuleType": "System.String", "Name": "System.String", - "DestinationType": "System.String", - "NextHopType": "System.String", - "NextHop": "System.String" + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -186771,17 +187056,16 @@ ], "Parameters": [ { - "Name": "Destination", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationType", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -186790,31 +187074,39 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "NextHop", + "Name": "Access", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Allow", + "Deny" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "RouteFilterRuleType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Community" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "NextHopType", + "Name": "CommunityList", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -186843,23 +187135,22 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Destination", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DestinationType", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -186874,12 +187165,16 @@ }, { "ParameterMetadata": { - "Name": "NextHop", + "Name": "Access", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Allow", + "Deny" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -186889,12 +187184,15 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "RouteFilterRuleType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Community" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -186904,13 +187202,14 @@ }, { "ParameterMetadata": { - "Name": "NextHopType", + "Name": "CommunityList", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -186949,9 +187248,9 @@ }, { "VerbName": "New", - "NounName": "AzVHubRouteTable", - "Name": "New-AzVHubRouteTable", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteTableCommand", + "NounName": "AzRouteMap", + "Name": "New-AzRouteMap", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteMapCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -186960,17 +187259,16 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMap", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", - "Labels": "System.Collections.Generic.List`1[System.String]", - "AssociatedConnections": "System.Collections.Generic.List`1[System.String]", - "PropagatingConnections": "System.Collections.Generic.List`1[System.String]", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]", + "AssociatedInboundConnections": "System.Collections.Generic.List`1[System.String]", + "AssociatedOutboundConnections": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", - "RoutesText": "System.String", - "AssociatedConnectionsText": "System.String", - "PropagatingConnectionsText": "System.String", + "AssociatedInboundConnectionsText": "System.String", + "AssociatedOutboundConnectionsText": "System.String", + "RouteMapRulesText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -187018,13 +187316,13 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ParentResourceName", + "Name": "VirtualHubName", "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName" + "ParentVirtualHubName", + "ParentResourceName" ], "Type": { "Namespace": "System", @@ -187034,7 +187332,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "ParentObject", + "Name": "VirtualHubObject", "AliasList": [ "VirtualHub", "ParentVirtualHub" @@ -187042,7 +187340,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -187080,7 +187378,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "ParentResourceId", + "Name": "VirtualHubResourceId", "AliasList": [ "VirtualHubId", "ParentVirtualHubId" @@ -187096,8 +187394,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VHubRouteTableName", - "RouteTableName" + "RouteMapName" ], "Type": { "Namespace": "System", @@ -187107,22 +187404,12 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Route", + "Name": "RouteMapRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Label", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" }, "ValidateNotNullOrEmpty": false }, @@ -187168,19 +187455,19 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ParentResourceName", + "Name": "VirtualHubName", "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName" + "ParentVirtualHubName", + "ParentResourceName" ], "Type": { "Namespace": "System", @@ -187189,7 +187476,7 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -187199,8 +187486,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VHubRouteTableName", - "RouteTableName" + "RouteMapName" ], "Type": { "Namespace": "System", @@ -187209,39 +187495,23 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Route", + "Name": "RouteMapRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Label", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -187294,7 +187564,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ParentObject", + "Name": "VirtualHubObject", "AliasList": [ "VirtualHub", "ParentVirtualHub" @@ -187302,7 +187572,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -187339,7 +187609,7 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false @@ -187349,8 +187619,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VHubRouteTableName", - "RouteTableName" + "RouteMapName" ], "Type": { "Namespace": "System", @@ -187359,39 +187628,23 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Route", + "Name": "RouteMapRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Label", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -187444,7 +187697,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ParentResourceId", + "Name": "VirtualHubResourceId", "AliasList": [ "VirtualHubId", "ParentVirtualHubId" @@ -187456,7 +187709,7 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -187466,8 +187719,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VHubRouteTableName", - "RouteTableName" + "RouteMapName" ], "Type": { "Namespace": "System", @@ -187476,39 +187728,23 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Route", + "Name": "RouteMapRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Label", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -187564,8 +187800,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VHubRouteTableName", - "RouteTableName" + "RouteMapName" ], "Type": { "Namespace": "System", @@ -187574,39 +187809,23 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Route", + "Name": "RouteMapRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Label", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -187658,9 +187877,9 @@ }, { "VerbName": "New", - "NounName": "AzVirtualApplianceAdditionalNicProperty", - "Name": "New-AzVirtualApplianceAdditionalNicProperty", - "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceAdditionaNicPropertyCommand", + "NounName": "AzRouteMapRule", + "Name": "New-AzRouteMapRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteMapRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -187669,13 +187888,18 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "HasPublicIP": "System.Boolean", + "Actions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction]", + "MatchCriteria": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion]", + "NextStepIfMatched": "System.String", + "MatchCriteriaText": "System.String", + "ActionsText": "System.String", "Name": "System.String", - "AddressFamily": "System.String" - }, + "Etag": "System.String", + "Id": "System.String" + }, "Methods": [ { "Name": "GetType", @@ -187713,35 +187937,42 @@ ], "Parameters": [ { - "Name": "NicName", + "Name": "MatchCriteria", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RouteMapRuleAction", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction" }, "ValidateNotNullOrEmpty": true }, { - "Name": "HasPublicIP", + "Name": "NextStepIfMatched", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "AddressFamily", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -187770,11 +188001,28 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "NicName", + "Name": "MatchCriteria", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RouteMapRuleAction", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction" }, "ValidateNotNullOrEmpty": true }, @@ -187785,11 +188033,11 @@ }, { "ParameterMetadata": { - "Name": "HasPublicIP", + "Name": "NextStepIfMatched", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -187800,19 +188048,15 @@ }, { "ParameterMetadata": { - "Name": "AddressFamily", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -187849,9 +188093,9 @@ }, { "VerbName": "New", - "NounName": "AzVirtualApplianceInboundSecurityRulesProperty", - "Name": "New-AzVirtualApplianceInboundSecurityRulesProperty", - "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceInboundSecurityRulesPropertyCommand", + "NounName": "AzRouteMapRuleAction", + "Name": "New-AzRouteMapRuleAction", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteMapRuleActionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -187860,15 +188104,15 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DestinationPortRanges": "System.Collections.Generic.List`1[System.String]", - "AppliesOn": "System.Collections.Generic.List`1[System.String]", - "DestinationPortRange": "System.Nullable`1[System.Int32]", + "Parameters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter]", + "Type": "System.String", + "ParametersText": "System.String", "Name": "System.String", - "Protocol": "System.String", - "SourceAddressPrefix": "System.String" + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -187907,65 +188151,21 @@ ], "Parameters": [ { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Protocol", + "Name": "Type", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Tcp", - "Udp" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "SourceAddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DestinationPortRange", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DestinationPortRangeList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AppliesOn", + "Name": "Parameter", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter" }, "ValidateNotNullOrEmpty": false }, @@ -187996,31 +188196,12 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Protocol", + "Name": "Type", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Tcp", - "Udp" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -188030,45 +188211,12 @@ }, { "ParameterMetadata": { - "Name": "SourceAddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DestinationPortRange", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DestinationPortRangeList", + "Name": "Parameter", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter" }, "ValidateNotNullOrEmpty": false }, @@ -188077,22 +188225,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AppliesOn", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -188125,9 +188257,9 @@ }, { "VerbName": "New", - "NounName": "AzVirtualApplianceInternetIngressIpsProperty", - "Name": "New-AzVirtualApplianceInternetIngressIpsProperty", - "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceInternetIngressIpsPropertyCommand", + "NounName": "AzRouteMapRuleActionParameter", + "Name": "New-AzRouteMapRuleActionParameter", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteMapRuleActionParameterCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -188136,9 +188268,14 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "RoutePrefix": "System.Collections.Generic.List`1[System.String]", + "Community": "System.Collections.Generic.List`1[System.String]", + "AsPath": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ @@ -188178,14 +188315,34 @@ ], "Parameters": [ { - "Name": "InternetIngressPublicIpId", + "Name": "RoutePrefix", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Community", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsPath", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -188214,16 +188371,48 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "InternetIngressPublicIpId", + "Name": "RoutePrefix", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Community", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsPath", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -188260,9 +188449,9 @@ }, { "VerbName": "New", - "NounName": "AzVirtualApplianceIpConfiguration", - "Name": "New-AzVirtualApplianceIpConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceIpConfigurationCommand", + "NounName": "AzRouteMapRuleCriterion", + "Name": "New-AzRouteMapRuleCriterion", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteMapRuleCriterionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -188271,11 +188460,16 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Properties": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfigurationProperties", - "Name": "System.String" + "RoutePrefix": "System.Collections.Generic.List`1[System.String]", + "Community": "System.Collections.Generic.List`1[System.String]", + "AsPath": "System.Collections.Generic.List`1[System.String]", + "MatchCondition": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -188314,7 +188508,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "MatchCondition", "Type": { "Namespace": "System", "Name": "System.String", @@ -188323,13 +188517,34 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Primary", + "Name": "RoutePrefix", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Community", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsPath", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -188358,7 +188573,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "MatchCondition", "Type": { "Namespace": "System", "Name": "System.String", @@ -188373,15 +188588,48 @@ }, { "ParameterMetadata": { - "Name": "Primary", + "Name": "RoutePrefix", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Community", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsPath", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -188418,22 +188666,38 @@ }, { "VerbName": "New", - "NounName": "AzVirtualApplianceNetworkInterfaceConfiguration", - "Name": "New-AzVirtualApplianceNetworkInterfaceConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceNetworkInterfaceConfigurationCommand", + "NounName": "AzRouteServer", + "Name": "New-AzRouteServer", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteServer", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "RouteServerNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Properties": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfigurationProperties", - "NicType": "System.String" + "AllowBranchToBranchTraffic": "System.Boolean", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]", + "RouteServerIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "PeeringsText": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "Id": "System.String", + "Etag": "System.String", + "HubRoutingPreference": "System.String", + "PublicIpAddress": "System.String", + "HostedSubnet": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "RouteServerAsn": "System.UInt32" }, "Methods": [ { @@ -188462,6 +188726,15 @@ "Constructors": [ { "Name": "" + }, + { + "Name": "", + "Parameters": [ + { + "Name": "virtualHub", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] } ] }, @@ -188472,7 +188745,7 @@ ], "Parameters": [ { - "Name": "NicType", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -188481,15 +188754,125 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "IpConfiguration", + "Name": "RouteServerName", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HostedSubnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PublicIpAddress", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration" + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "HubRoutingPreference", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "ExpressRoute", + "VpnGateway", + "ASPath" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AllowBranchToBranchTraffic", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -188517,7 +188900,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "NicType", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -188528,16 +188911,33 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IpConfiguration", + "Name": "RouteServerName", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "HostedSubnet", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -188548,135 +188948,141 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "PublicIpAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVirtualApplianceNetworkProfile", - "Name": "New-AzVirtualApplianceNetworkProfile", - "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceNetworkProfileCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HubRoutingPreference", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "ExpressRoute", + "VpnGateway", + "ASPath" ], - "ReturnType": "System.Boolean" + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "NetworkInterfaceConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "NetworkInterfaceConfiguration", + "Name": "AllowBranchToBranchTraffic", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -188713,28 +189119,45 @@ }, { "VerbName": "New", - "NounName": "AzVirtualApplianceSite", - "Name": "New-AzVirtualApplianceSite", - "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceSiteCommand", + "NounName": "AzRouteTable", + "Name": "New-AzRouteTable", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRouteTable", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ResourceNameParameterSet", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AddressPrefix": "System.String", + "DisableBgpRoutePropagation": "System.Boolean", + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", + "RoutesText": "System.String", + "SubnetsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeSubnets", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeRoutes", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -188771,10 +189194,7 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -188783,7 +189203,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -188792,16 +189215,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "DisableBgpRoutePropagation", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "AddressPrefix", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -188810,32 +189233,21 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "O365Policy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NetworkVirtualApplianceId", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", + "Name": "Route", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute" }, "ValidateNotNullOrEmpty": false }, @@ -188880,14 +189292,11 @@ ], "ParameterSets": [ { - "Name": "ResourceNameParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -188902,7 +189311,10 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -188917,29 +189329,26 @@ }, { "ParameterMetadata": { - "Name": "AddressPrefix", + "Name": "DisableBgpRoutePropagation", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "O365Policy", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -188950,26 +189359,27 @@ }, { "ParameterMetadata": { - "Name": "NetworkVirtualApplianceId", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Route", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoute" }, "ValidateNotNullOrEmpty": false }, @@ -189035,310 +189445,51 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzRoutingConfiguration", + "Name": "New-AzRoutingConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRoutingConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "ResourceIdParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" }, - { - "ParameterMetadata": { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "O365Policy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkVirtualApplianceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "O365Policy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "NetworkVirtualApplianceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVirtualApplianceSkuProperty", - "Name": "New-AzVirtualApplianceSkuProperty", - "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Vendor": "System.String", - "BundledScaleUnit": "System.String", - "MarketPlaceVersion": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + ], + "ReturnType": "System.Boolean" }, { "Name": "GetHashCode", @@ -189358,10 +189509,7 @@ ], "Parameters": [ { - "Name": "VendorName", - "AliasList": [ - "Name" - ], + "Name": "AssociatedRouteTable", "Type": { "Namespace": "System", "Name": "System.String", @@ -189370,7 +189518,37 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "BundledScaleUnit", + "Name": "Label", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Id", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "StaticRoute", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VnetLocalRouteOverrideCriteria", "Type": { "Namespace": "System", "Name": "System.String", @@ -189379,7 +189557,16 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "MarketPlaceVersion", + "Name": "InboundRouteMap", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "OutboundRouteMap", "Type": { "Namespace": "System", "Name": "System.String", @@ -189414,10 +189601,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "VendorName", - "AliasList": [ - "Name" - ], + "Name": "AssociatedRouteTable", "Type": { "Namespace": "System", "Name": "System.String", @@ -189432,7 +189616,55 @@ }, { "ParameterMetadata": { - "Name": "BundledScaleUnit", + "Name": "Label", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Id", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "StaticRoute", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VnetLocalRouteOverrideCriteria", "Type": { "Namespace": "System", "Name": "System.String", @@ -189440,14 +189672,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MarketPlaceVersion", + "Name": "InboundRouteMap", "Type": { "Namespace": "System", "Name": "System.String", @@ -189455,7 +189687,22 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "OutboundRouteMap", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -189492,51 +189739,26 @@ }, { "VerbName": "New", - "NounName": "AzVirtualHub", - "Name": "New-AzVirtualHub", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubCommand", + "NounName": "AzRoutingIntent", + "Name": "New-AzRoutingIntent", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRoutingIntentCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualWanObject", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", + "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "RoutingPoliciesText": "System.String", "Name": "System.String", "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "Id": "System.String" }, "Methods": [ { @@ -189584,30 +189806,51 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "ParentResourceName", "AliasList": [ - "ResourceName", - "VirtualHubName" + "VirtualHubName", + "ParentVirtualHubName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "VirtualWan", + "Name": "ParentObject", + "AliasList": [ + "VirtualHub", + "ParentVirtualHub" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", "ProvisioningState": "System.String", - "VirtualWANType": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", @@ -189615,76 +189858,18 @@ "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualWanId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "HubVnetConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RouteTable", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", - "Connections": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Sku", + "Name": "ParentResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -189693,50 +189878,25 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PreferredRoutingGateway", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "ExpressRoute", - "VpnGateway" + "Name": "Name", + "AliasList": [ + "ResourceName", + "RoutingIntentName" ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "HubRoutingPreference", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "ExpressRoute", - "VpnGateway", - "ASPath" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualRouterAsn", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": false }, { - "Name": "VirtualRouterAutoScaleConfiguration", + "Name": "RoutingPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "MinCapacity": "System.Int32" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" }, "ValidateNotNullOrEmpty": false }, @@ -189772,7 +189932,7 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubName", "Parameters": [ { "ParameterMetadata": { @@ -189791,190 +189951,54 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ParentResourceName", "AliasList": [ - "ResourceName", - "VirtualHubName" + "VirtualHubName", + "ParentVirtualHubName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HubVnetConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RouteTable", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", - "Connections": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Sku", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PreferredRoutingGateway", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "ExpressRoute", - "VpnGateway" + "Name": "Name", + "AliasList": [ + "ResourceName", + "RoutingIntentName" ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HubRoutingPreference", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "ExpressRoute", - "VpnGateway", - "ASPath" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualRouterAsn", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualRouterAutoScaleConfiguration", + "Name": "RoutingPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "MinCapacity": "System.Int32" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -190023,21 +190047,42 @@ ] }, { - "Name": "ByVirtualWanObject", + "Name": "ByVirtualHubObject", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualWan", + "Name": "ParentObject", + "AliasList": [ + "VirtualHub", + "ParentVirtualHub" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", "ProvisioningState": "System.String", - "VirtualWANType": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", @@ -190045,7 +190090,8 @@ "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", - "Id": "System.String" + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" } }, "ValidateNotNullOrEmpty": false @@ -190055,49 +190101,19 @@ "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ "ResourceName", - "VirtualHubName" + "RoutingIntentName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -190106,13 +190122,14 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "RoutingPolicy", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -190121,12 +190138,11 @@ }, { "ParameterMetadata": { - "Name": "HubVnetConnection", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -190137,18 +190153,21 @@ }, { "ParameterMetadata": { - "Name": "RouteTable", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", - "Connections": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -190157,25 +190176,19 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "ByVirtualHubResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "Sku", + "Name": "ParentResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -190183,79 +190196,42 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PreferredRoutingGateway", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "ExpressRoute", - "VpnGateway" + "Name": "Name", + "AliasList": [ + "ResourceName", + "RoutingIntentName" ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HubRoutingPreference", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "ExpressRoute", - "VpnGateway", - "ASPath" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualRouterAsn", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualRouterAutoScaleConfiguration", + "Name": "RoutingPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "MinCapacity": "System.Int32" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -190304,66 +190280,21 @@ ] }, { - "Name": "ByVirtualWanResourceId", + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualWanId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ "ResourceName", - "VirtualHubName" + "RoutingIntentName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -190372,13 +190303,14 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "RoutingPolicy", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -190387,12 +190319,11 @@ }, { "ParameterMetadata": { - "Name": "HubVnetConnection", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -190403,18 +190334,21 @@ }, { "ParameterMetadata": { - "Name": "RouteTable", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", - "Connections": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -190423,120 +190357,164 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzRoutingPolicy", + "Name": "New-AzRoutingPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmRoutingPolicyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Destinations": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "DestinationType": "System.String", + "NextHopType": "System.String", + "NextHop": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Destination", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NextHop", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Sku", + "Name": "Destination", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PreferredRoutingGateway", + "Name": "NextHop", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "ExpressRoute", - "VpnGateway" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "HubRoutingPreference", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "ExpressRoute", - "VpnGateway", - "ASPath" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualRouterAsn", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualRouterAutoScaleConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "MinCapacity": "System.Int32" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -190573,27 +190551,44 @@ }, { "VerbName": "New", - "NounName": "AzVirtualHubBgpConnection", - "Name": "New-AzVirtualHubBgpConnection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzVirtualHubBgpConnectionCommand", + "NounName": "AzSaaSNetworkVirtualAppliance", + "Name": "New-AzSaaSNetworkVirtualAppliance", + "ClassName": "Microsoft.Azure.Commands.Network.NewSaaSNetworkVirtualApplianceCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubNameByHubVirtualNetworkConnectionObject", + "DefaultParameterSetName": "ResourceNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PeerIp": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "NetworkProfile": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", + "NvaSku": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", + "VirtualApplianceConnections": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "VirtualApplianceSites": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AdditionalNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]", + "InternetIngressPublicIps": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]", + "VirtualApplianceNics": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", + "BootStrapConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", + "CloudInitConfigurationBlobs": "System.Collections.Generic.IList`1[System.String]", + "Tag": "System.Collections.Hashtable", + "VirtualApplianceAsn": "System.Nullable`1[System.Int64]", "Etag": "System.String", - "Id": "System.String", - "PeerAsn": "System.UInt32" + "CloudInitConfiguration": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "ProvisioningState": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -190632,7 +190627,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -190641,7 +190639,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -190650,7 +190648,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PeerIp", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -190659,103 +190657,52 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PeerAsn", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "VirtualHubId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubVnetConnection", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "ProvisioningState": "System.String", - "RoutingConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "VirtualHubVnetConnectionId", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "VirtualHub", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "VirtualHubId", - "AliasList": [ - "ParentResourceId", - "ParentVirtualHubId" - ], + "Name": "DelegatedServiceName", "Type": { "Namespace": "System", "Name": "System.String", @@ -190763,15 +190710,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -190795,11 +190733,14 @@ ], "ParameterSets": [ { - "Name": "ByVirtualHubNameByHubVirtualNetworkConnectionObject", + "Name": "ResourceNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -190810,11 +190751,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualHubName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -190825,36 +190766,26 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualHubVnetConnection", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "ProvisioningState": "System.String", - "RoutingConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerIp", + "Name": "VirtualHubId", "Type": { "Namespace": "System", "Name": "System.String", @@ -190865,34 +190796,34 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerAsn", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -190912,6 +190843,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DelegatedServiceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -190941,11 +190887,11 @@ ] }, { - "Name": "ByVirtualHubNameByHubVirtualNetworkConnectionResourceId", + "Name": "ResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -190956,11 +190902,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualHubName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -190971,11 +190917,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualHubVnetConnectionId", + "Name": "VirtualHubId", "Type": { "Namespace": "System", "Name": "System.String", @@ -190986,67 +190932,67 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerIp", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerAsn", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DelegatedServiceName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -191081,7 +191027,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "PeerIp", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -191092,41 +191038,41 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerAsn", + "Name": "VirtualHubId", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -191141,22 +191087,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -191164,92 +191099,10 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualHubObjectByHubVirtualNetworkConnectionObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualHubVnetConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "ProvisioningState": "System.String", - "RoutingConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VirtualHub", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeerIp", + "Name": "DelegatedServiceName", "Type": { "Namespace": "System", "Name": "System.String", @@ -191260,52 +191113,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PeerAsn", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -191334,41 +191142,236 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzSecurityPartnerProvider", + "Name": "New-AzSecurityPartnerProvider", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureSecurityPartnerProviderCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "ByVirtualHubResourceIdByHubVirtualNetworkConnectionObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualHubVnetConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "ProvisioningState": "System.String", - "RoutingConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", + "Tag": "System.Collections.Hashtable", + "SecurityProviderName": "System.String", + "ProvisioningState": "System.String", + "ConnectionStatus": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SecurityProviderName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "ZScaler", + "IBoss", + "Checkpoint" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHub", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubId", + "Name": "Name", "AliasList": [ - "ParentResourceId", - "ParentVirtualHubId" + "ResourceName" ], "Type": { "Namespace": "System", @@ -191380,11 +191383,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerIp", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -191395,110 +191398,50 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PeerAsn", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualHubObjectByHubVirtualNetworkConnectionResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualHubVnetConnectionId", + "Name": "SecurityProviderName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "ZScaler", + "IBoss", + "Checkpoint" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { "Name": "VirtualHub", - "AliasList": [ - "ParentObject", - "ParentVirtualHub" - ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -191535,59 +191478,59 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeerIp", + "Name": "VirtualHubId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerAsn", + "Name": "VirtualHubName", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -191602,7 +191545,22 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", "AliasList": [ "AzContext", "AzureRmContext", @@ -191627,13 +191585,158 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzServiceEndpointPolicy", + "Name": "New-AzServiceEndpointPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureServiceEndpointPolicyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "Tag": "System.Collections.Hashtable", + "ServiceEndpointPolicyDefinitionsText": "System.String", + "SubnetsText": "System.String", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "ShouldSerializeSubnets", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeServiceEndpointPolicyDefinitions", + "ReturnType": "System.Boolean" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByVirtualHubResourceIdByHubVirtualNetworkConnectionResourceId", + "Name": "ServiceEndpointPolicyDefinition", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualHubVnetConnectionId", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -191648,11 +191751,23 @@ }, { "ParameterMetadata": { - "Name": "VirtualHubId", - "AliasList": [ - "ParentResourceId", - "ParentVirtualHubId" - ], + "Name": "ServiceEndpointPolicyDefinition", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -191663,11 +191778,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerIp", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -191678,23 +191793,175 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeerAsn", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzServiceEndpointPolicyDefinition", + "Name": "New-AzServiceEndpointPolicyDefinition", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureServiceEndpointPolicyDefinitionCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "SetByResource", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "serviceResources": "System.Collections.Generic.List`1[System.String]", + "Description": "System.String", + "Service": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServiceResource", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Service", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "Name", @@ -191703,7 +191970,7 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -191712,13 +191979,44 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Description", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ServiceResource", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Service", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -191757,9 +192055,9 @@ }, { "VerbName": "New", - "NounName": "AzVirtualHubRoute", - "Name": "New-AzVirtualHubRoute", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand", + "NounName": "AzStaticRoute", + "Name": "New-AzStaticRoute", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmStaticRouteCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -191768,15 +192066,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", - "Destinations": "System.Collections.Generic.List`1[System.String]", - "NextHops": "System.Collections.Generic.List`1[System.String]", - "NextHopIpAddress": "System.String", - "DestinationType": "System.String", - "NextHopType": "System.String" + "Name": "System.String", + "NextHopIpAddress": "System.String" }, "Methods": [ { @@ -191814,6 +192109,15 @@ } ], "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "AddressPrefix", "Type": { @@ -191822,7 +192126,7 @@ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "NextHopIpAddress", @@ -191831,7 +192135,7 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -191858,6 +192162,21 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AddressPrefix", @@ -191867,7 +192186,7 @@ "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -191882,7 +192201,7 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -191921,9 +192240,9 @@ }, { "VerbName": "New", - "NounName": "AzVirtualHubRouteTable", - "Name": "New-AzVirtualHubRouteTable", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand", + "NounName": "AzVHubRoute", + "Name": "New-AzVHubRoute", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -191932,15 +192251,14 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", - "Connections": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", + "Destinations": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "DestinationType": "System.String", + "NextHopType": "System.String", + "NextHop": "System.String" }, "Methods": [ { @@ -191979,14 +192297,50 @@ ], "Parameters": [ { - "Name": "Route", + "Name": "Destination", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DestinationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NextHop", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NextHopType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -192015,14 +192369,74 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Route", + "Name": "Destination", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DestinationType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NextHop", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NextHopType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -192061,25 +192475,28 @@ }, { "VerbName": "New", - "NounName": "AzVirtualHubVnetConnection", - "Name": "New-AzVirtualHubVnetConnection", - "ClassName": "Microsoft.Azure.Commands.Network.NewHubVirtualNetworkConnectionCommand", + "NounName": "AzVHubRouteTable", + "Name": "New-AzVHubRouteTable", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVHubRouteTableCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubNameByRemoteVirtualNetworkObject", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", + "Labels": "System.Collections.Generic.List`1[System.String]", + "AssociatedConnections": "System.Collections.Generic.List`1[System.String]", + "PropagatingConnections": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", - "RoutingConfigurationText": "System.String", + "RoutesText": "System.String", + "AssociatedConnectionsText": "System.String", + "PropagatingConnectionsText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -192151,7 +192568,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -192205,103 +192622,33 @@ "Name": "Name", "AliasList": [ "ResourceName", - "HubVirtualNetworkConnectionName" + "VHubRouteTableName", + "RouteTableName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RemoteVirtualNetwork", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", - "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RemoteVirtualNetworkId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableInternetSecurity", + "Name": "Route", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableInternetSecurityFlag", + "Name": "Label", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -192337,7 +192684,7 @@ ], "ParameterSets": [ { - "Name": "ByVirtualHubNameByRemoteVirtualNetworkResourceId", + "Name": "ByVirtualHubName", "Parameters": [ { "ParameterMetadata": { @@ -192375,7 +192722,12 @@ }, { "ParameterMetadata": { - "Name": "RemoteVirtualNetworkId", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VHubRouteTableName", + "RouteTableName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -192390,17 +192742,30 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" - ], + "Name": "Route", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -192409,7 +192774,7 @@ }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -192424,14 +192789,22 @@ }, { "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -192439,27 +192812,112 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "ByVirtualHubObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "ParentObject", + "AliasList": [ + "VirtualHub", + "ParentVirtualHub" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VHubRouteTableName", + "RouteTableName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Route", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -192508,29 +192966,34 @@ ] }, { - "Name": "ByVirtualHubNameByRemoteVirtualNetworkObject", + "Name": "ByVirtualHubResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ParentResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ParentResourceName", + "Name": "Name", "AliasList": [ - "VirtualHubName", - "ParentVirtualHubName" + "ResourceName", + "VHubRouteTableName", + "RouteTableName" ], "Type": { "Namespace": "System", @@ -192546,45 +193009,12 @@ }, { "ParameterMetadata": { - "Name": "RemoteVirtualNetwork", + "Name": "Route", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", - "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" }, "ValidateNotNullOrEmpty": false }, @@ -192595,17 +193025,14 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" - ], + "Name": "Label", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -192614,7 +193041,7 @@ }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -192629,14 +193056,22 @@ }, { "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -192644,27 +193079,60 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VHubRouteTableName", + "RouteTableName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "Route", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Label", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -192711,118 +193179,124 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualApplianceAdditionalNicProperty", + "Name": "New-AzVirtualApplianceAdditionalNicProperty", + "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceAdditionaNicPropertyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "ByVirtualHubObjectByRemoteVirtualNetworkObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ParentObject", - "AliasList": [ - "VirtualHub", - "ParentVirtualHub" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HasPublicIP": "System.Boolean", + "Name": "System.String", + "AddressFamily": "System.String" }, - { - "ParameterMetadata": { - "Name": "RemoteVirtualNetwork", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", - "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", - "Id": "System.String" + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "NicName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HasPublicIP", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AddressFamily", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" - ], + "Name": "NicName", "Type": { "Namespace": "System", "Name": "System.String", @@ -192837,69 +193311,31 @@ }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "HasPublicIP", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "AddressFamily", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -192934,65 +193370,159 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualApplianceInboundSecurityRulesProperty", + "Name": "New-AzVirtualApplianceInboundSecurityRulesProperty", + "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceInboundSecurityRulesPropertyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "ByVirtualHubObjectByRemoteVirtualNetworkResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ParentObject", - "AliasList": [ - "VirtualHub", - "ParentVirtualHub" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DestinationPortRanges": "System.Collections.Generic.List`1[System.String]", + "AppliesOn": "System.Collections.Generic.List`1[System.String]", + "DestinationPortRange": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "Protocol": "System.String", + "SourceAddressPrefix": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Tcp", + "Udp" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SourceAddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationPortRange", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationPortRangeList", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AppliesOn", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "RemoteVirtualNetworkId", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -193007,16 +193537,16 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" - ], + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Tcp", + "Udp" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -193026,28 +193556,28 @@ }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "SourceAddressPrefix", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "DestinationPortRange", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Boolean" + "System.Int32" ] }, "ValidateNotNullOrEmpty": false @@ -193059,20 +193589,12 @@ }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "DestinationPortRangeList", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -193083,15 +193605,16 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "AppliesOn", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -193123,85 +193646,245 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualApplianceInternetIngressIpsProperty", + "Name": "New-AzVirtualApplianceInternetIngressIpsProperty", + "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceInternetIngressIpsPropertyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InternetIngressPublicIpId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByVirtualHubResourceIdByRemoteVirtualNetworkObject", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" - ], + "Name": "InternetIngressPublicIpId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RemoteVirtualNetwork", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", - "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualApplianceIpConfiguration", + "Name": "New-AzVirtualApplianceIpConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceIpConfigurationCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfigurationProperties", + "Name": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Primary", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -193216,72 +193899,15 @@ }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", + "Name": "Primary", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -193313,38 +193939,117 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualApplianceNetworkInterfaceConfiguration", + "Name": "New-AzVirtualApplianceNetworkInterfaceConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceNetworkInterfaceConfigurationCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "ByVirtualHubResourceIdByRemoteVirtualNetworkResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ParentResourceId", - "AliasList": [ - "VirtualHubId", - "ParentVirtualHubId" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfigurationProperties", + "NicType": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "NicType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "RemoteVirtualNetworkId", + "Name": "NicType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -193353,15 +194058,12 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" - ], + "Name": "IpConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration" }, "ValidateNotNullOrEmpty": true }, @@ -193372,11 +194074,22 @@ }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -193384,106 +194097,108 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualApplianceNetworkProfile", + "Name": "New-AzVirtualApplianceNetworkProfile", + "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceNetworkProfileCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]" }, - { - "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" ] + } + ], + "Parameters": [ + { + "Name": "NetworkInterfaceConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration" + }, + "ValidateNotNullOrEmpty": true }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "HubVirtualNetworkConnectionName" - ], + "Name": "NetworkInterfaceConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration" }, "ValidateNotNullOrEmpty": true }, @@ -193492,78 +194207,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "EnableInternetSecurity", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableInternetSecurityFlag", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -193596,51 +194239,25 @@ }, { "VerbName": "New", - "NounName": "AzVirtualNetwork", - "Name": "New-AzVirtualNetwork", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkCommand", + "NounName": "AzVirtualApplianceSite", + "Name": "New-AzVirtualApplianceSite", + "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceSiteCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ResourceNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "Tag": "System.Collections.Hashtable", - "EnableDdosProtection": "System.Nullable`1[System.Boolean]", - "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", - "ExtendedLocationText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", - "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", - "VirtualNetworkPeeringsText": "System.String", - "EncryptionText": "System.String", - "BgpCommunitiesText": "System.String", "Etag": "System.String", - "FlowTimeoutInMinutesText": "System.String", - "DhcpOptionsText": "System.String", - "AddressSpaceText": "System.String", - "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", "Id": "System.String" }, "Methods": [ @@ -193701,7 +194318,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -193711,66 +194328,27 @@ }, { "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DnsServer", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FlowTimeout", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BgpCommunity", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "EnableEncryption", + "Name": "O365Policy", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "EncryptionEnforcementPolicy", + "Name": "NetworkVirtualApplianceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -193787,43 +194365,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "EnableDdosProtection", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DdosProtectionPlanId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpAllocation", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EdgeZone", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "Force", "Type": { @@ -193865,7 +194406,7 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ResourceNameParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -193902,7 +194443,7 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", @@ -193917,12 +194458,14 @@ }, { "ParameterMetadata": { - "Name": "AddressPrefix", + "Name": "O365Policy", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" + } }, "ValidateNotNullOrEmpty": true }, @@ -193933,30 +194476,26 @@ }, { "ParameterMetadata": { - "Name": "DnsServer", + "Name": "NetworkVirtualApplianceId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FlowTimeout", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -193967,53 +194506,116 @@ }, { "ParameterMetadata": { - "Name": "Subnet", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BgpCommunity", + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableEncryption", + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EncryptionEnforcementPolicy", + "Name": "O365Policy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkVirtualApplianceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -194021,7 +194623,7 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -194043,7 +194645,7 @@ }, { "ParameterMetadata": { - "Name": "EnableDdosProtection", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -194058,38 +194660,86 @@ }, { "ParameterMetadata": { - "Name": "DdosProtectionPlanId", + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IpAllocation", + "Name": "O365Policy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" + "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EdgeZone", + "Name": "NetworkVirtualApplianceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -194097,6 +194747,21 @@ }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -194164,62 +194829,23 @@ }, { "VerbName": "New", - "NounName": "AzVirtualNetworkGateway", - "Name": "New-AzVirtualNetworkGateway", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand", - "SupportsShouldProcess": true, + "NounName": "AzVirtualApplianceSkuProperty", + "Name": "New-AzVirtualApplianceSkuProperty", + "ClassName": "Microsoft.Azure.Commands.Network.NewVirtualApplianceSkuPropertyCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "Default", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", - "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" + "Vendor": "System.String", + "BundledScaleUnit": "System.String", + "MarketPlaceVersion": "System.String" }, "Methods": [ { @@ -194258,70 +194884,224 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "VendorName", "AliasList": [ - "ResourceName" + "Name" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "BundledScaleUnit", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Location", + "Name": "MarketPlaceVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "IpConfigurations", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "GatewayType", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateSet": [ - "Vpn", - "ExpressRoute", - "LocalGateway" - ], "ValidateNotNullOrEmpty": false - }, + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VendorName", + "AliasList": [ + "Name" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BundledScaleUnit", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MarketPlaceVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualHub", + "Name": "New-AzVirtualHub", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByVirtualWanObject", + "OutputTypes": [ { - "Name": "ExtendedLocation", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] }, - "ValidateNotNullOrEmpty": false - }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ { - "Name": "VNetExtendedLocationResourceId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -194330,98 +195110,30 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VpnType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "PolicyBased", - "RouteBased" + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualHubName" ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableBgp", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DisableIPsecProtection", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableActiveActiveFeature", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnablePrivateIpAddress", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "GatewaySku", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Basic", - "Standard", - "HighPerformance", - "UltraPerformance", - "VpnGw1", - "VpnGw2", - "VpnGw3", - "VpnGw4", - "VpnGw5", - "VpnGw1AZ", - "VpnGw2AZ", - "VpnGw3AZ", - "VpnGw4AZ", - "VpnGw5AZ", - "ErGw1AZ", - "ErGw2AZ", - "ErGw3AZ", - "ErGwScale" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "GatewayDefaultSite", + "Name": "VirtualWan", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", "Tag": "System.Collections.Hashtable", - "GatewayIpAddress": "System.String", - "Fqdn": "System.String", "ProvisioningState": "System.String", - "AddressSpaceText": "System.String", - "BgpSettingsText": "System.String", + "VirtualWANType": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", @@ -194435,231 +195147,122 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "VpnClientAddressPool", + "Name": "VirtualWanId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "VpnClientProtocol", + "Name": "AddressPrefix", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "SSTP", - "IkeV2", - "OpenVPN" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "VpnAuthenticationType", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Certificate", - "Radius", - "AAD" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "VpnClientRootCertificates", + "Name": "HubVnetConnection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate" + "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" }, "ValidateNotNullOrEmpty": false }, { - "Name": "VpnClientRevokedCertificates", + "Name": "RouteTable", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", + "Connections": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "VpnClientIpsecPolicy", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Asn", + "Name": "Sku", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PeerWeight", + "Name": "PreferredRoutingGateway", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "ExpressRoute", + "VpnGateway" + ], "ValidateNotNullOrEmpty": false }, { - "Name": "IpConfigurationBgpPeeringAddresses", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NatRule", + "Name": "HubRoutingPreference", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "ExpressRoute", + "VpnGateway", + "ASPath" + ], "ValidateNotNullOrEmpty": false }, { - "Name": "EnableBgpRouteTranslationForNat", + "Name": "VirtualRouterAsn", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RadiusServerAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RadiusServerSecret", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RadiusServerList", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AadTenantUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AadAudienceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AadIssuerUri", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "CustomRoute", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VpnGatewayGeneration", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualNetworkGatewayPolicyGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ClientConnectionConfiguration", + "Name": "VirtualRouterAutoScaleConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MinCapacity": "System.Int32" + } }, "ValidateNotNullOrEmpty": false }, @@ -194672,37 +195275,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "AdminState", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Enabled", - "Disabled" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MinScaleUnit", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaxScaleUnit", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -194726,13 +195298,29 @@ ], "ParameterSets": [ { - "Name": "Default", + "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName" + "ResourceName", + "VirtualHubName" ], "Type": { "Namespace": "System", @@ -194744,11 +195332,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", @@ -194759,7 +195347,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -194774,130 +195362,141 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpConfigurations", + "Name": "HubVnetConnection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration" + "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GatewayType", + "Name": "RouteTable", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", + "Connections": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateSet": [ - "Vpn", - "ExpressRoute", - "LocalGateway" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ExtendedLocation", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VNetExtendedLocationResourceId", + "Name": "Sku", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnType", + "Name": "PreferredRoutingGateway", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "PolicyBased", - "RouteBased" + "ExpressRoute", + "VpnGateway" ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableBgp", + "Name": "HubRoutingPreference", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "ExpressRoute", + "VpnGateway", + "ASPath" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableIPsecProtection", + "Name": "VirtualRouterAsn", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableActiveActiveFeature", + "Name": "VirtualRouterAutoScaleConfiguration", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MinCapacity": "System.Int32" + } }, "ValidateNotNullOrEmpty": false }, @@ -194908,7 +195507,7 @@ }, { "ParameterMetadata": { - "Name": "EnablePrivateIpAddress", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -194923,55 +195522,48 @@ }, { "ParameterMetadata": { - "Name": "GatewaySku", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateSet": [ - "Basic", - "Standard", - "HighPerformance", - "UltraPerformance", - "VpnGw1", - "VpnGw2", - "VpnGw3", - "VpnGw4", - "VpnGw5", - "VpnGw1AZ", - "VpnGw2AZ", - "VpnGw3AZ", - "VpnGw4AZ", - "VpnGw5AZ", - "ErGw1AZ", - "ErGw2AZ", - "ErGw3AZ", - "ErGwScale" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "GatewayDefaultSite", + "Name": "VirtualWan", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", "Tag": "System.Collections.Hashtable", - "GatewayIpAddress": "System.String", - "Fqdn": "System.String", "ProvisioningState": "System.String", - "AddressSpaceText": "System.String", - "BgpSettingsText": "System.String", + "VirtualWANType": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", @@ -194984,186 +195576,190 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnClientAddressPool", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnClientProtocol", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualHubName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "SSTP", - "IkeV2", - "OpenVPN" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnAuthenticationType", + "Name": "AddressPrefix", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Certificate", - "Radius", - "AAD" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnClientRootCertificates", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnClientRevokedCertificates", + "Name": "HubVnetConnection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate" + "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnClientIpsecPolicy", + "Name": "RouteTable", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", + "Connections": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Asn", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeerWeight", + "Name": "Sku", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpConfigurationBgpPeeringAddresses", + "Name": "PreferredRoutingGateway", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "ExpressRoute", + "VpnGateway" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NatRule", + "Name": "HubRoutingPreference", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "ExpressRoute", + "VpnGateway", + "ASPath" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableBgpRouteTranslationForNat", + "Name": "VirtualRouterAsn", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -195174,22 +195770,25 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "VirtualRouterAutoScaleConfiguration", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MinCapacity": "System.Int32" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -195204,53 +195803,72 @@ }, { "ParameterMetadata": { - "Name": "RadiusServerAddress", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "RadiusServerSecret", + "Name": "VirtualWanId", "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RadiusServerList", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AadTenantUri", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualHubName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -195258,14 +195876,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AadAudienceId", + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", @@ -195273,14 +195891,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AadIssuerUri", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -195288,34 +195906,42 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomRoute", + "Name": "HubVnetConnection", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnGatewayGeneration", + "Name": "RouteTable", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", + "Connections": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -195326,44 +195952,46 @@ }, { "ParameterMetadata": { - "Name": "VirtualNetworkGatewayPolicyGroup", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ClientConnectionConfiguration", + "Name": "Sku", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PreferredRoutingGateway", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "ExpressRoute", + "VpnGateway" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -195373,30 +196001,31 @@ }, { "ParameterMetadata": { - "Name": "AdminState", + "Name": "HubRoutingPreference", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Enabled", - "Disabled" + "ExpressRoute", + "VpnGateway", + "ASPath" ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MinScaleUnit", + "Name": "VirtualRouterAsn", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -195407,11 +196036,29 @@ }, { "ParameterMetadata": { - "Name": "MaxScaleUnit", + "Name": "VirtualRouterAutoScaleConfiguration", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MinCapacity": "System.Int32" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -195447,64 +196094,293 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualHubBgpConnection", + "Name": "New-AzVirtualHubBgpConnection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzVirtualHubBgpConnectionCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByVirtualHubNameByHubVirtualNetworkConnectionObject", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PeerIp": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "PeerAsn": "System.UInt32" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "__AllParameterSets", + "Name": "VirtualHubName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PeerIp", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PeerAsn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubVnetConnection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "ProvisioningState": "System.String", + "RoutingConfigurationText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubVnetConnectionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VirtualHub", + "AliasList": [ + "ParentObject", + "ParentVirtualHub" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubId", + "AliasList": [ + "ParentResourceId", + "ParentVirtualHubId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByVirtualHubNameByHubVirtualNetworkConnectionObject", "Parameters": [ { "ParameterMetadata": { - "Name": "IpConfigurations", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GatewayType", + "Name": "VirtualHubName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Vpn", - "ExpressRoute", - "LocalGateway" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ExtendedLocation", + "Name": "VirtualHubVnetConnection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "ProvisioningState": "System.String", + "RoutingConfigurationText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VNetExtendedLocationResourceId", + "Name": "PeerIp", "Type": { "Namespace": "System", "Name": "System.String", @@ -195512,67 +196388,74 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnType", + "Name": "PeerAsn", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "PolicyBased", - "RouteBased" - ], "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableBgp", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableIPsecProtection", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableActiveActiveFeature", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -195580,81 +196463,134 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubNameByHubVirtualNetworkConnectionResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnablePrivateIpAddress", + "Name": "VirtualHubName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GatewaySku", + "Name": "VirtualHubVnetConnectionId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Basic", - "Standard", - "HighPerformance", - "UltraPerformance", - "VpnGw1", - "VpnGw2", - "VpnGw3", - "VpnGw4", - "VpnGw5", - "VpnGw1AZ", - "VpnGw2AZ", - "VpnGw3AZ", - "VpnGw4AZ", - "VpnGw5AZ", - "ErGw1AZ", - "ErGw2AZ", - "ErGw3AZ", - "ErGwScale" - ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PeerIp", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PeerAsn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GatewayDefaultSite", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "Tag": "System.Collections.Hashtable", - "GatewayIpAddress": "System.String", - "Fqdn": "System.String", - "ProvisioningState": "System.String", - "AddressSpaceText": "System.String", - "BgpSettingsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -195662,179 +196598,229 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "VpnClientAddressPool", + "Name": "PeerIp", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnClientProtocol", + "Name": "PeerAsn", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "SSTP", - "IkeV2", - "OpenVPN" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnAuthenticationType", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Certificate", - "Radius", - "AAD" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnClientRootCertificates", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnClientRevokedCertificates", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubObjectByHubVirtualNetworkConnectionObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "VpnClientIpsecPolicy", + "Name": "VirtualHubVnetConnection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "ProvisioningState": "System.String", + "RoutingConfigurationText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Asn", + "Name": "VirtualHub", + "AliasList": [ + "ParentObject", + "ParentVirtualHub" + ], "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeerWeight", + "Name": "PeerIp", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpConfigurationBgpPeeringAddresses", + "Name": "PeerAsn", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NatRule", + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableBgpRouteTranslationForNat", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -195849,37 +196835,67 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubResourceIdByHubVirtualNetworkConnectionObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "Force", + "Name": "VirtualHubVnetConnection", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "ProvisioningState": "System.String", + "RoutingConfigurationText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RadiusServerAddress", + "Name": "VirtualHubId", + "AliasList": [ + "ParentResourceId", + "ParentVirtualHubId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -195887,60 +196903,105 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RadiusServerSecret", + "Name": "PeerIp", "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RadiusServerList", + "Name": "PeerAsn", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AadTenantUri", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AadAudienceId", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubObjectByHubVirtualNetworkConnectionResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualHubVnetConnectionId", "Type": { "Namespace": "System", "Name": "System.String", @@ -195948,14 +197009,66 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AadIssuerUri", + "Name": "VirtualHub", + "AliasList": [ + "ParentObject", + "ParentVirtualHub" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PeerIp", "Type": { "Namespace": "System", "Name": "System.String", @@ -195963,30 +197076,29 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CustomRoute", + "Name": "PeerAsn", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnGatewayGeneration", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -195994,99 +197106,143 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkGatewayPolicyGroup", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ClientConnectionConfiguration", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubResourceIdByHubVirtualNetworkConnectionResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualHubVnetConnectionId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "VirtualHubId", + "AliasList": [ + "ParentResourceId", + "ParentVirtualHubId" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AdminState", + "Name": "PeerIp", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Enabled", - "Disabled" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MinScaleUnit", + "Name": "PeerAsn", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MaxScaleUnit", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -196127,63 +197283,26 @@ }, { "VerbName": "New", - "NounName": "AzVirtualNetworkGatewayConnection", - "Name": "New-AzVirtualNetworkGatewayConnection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand", - "SupportsShouldProcess": true, + "NounName": "AzVirtualHubRoute", + "Name": "New-AzVirtualHubRoute", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetworkGateway1": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "VirtualNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "EnablePrivateLinkFastPath": "System.Boolean", - "ExpressRouteGatewayBypass": "System.Boolean", - "UseLocalAzureIpAddress": "System.Boolean", - "EnableBgp": "System.Boolean", - "UsePolicyBasedTrafficSelectors": "System.Boolean", - "GatewayCustomBgpIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", - "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", - "TunnelConnectionStatus": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]", - "Tag": "System.Collections.Hashtable", - "DpdTimeoutSeconds": "System.Int32", - "RoutingWeight": "System.Int32", - "IngressBytesTransferred": "System.Nullable`1[System.Int64]", - "EgressBytesTransferred": "System.Nullable`1[System.Int64]", - "IngressNatRulesText": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "GatewayCustomBgpIpAddressesText": "System.String", - "EgressNatRulesText": "System.String", - "ResourceGuid": "System.String", - "TunnelConnectionStatusText": "System.String", - "AuthorizationKey": "System.String", - "LocalNetworkGateway2Text": "System.String", - "VirtualNetworkGateway2Text": "System.String", - "VirtualNetworkGateway1Text": "System.String", - "ConnectionProtocol": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "ConnectionStatus": "System.String", - "SharedKey": "System.String", - "ConnectionMode": "System.String", - "ConnectionType": "System.String", - "PeerText": "System.String", - "Id": "System.String" + "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", + "Destinations": "System.Collections.Generic.List`1[System.String]", + "NextHops": "System.Collections.Generic.List`1[System.String]", + "NextHopIpAddress": "System.String", + "DestinationType": "System.String", + "NextHopType": "System.String" }, "Methods": [ { @@ -196222,37 +197341,17 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", + "Name": "AddressPrefix", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, { - "Name": "AuthorizationKey", + "Name": "NextHopIpAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -196261,363 +197360,480 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualNetworkGateway1", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", - "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false - }, + } + ], + "ParameterSets": [ { - "Name": "VirtualNetworkGateway2", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", - "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NextHopIpAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - }, - "ValidateNotNullOrEmpty": false - }, + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualHubRouteTable", + "Name": "New-AzVirtualHubRouteTable", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualHubRouteTableCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "LocalNetworkGateway2", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "Tag": "System.Collections.Hashtable", - "GatewayIpAddress": "System.String", - "Fqdn": "System.String", + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", + "Connections": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", - "AddressSpaceText": "System.String", - "BgpSettingsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ConnectionType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPsec", - "Vnet2Vnet", - "ExpressRoute", - "VPNClient" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RoutingWeight", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] }, - "ValidateNotNullOrEmpty": false - }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ { - "Name": "DpdTimeoutInSeconds", + "Name": "Route", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ConnectionMode", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false - }, + } + ], + "ParameterSets": [ { - "Name": "SharedKey", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PeerId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Route", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualHubVnetConnection", + "Name": "New-AzVirtualHubVnetConnection", + "ClassName": "Microsoft.Azure.Commands.Network.NewHubVirtualNetworkConnectionCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByVirtualHubNameByRemoteVirtualNetworkObject", + "OutputTypes": [ { - "Name": "Peer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", - "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", - "RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]", - "PeeredConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]", - "AzureASN": "System.Int32", - "VlanId": "System.Int32", - "PeeringType": "System.String", + "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "ProvisioningState": "System.String", + "RoutingConfigurationText": "System.String", "Name": "System.String", - "ConnectionsText": "System.String", - "Ipv6PeeringConfigText": "System.String", - "RouteFilterText": "System.String", - "PeerASNText": "System.String", - "MicrosoftPeeringConfigText": "System.String", - "GatewayManagerEtag": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "SharedKey": "System.String", - "SecondaryAzurePort": "System.String", - "PrimaryAzurePort": "System.String", - "SecondaryPeerAddressPrefix": "System.String", - "PrimaryPeerAddressPrefix": "System.String", - "State": "System.String", - "LastModifiedBy": "System.String", - "Id": "System.String", - "PeerASN": "System.UInt32" - } + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] }, - "ValidateNotNullOrEmpty": false - }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ { - "Name": "EnableBgp", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UseLocalAzureIpAddress", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Tag", + "Name": "ParentResourceName", + "AliasList": [ + "VirtualHubName", + "ParentVirtualHubName" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "ParentObject", + "AliasList": [ + "VirtualHub", + "ParentVirtualHub" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "UsePolicyBasedTrafficSelectors", + "Name": "ParentResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "IpsecPolicies", + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "TrafficSelectorPolicy", + "Name": "RemoteVirtualNetwork", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "ConnectionProtocol", + "Name": "RemoteVirtualNetworkId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "IngressNatRule", + "Name": "EnableInternetSecurity", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EgressNatRule", + "Name": "EnableInternetSecurityFlag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "GatewayCustomBgpIpAddress", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ExpressRouteGatewayBypass", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnablePrivateLinkFastPath", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -196648,14 +197864,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByVirtualHubNameByRemoteVirtualNetworkResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -196666,41 +197879,49 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ParentResourceName", + "AliasList": [ + "VirtualHubName", + "ParentVirtualHubName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "RemoteVirtualNetworkId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -196708,153 +197929,59 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkGateway1", + "Name": "EnableInternetSecurity", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", - "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkGateway2", + "Name": "EnableInternetSecurityFlag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", - "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LocalNetworkGateway2", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "Tag": "System.Collections.Hashtable", - "GatewayIpAddress": "System.String", - "Fqdn": "System.String", - "ProvisioningState": "System.String", - "AddressSpaceText": "System.String", - "BgpSettingsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -196862,77 +197989,76 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ConnectionType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPsec", - "Vnet2Vnet", - "ExpressRoute", - "VPNClient" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingWeight", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DpdTimeoutInSeconds", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubNameByRemoteVirtualNetworkObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "ConnectionMode", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SharedKey", + "Name": "ParentResourceName", + "AliasList": [ + "VirtualHubName", + "ParentVirtualHubName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -196940,59 +198066,83 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EnableBgp", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UseLocalAzureIpAddress", + "Name": "RemoteVirtualNetwork", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" + ], "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -197007,11 +198157,14 @@ }, { "ParameterMetadata": { - "Name": "UsePolicyBasedTrafficSelectors", + "Name": "EnableInternetSecurityFlag", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, @@ -197022,106 +198175,198 @@ }, { "ParameterMetadata": { - "Name": "IpsecPolicies", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TrafficSelectorPolicy", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ConnectionProtocol", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "ByVirtualHubObjectByRemoteVirtualNetworkObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "IngressNatRule", + "Name": "ParentObject", + "AliasList": [ + "VirtualHub", + "ParentVirtualHub" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EgressNatRule", + "Name": "RemoteVirtualNetwork", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GatewayCustomBgpIpAddress", + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -197136,22 +198381,49 @@ }, { "ParameterMetadata": { - "Name": "ExpressRouteGatewayBypass", + "Name": "EnableInternetSecurityFlag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnablePrivateLinkFastPath", + "Name": "RoutingConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -197162,7 +198434,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -197193,11 +198465,63 @@ ] }, { - "Name": "SetByResourceId", + "Name": "ByVirtualHubObjectByRemoteVirtualNetworkResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "PeerId", + "Name": "ParentObject", + "AliasList": [ + "VirtualHub", + "ParentVirtualHub" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RemoteVirtualNetworkId", "Type": { "Namespace": "System", "Name": "System.String", @@ -197205,16 +198529,17 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName" + "ResourceName", + "HubVirtualNetworkConnectionName" ], "Type": { "Namespace": "System", @@ -197226,107 +198551,125 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "EnableInternetSecurity", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "EnableInternetSecurityFlag", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "RoutingConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkGateway1", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", - "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubResourceIdByRemoteVirtualNetworkObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ParentResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, @@ -197334,154 +198677,122 @@ }, { "ParameterMetadata": { - "Name": "VirtualNetworkGateway2", + "Name": "RemoteVirtualNetwork", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "LocalNetworkGateway2", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "Tag": "System.Collections.Hashtable", - "GatewayIpAddress": "System.String", - "Fqdn": "System.String", - "ProvisioningState": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", - "BgpSettingsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ConnectionType", + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPsec", - "Vnet2Vnet", - "ExpressRoute", - "VPNClient" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RoutingWeight", + "Name": "EnableInternetSecurity", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DpdTimeoutInSeconds", + "Name": "EnableInternetSecurityFlag", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ConnectionMode", + "Name": "RoutingConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -197492,86 +198803,110 @@ }, { "ParameterMetadata": { - "Name": "SharedKey", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableBgp", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubResourceIdByRemoteVirtualNetworkResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "UseLocalAzureIpAddress", + "Name": "ParentResourceId", + "AliasList": [ + "VirtualHubId", + "ParentVirtualHubId" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "RemoteVirtualNetworkId", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UsePolicyBasedTrafficSelectors", + "Name": "EnableInternetSecurity", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -197582,48 +198917,54 @@ }, { "ParameterMetadata": { - "Name": "IpsecPolicies", + "Name": "EnableInternetSecurityFlag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TrafficSelectorPolicy", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ConnectionProtocol", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -197633,12 +198974,22 @@ }, { "ParameterMetadata": { - "Name": "IngressNatRule", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -197646,46 +198997,56 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "EgressNatRule", + "Name": "Name", + "AliasList": [ + "ResourceName", + "HubVirtualNetworkConnectionName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GatewayCustomBgpIpAddress", + "Name": "EnableInternetSecurity", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableInternetSecurityFlag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, @@ -197696,22 +199057,31 @@ }, { "ParameterMetadata": { - "Name": "ExpressRouteGatewayBypass", + "Name": "RoutingConfiguration", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnablePrivateLinkFastPath", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -197722,7 +199092,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -197751,53 +199121,292 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualNetwork", + "Name": "New-AzVirtualNetwork", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "SetByResource", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Peer", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", - "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", - "RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]", - "PeeredConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]", - "AzureASN": "System.Int32", - "VlanId": "System.Int32", - "PeeringType": "System.String", - "Name": "System.String", - "ConnectionsText": "System.String", - "Ipv6PeeringConfigText": "System.String", - "RouteFilterText": "System.String", - "PeerASNText": "System.String", - "MicrosoftPeeringConfigText": "System.String", - "GatewayManagerEtag": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "SharedKey": "System.String", - "SecondaryAzurePort": "System.String", - "PrimaryAzurePort": "System.String", - "SecondaryPeerAddressPrefix": "System.String", - "PrimaryPeerAddressPrefix": "System.String", - "State": "System.String", - "LastModifiedBy": "System.String", - "Id": "System.String", - "PeerASN": "System.UInt32" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BgpCommunities": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", + "Encryption": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", + "VirtualNetworkPeerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", + "Tag": "System.Collections.Hashtable", + "EnableDdosProtection": "System.Nullable`1[System.Boolean]", + "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "IpAllocationsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", + "SubnetsText": "System.String", + "VirtualNetworkPeeringsText": "System.String", + "EncryptionText": "System.String", + "BgpCommunitiesText": "System.String", + "Etag": "System.String", + "FlowTimeoutInMinutesText": "System.String", + "DhcpOptionsText": "System.String", + "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", + "ProvisioningState": "System.String", + "EnableDdosProtectionText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DnsServer", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FlowTimeout", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Subnet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BgpCommunity", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableEncryption", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EncryptionEnforcementPolicy", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableDdosProtection", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DdosProtectionPlanId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpAllocation", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EdgeZone", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PrivateEndpointVNetPoliciesValue", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "Name", @@ -197848,73 +199457,15 @@ }, { "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "AddressPrefix", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "VirtualNetworkGateway1", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", - "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, @@ -197922,88 +199473,12 @@ }, { "ParameterMetadata": { - "Name": "VirtualNetworkGateway2", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AllowRemoteVnetTraffic": "System.Boolean", - "AllowVirtualWanTraffic": "System.Boolean", - "EnableBgp": "System.Boolean", - "DisableIPsecProtection": "System.Boolean", - "EnablePrivateIpAddress": "System.Boolean", - "ActiveActive": "System.Boolean", - "EnableBgpRouteTranslationForNat": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "AutoScaleConfigurationText": "System.String", - "CustomRoutesText": "System.String", - "NatRulesText": "System.String", - "BgpSettingsText": "System.String", - "VpnClientConfigurationText": "System.String", - "SkuText": "System.String", - "GatewayDefaultSiteText": "System.String", - "VNetExtendedLocationResourceIdText": "System.String", - "ExtendedLocationText": "System.String", - "IpConfigurationsText": "System.String", - "GatewayType": "System.String", - "VpnType": "System.String", - "Etag": "System.String", - "AdminState": "System.String", - "ProvisioningState": "System.String", - "VNetExtendedLocationResourceId": "System.String", - "VpnGatewayGeneration": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "LocalNetworkGateway2", + "Name": "DnsServer", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "Tag": "System.Collections.Hashtable", - "GatewayIpAddress": "System.String", - "Fqdn": "System.String", - "ProvisioningState": "System.String", - "AddressSpaceText": "System.String", - "BgpSettingsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -198014,32 +199489,14 @@ }, { "ParameterMetadata": { - "Name": "ConnectionType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPsec", - "Vnet2Vnet", - "ExpressRoute", - "VPNClient" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "RoutingWeight", + "Name": "FlowTimeout", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -198050,11 +199507,12 @@ }, { "ParameterMetadata": { - "Name": "DpdTimeoutInSeconds", + "Name": "Subnet", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSSubnet" }, "ValidateNotNullOrEmpty": false }, @@ -198065,7 +199523,7 @@ }, { "ParameterMetadata": { - "Name": "ConnectionMode", + "Name": "BgpCommunity", "Type": { "Namespace": "System", "Name": "System.String", @@ -198076,11 +199534,11 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SharedKey", + "Name": "EnableEncryption", "Type": { "Namespace": "System", "Name": "System.String", @@ -198095,26 +199553,11 @@ }, { "ParameterMetadata": { - "Name": "EnableBgp", + "Name": "EncryptionEnforcementPolicy", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "UseLocalAzureIpAddress", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -198140,7 +199583,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "EnableDdosProtection", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -198155,27 +199598,27 @@ }, { "ParameterMetadata": { - "Name": "UsePolicyBasedTrafficSelectors", + "Name": "DdosProtectionPlanId", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IpsecPolicies", + "Name": "IpAllocation", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false }, @@ -198186,12 +199629,11 @@ }, { "ParameterMetadata": { - "Name": "TrafficSelectorPolicy", + "Name": "EdgeZone", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -198202,31 +199644,26 @@ }, { "ParameterMetadata": { - "Name": "ConnectionProtocol", + "Name": "PrivateEndpointVNetPoliciesValue", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IngressNatRule", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -198237,12 +199674,11 @@ }, { "ParameterMetadata": { - "Name": "EgressNatRule", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -198253,85 +199689,24 @@ }, { "ParameterMetadata": { - "Name": "GatewayCustomBgpIpAddress", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExpressRouteGatewayBypass", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EnablePrivateLinkFastPath", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -198344,28 +199719,61 @@ }, { "VerbName": "New", - "NounName": "AzVirtualNetworkGatewayIpConfig", - "Name": "New-AzVirtualNetworkGatewayIpConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand", - "SupportsShouldProcess": false, + "NounName": "AzVirtualNetworkGateway", + "Name": "New-AzVirtualNetworkGateway", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "Default", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateIpAddress": "System.String", - "PrivateIpAllocationMethod": "System.String", - "SubnetText": "System.String", - "PublicIpAddressText": "System.String", + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", "Id": "System.String" }, "Methods": [ @@ -198406,6 +199814,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -198414,16 +199825,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateIpAddress", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "SubnetId", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -198432,572 +199843,354 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Subnet", + "Name": "IpConfigurations", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "PublicIpAddressId", + "Name": "GatewayType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Vpn", + "ExpressRoute", + "LocalGateway" + ], "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpAddress", + "Name": "ExtendedLocation", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "Name": "VNetExtendedLocationResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "PolicyBased", + "RouteBased" ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableBgp", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + }, { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateIpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] + "Name": "DisableIPsecProtection", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SubnetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PublicIpAddressId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateIpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] + "Name": "EnableActiveActiveFeature", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "SetByResource", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PublicIpAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateIpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVirtualNetworkGatewayNatRule", - "Name": "New-AzVirtualNetworkGatewayNatRule", - "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.NewAzureVirtualNetworkGatewayNatRule", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualNetworkGatewayNatRuleName", - "OutputTypes": [ + "Name": "EnablePrivateIpAddress", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GatewaySku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Basic", + "Standard", + "HighPerformance", + "UltraPerformance", + "VpnGw1", + "VpnGw2", + "VpnGw3", + "VpnGw4", + "VpnGw5", + "VpnGw1AZ", + "VpnGw2AZ", + "VpnGw3AZ", + "VpnGw4AZ", + "VpnGw5AZ", + "ErGw1AZ", + "ErGw2AZ", + "ErGw3AZ", + "ErGwScale" + ], + "ValidateNotNullOrEmpty": false + }, { + "Name": "GatewayDefaultSite", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", - "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", - "VirtualNetworkGatewayNatRulePropertiesType": "System.String", - "Mode": "System.String", - "IpConfigurationId": "System.String", + "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "Tag": "System.Collections.Hashtable", + "GatewayIpAddress": "System.String", + "Fqdn": "System.String", "ProvisioningState": "System.String", - "InternalMappingsText": "System.String", - "ExternalMappingsText": "System.String", + "AddressSpaceText": "System.String", + "BgpSettingsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + } }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ + "ValidateNotNullOrEmpty": false + }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualNetworkGatewayNatRuleName" - ], + "Name": "VpnClientAddressPool", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, { - "Name": "Type", + "Name": "VpnClientProtocol", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateSet": [ - "Static", - "Dynamic" + "SSTP", + "IkeV2", + "OpenVPN" ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Mode", + "Name": "VpnAuthenticationType", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateSet": [ - "EgressSnat", - "IngressSnat" + "Certificate", + "Radius", + "AAD" ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnClientRootCertificates", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate" + }, "ValidateNotNullOrEmpty": false }, { - "Name": "InternalMapping", + "Name": "VpnClientRevokedCertificates", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VpnClientIpsecPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Asn", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ExternalMapping", + "Name": "PeerWeight", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "InternalPortRange", + "Name": "IpConfigurationBgpPeeringAddresses", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableBgpRouteTranslationForNat", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RadiusServerAddress", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RadiusServerSecret", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RadiusServerList", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ExternalPortRange", + "Name": "AadTenantUri", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AadAudienceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AadIssuerUri", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "CustomRoute", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "IpConfigurationId", + "Name": "VpnGatewayGeneration", "Type": { "Namespace": "System", "Name": "System.String", @@ -199005,6 +200198,26 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "VirtualNetworkGatewayPolicyGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ClientConnectionConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "Type": { @@ -199014,6 +200227,37 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "AdminState", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MinScaleUnit", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MaxScaleUnit", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -199037,14 +200281,13 @@ ], "ParameterSets": [ { - "Name": "ByVirtualNetworkGatewayNatRuleName", + "Name": "Default", "Parameters": [ { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName", - "VirtualNetworkGatewayNatRuleName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -199056,158 +200299,160 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Type", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Static", - "Dynamic" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Mode", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "EgressSnat", - "IngressSnat" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "InternalMapping", + "Name": "IpConfigurations", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExternalMapping", + "Name": "GatewayType", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Vpn", + "ExpressRoute", + "LocalGateway" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "InternalPortRange", + "Name": "ExtendedLocation", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExternalPortRange", + "Name": "VNetExtendedLocationResourceId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IpConfigurationId", + "Name": "VpnType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "PolicyBased", + "RouteBased" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableBgp", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DisableIPsecProtection", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableActiveActiveFeature", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -199215,326 +200460,214 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "Type", + "Name": "EnablePrivateIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "Static", - "Dynamic" - ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Mode", + "Name": "GatewaySku", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "EgressSnat", - "IngressSnat" + "Basic", + "Standard", + "HighPerformance", + "UltraPerformance", + "VpnGw1", + "VpnGw2", + "VpnGw3", + "VpnGw4", + "VpnGw5", + "VpnGw1AZ", + "VpnGw2AZ", + "VpnGw3AZ", + "VpnGw4AZ", + "VpnGw5AZ", + "ErGw1AZ", + "ErGw2AZ", + "ErGw3AZ", + "ErGwScale" ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "InternalMapping", + "Name": "GatewayDefaultSite", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "Tag": "System.Collections.Hashtable", + "GatewayIpAddress": "System.String", + "Fqdn": "System.String", + "ProvisioningState": "System.String", + "AddressSpaceText": "System.String", + "BgpSettingsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExternalMapping", + "Name": "VpnClientAddressPool", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "InternalPortRange", + "Name": "VpnClientProtocol", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "SSTP", + "IkeV2", + "OpenVPN" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExternalPortRange", + "Name": "VpnAuthenticationType", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Certificate", + "Radius", + "AAD" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IpConfigurationId", + "Name": "VpnClientRootCertificates", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "VpnClientRevokedCertificates", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "VpnClientIpsecPolicy", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVirtualNetworkGatewayPolicyGroup", - "Name": "New-AzVirtualNetworkGatewayPolicyGroup", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "IsDefault": "System.Boolean", - "ClientConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PolicyMembers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember]", - "Priority": "System.Int32", - "ProvisioningState": "System.String", - "PolicyMembersText": "System.String", - "P2SConnectionConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultPolicyGroup", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PolicyMember", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "Asn", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "PeerWeight", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -199542,45 +200675,46 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultPolicyGroup", + "Name": "IpConfigurationBgpPeeringAddresses", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PolicyMember", + "Name": "NatRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableBgpRouteTranslationForNat", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -199595,611 +200729,98 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVirtualNetworkGatewayPolicyGroupMember", - "Name": "New-AzVirtualNetworkGatewayPolicyGroupMember", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupMemberCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Name": "System.String", - "AttributeType": "System.String", - "AttributeValue": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AttributeType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AttributeValue", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AttributeType", + "Name": "RadiusServerAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AttributeValue", + "Name": "RadiusServerSecret", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "RadiusServerList", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "AadTenantUri", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVirtualNetworkSubnetConfig", - "Name": "New-AzVirtualNetworkSubnetConfig", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "ShouldSerializeIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeServiceEndpointPolicies", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeServiceEndpoints", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeResourceNavigationLinks", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializePrivateEndpoints", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeDelegations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeServiceAssociationLinks", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NetworkSecurityGroupId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkSecurityGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "FlushConnection": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "NetworkInterfacesText": "System.String", - "SubnetsText": "System.String", - "Etag": "System.String", - "DefaultSecurityRulesText": "System.String", - "SecurityRulesText": "System.String", - "FlushConnectionText": "System.String", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RouteTableId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RouteTable", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisableBgpRoutePropagation": "System.Boolean", - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RoutesText": "System.String", - "SubnetsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceId", - "AliasList": [ - "NatGatewayId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "AliasList": [ - "NatGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "PublicIpPrefixesText": "System.String", - "ResourceGroupName": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "SkuText": "System.String", - "ProvisioningState": "System.String", - "Location": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceEndpoint", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NetworkIdentifier", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceEndpointConfig", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceEndpointPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Delegation", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateEndpointNetworkPoliciesFlag", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PrivateLinkServiceNetworkPoliciesFlag", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpAllocation", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultOutboundAccess", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "AadAudienceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -200207,37 +200828,36 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AddressPrefix", + "Name": "AadIssuerUri", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ServiceEndpoint", + "Name": "CustomRoute", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -200246,30 +200866,27 @@ }, { "ParameterMetadata": { - "Name": "NetworkIdentifier", + "Name": "VpnGatewayGeneration", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ServiceEndpointConfig", + "Name": "VirtualNetworkGatewayPolicyGroup", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" }, "ValidateNotNullOrEmpty": false }, @@ -200280,12 +200897,12 @@ }, { "ParameterMetadata": { - "Name": "ServiceEndpointPolicy", + "Name": "ClientConnectionConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration" }, "ValidateNotNullOrEmpty": false }, @@ -200296,28 +200913,31 @@ }, { "ParameterMetadata": { - "Name": "Delegation", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateEndpointNetworkPoliciesFlag", + "Name": "AdminState", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -200327,52 +200947,33 @@ }, { "ParameterMetadata": { - "Name": "PrivateLinkServiceNetworkPoliciesFlag", + "Name": "MinScaleUnit", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IpAllocation", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultOutboundAccess", + "Name": "MaxScaleUnit", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -200403,17 +201004,18 @@ ] }, { - "Name": "SetByResourceId", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkSecurityGroupId", + "Name": "IpConfigurations", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -200422,14 +201024,19 @@ }, { "ParameterMetadata": { - "Name": "RouteTableId", + "Name": "GatewayType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, + "ValidateSet": [ + "Vpn", + "ExpressRoute", + "LocalGateway" + ], + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -200437,10 +201044,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceId", - "AliasList": [ - "NatGatewayId" - ], + "Name": "ExtendedLocation", "Type": { "Namespace": "System", "Name": "System.String", @@ -200455,7 +201059,7 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "VNetExtendedLocationResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -200463,14 +201067,161 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VpnType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "PolicyBased", + "RouteBased" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableBgp", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DisableIPsecProtection", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableActiveActiveFeature", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AddressPrefix", + "Name": "EnablePrivateIpAddress", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GatewaySku", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Basic", + "Standard", + "HighPerformance", + "UltraPerformance", + "VpnGw1", + "VpnGw2", + "VpnGw3", + "VpnGw4", + "VpnGw5", + "VpnGw1AZ", + "VpnGw2AZ", + "VpnGw3AZ", + "VpnGw4AZ", + "VpnGw5AZ", + "ErGw1AZ", + "ErGw2AZ", + "ErGw3AZ", + "ErGwScale" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "GatewayDefaultSite", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "Tag": "System.Collections.Hashtable", + "GatewayIpAddress": "System.String", + "Fqdn": "System.String", + "ProvisioningState": "System.String", + "AddressSpaceText": "System.String", + "BgpSettingsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VpnClientAddressPool", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -200479,21 +201230,26 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ServiceEndpoint", + "Name": "VpnClientProtocol", "Type": { "Namespace": "System", "Name": "System.String[]", "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "SSTP", + "IkeV2", + "OpenVPN" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -200502,16 +201258,19 @@ }, { "ParameterMetadata": { - "Name": "NetworkIdentifier", + "Name": "VpnAuthenticationType", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "Certificate", + "Radius", + "AAD" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -200520,12 +201279,12 @@ }, { "ParameterMetadata": { - "Name": "ServiceEndpointConfig", + "Name": "VpnClientRootCertificates", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate" }, "ValidateNotNullOrEmpty": false }, @@ -200536,12 +201295,12 @@ }, { "ParameterMetadata": { - "Name": "ServiceEndpointPolicy", + "Name": "VpnClientRevokedCertificates", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate" }, "ValidateNotNullOrEmpty": false }, @@ -200552,12 +201311,12 @@ }, { "ParameterMetadata": { - "Name": "Delegation", + "Name": "VpnClientIpsecPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false }, @@ -200568,11 +201327,11 @@ }, { "ParameterMetadata": { - "Name": "PrivateEndpointNetworkPoliciesFlag", + "Name": "Asn", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -200583,11 +201342,11 @@ }, { "ParameterMetadata": { - "Name": "PrivateLinkServiceNetworkPoliciesFlag", + "Name": "PeerWeight", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -200598,14 +201357,14 @@ }, { "ParameterMetadata": { - "Name": "IpAllocation", + "Name": "IpConfigurationBgpPeeringAddresses", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -200614,14 +201373,12 @@ }, { "ParameterMetadata": { - "Name": "DefaultOutboundAccess", + "Name": "NatRule", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule" }, "ValidateNotNullOrEmpty": false }, @@ -200632,22 +201389,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "EnableBgpRouteTranslationForNat", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -200655,41 +201401,14 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResource", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "NetworkSecurityGroup", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "FlushConnection": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "NetworkInterfacesText": "System.String", - "SubnetsText": "System.String", - "Etag": "System.String", - "DefaultSecurityRulesText": "System.String", - "SecurityRulesText": "System.String", - "FlushConnectionText": "System.String", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -200700,66 +201419,57 @@ }, { "ParameterMetadata": { - "Name": "RouteTable", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisableBgpRoutePropagation": "System.Boolean", - "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", - "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RoutesText": "System.String", - "SubnetsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RadiusServerAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "NatGateway" - ], + "Name": "RadiusServerSecret", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RadiusServerList", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "PublicIpPrefixesText": "System.String", - "ResourceGroupName": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "SkuText": "System.String", - "ProvisioningState": "System.String", - "Location": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" }, "ValidateNotNullOrEmpty": false }, @@ -200770,7 +201480,7 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "AadTenantUri", "Type": { "Namespace": "System", "Name": "System.String", @@ -200778,37 +201488,35 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AddressPrefix", + "Name": "AadAudienceId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ServiceEndpoint", + "Name": "AadIssuerUri", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -200817,16 +201525,14 @@ }, { "ParameterMetadata": { - "Name": "NetworkIdentifier", + "Name": "CustomRoute", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -200835,28 +201541,27 @@ }, { "ParameterMetadata": { - "Name": "ServiceEndpointConfig", + "Name": "VpnGatewayGeneration", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ServiceEndpointPolicy", + "Name": "VirtualNetworkGatewayPolicyGroup", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" }, "ValidateNotNullOrEmpty": false }, @@ -200867,12 +201572,12 @@ }, { "ParameterMetadata": { - "Name": "Delegation", + "Name": "ClientConnectionConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" + "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration" }, "ValidateNotNullOrEmpty": false }, @@ -200883,27 +201588,31 @@ }, { "ParameterMetadata": { - "Name": "PrivateEndpointNetworkPoliciesFlag", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateLinkServiceNetworkPoliciesFlag", + "Name": "AdminState", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Enabled", + "Disabled" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -200913,37 +201622,33 @@ }, { "ParameterMetadata": { - "Name": "IpAllocation", + "Name": "MinScaleUnit", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultOutboundAccess", + "Name": "MaxScaleUnit", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -200977,9 +201682,9 @@ }, { "VerbName": "New", - "NounName": "AzVirtualNetworkTap", - "Name": "New-AzVirtualNetworkTap", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualNetworkTap", + "NounName": "AzVirtualNetworkGatewayConnection", + "Name": "New-AzVirtualNetworkGatewayConnection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayConnectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -200988,24 +201693,51 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "NetworkInterfaceTapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetworkGateway1": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "VirtualNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "EnablePrivateLinkFastPath": "System.Boolean", + "ExpressRouteGatewayBypass": "System.Boolean", + "UseLocalAzureIpAddress": "System.Boolean", + "EnableBgp": "System.Boolean", + "UsePolicyBasedTrafficSelectors": "System.Boolean", + "GatewayCustomBgpIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", + "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", + "TunnelConnectionStatus": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]", "Tag": "System.Collections.Hashtable", - "DestinationPort": "System.Nullable`1[System.Int32]", - "NetworkInterfaceTapConfigurationsText": "System.String", - "DestinationNetworkInterfaceIPConfigurationText": "System.String", - "DestinationLoadBalancerFrontEndIPConfigurationText": "System.String", - "ResourceGroupName": "System.String", + "DpdTimeoutSeconds": "System.Int32", + "RoutingWeight": "System.Int32", + "IngressBytesTransferred": "System.Nullable`1[System.Int64]", + "EgressBytesTransferred": "System.Nullable`1[System.Int64]", + "IngressNatRulesText": "System.String", "Location": "System.String", - "ResourceGuid": "System.String", + "ResourceGroupName": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", + "GatewayCustomBgpIpAddressesText": "System.String", + "EgressNatRulesText": "System.String", + "ResourceGuid": "System.String", + "TunnelConnectionStatusText": "System.String", + "AuthorizationKey": "System.String", + "LocalNetworkGateway2Text": "System.String", + "VirtualNetworkGateway2Text": "System.String", + "VirtualNetworkGateway1Text": "System.String", + "ConnectionProtocol": "System.String", "Etag": "System.String", + "ProvisioningState": "System.String", + "ConnectionStatus": "System.String", + "SharedKey": "System.String", + "ConnectionMode": "System.String", + "ConnectionType": "System.String", + "PeerText": "System.String", "Id": "System.String" }, "Methods": [ @@ -201045,7 +201777,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -201054,7 +201789,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -201063,80 +201798,191 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "DestinationPort", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Location", + "Name": "AuthorizationKey", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Tag", + "Name": "VirtualNetworkGateway1", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", + "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationNetworkInterfaceIPConfigurationId", + "Name": "VirtualNetworkGateway2", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", + "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationNetworkInterfaceIPConfiguration", + "Name": "LocalNetworkGateway2", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "Primary": "System.Boolean", - "ApplicationGatewayBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "ApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "LoadBalancerBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "LoadBalancerInboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "VirtualNetworkTaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]", - "PrivateIpAddressVersion": "System.String", - "Name": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", + "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "Tag": "System.Collections.Hashtable", + "GatewayIpAddress": "System.String", + "Fqdn": "System.String", "ProvisioningState": "System.String", - "PrivateIpAllocationMethod": "System.String", - "ApplicationSecurityGroupsText": "System.String", - "GatewayLoadBalancerText": "System.String", - "PrivateLinkConnectionPropertiesText": "System.String", - "VirtualNetworkTapsText": "System.String", + "AddressSpaceText": "System.String", + "BgpSettingsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Etag": "System.String", - "ApplicationGatewayBackendAddressPoolsText": "System.String", - "LoadBalancerInboundNatRulesText": "System.String", - "LoadBalancerBackendAddressPoolsText": "System.String", - "PrivateIpAddress": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationLoadBalancerFrontEndIPConfigurationId", + "Name": "ConnectionType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPsec", + "Vnet2Vnet", + "ExpressRoute", + "VPNClient" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RoutingWeight", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DpdTimeoutInSeconds", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConnectionMode", "Type": { "Namespace": "System", "Name": "System.String", @@ -201145,41 +201991,87 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "DestinationLoadBalancerFrontEndIPConfiguration", + "Name": "SharedKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PeerId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Peer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", + "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", + "RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]", + "PeeredConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]", + "AzureASN": "System.Int32", + "VlanId": "System.Int32", + "PeeringType": "System.String", "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", + "ConnectionsText": "System.String", + "Ipv6PeeringConfigText": "System.String", + "RouteFilterText": "System.String", + "PeerASNText": "System.String", + "MicrosoftPeeringConfigText": "System.String", + "GatewayManagerEtag": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", - "Id": "System.String" + "SharedKey": "System.String", + "SecondaryAzurePort": "System.String", + "PrimaryAzurePort": "System.String", + "SecondaryPeerAddressPrefix": "System.String", + "PrimaryPeerAddressPrefix": "System.String", + "State": "System.String", + "LastModifiedBy": "System.String", + "Id": "System.String", + "PeerASN": "System.UInt32" } }, "ValidateNotNullOrEmpty": false }, + { + "Name": "EnableBgp", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UseLocalAzureIpAddress", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Force", "Type": { @@ -201189,6 +202081,78 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "UsePolicyBasedTrafficSelectors", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpsecPolicies", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TrafficSelectorPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConnectionProtocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IngressNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EgressNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GatewayCustomBgpIpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "AsJob", "Type": { @@ -201198,6 +202162,24 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "ExpressRouteGatewayBypass", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnablePrivateLinkFastPath", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -201225,7 +202207,10 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -201240,7 +202225,7 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -201255,28 +202240,28 @@ }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Location", + "Name": "AuthorizationKey", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -201285,66 +202270,113 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "VirtualNetworkGateway1", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", + "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "VirtualNetworkGateway2", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", + "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -201352,20 +202384,33 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceId", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "DestinationNetworkInterfaceIPConfigurationId", + "Name": "LocalNetworkGateway2", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "Tag": "System.Collections.Hashtable", + "GatewayIpAddress": "System.String", + "Fqdn": "System.String", + "ProvisioningState": "System.String", + "AddressSpaceText": "System.String", + "BgpSettingsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -201376,67 +202421,73 @@ }, { "ParameterMetadata": { - "Name": "DestinationLoadBalancerFrontEndIPConfigurationId", + "Name": "ConnectionType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "IPsec", + "Vnet2Vnet", + "ExpressRoute", + "VPNClient" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "RoutingWeight", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DpdTimeoutInSeconds", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "ConnectionMode", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "SharedKey", "Type": { "Namespace": "System", "Name": "System.String", @@ -201451,11 +202502,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "EnableBgp", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -201466,7 +202517,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "UseLocalAzureIpAddress", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -201477,11 +202528,26 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -201496,22 +202562,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "UsePolicyBasedTrafficSelectors", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -201519,47 +202574,15 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResource", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DestinationNetworkInterfaceIPConfiguration", + "Name": "IpsecPolicies", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "Primary": "System.Boolean", - "ApplicationGatewayBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "ApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "LoadBalancerBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "LoadBalancerInboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "VirtualNetworkTaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]", - "PrivateIpAddressVersion": "System.String", - "Name": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "ProvisioningState": "System.String", - "PrivateIpAllocationMethod": "System.String", - "ApplicationSecurityGroupsText": "System.String", - "GatewayLoadBalancerText": "System.String", - "PrivateLinkConnectionPropertiesText": "System.String", - "VirtualNetworkTapsText": "System.String", - "Etag": "System.String", - "ApplicationGatewayBackendAddressPoolsText": "System.String", - "LoadBalancerInboundNatRulesText": "System.String", - "LoadBalancerBackendAddressPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false }, @@ -201570,38 +202593,12 @@ }, { "ParameterMetadata": { - "Name": "DestinationLoadBalancerFrontEndIPConfiguration", + "Name": "TrafficSelectorPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false }, @@ -201612,58 +202609,65 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ConnectionProtocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "IngressNatRule", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DestinationPort", + "Name": "EgressNatRule", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "GatewayCustomBgpIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -201672,22 +202676,22 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "AsJob", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "ExpressRouteGatewayBypass", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -201698,11 +202702,11 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnablePrivateLinkFastPath", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -201713,7 +202717,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -201742,189 +202746,21 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVirtualRouter", - "Name": "New-AzVirtualRouter", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualRouter", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "VirtualRouterNameParameterSet", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowBranchToBranchTraffic": "System.Boolean", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "HostedSubnet": "System.String", - "PeeringsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - }, - { - "Name": "", - "Parameters": [ - { - "Name": "virtualHub", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "HostedSubnet", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "PeerId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -201949,7 +202785,7 @@ }, { "ParameterMetadata": { - "Name": "HostedSubnet", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -201960,7 +202796,7 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -201979,13 +202815,13 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "AuthorizationKey", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -201994,51 +202830,146 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "VirtualNetworkGateway1", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", + "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "VirtualNetworkGateway2", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", + "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "LocalNetworkGateway2", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "Tag": "System.Collections.Hashtable", + "GatewayIpAddress": "System.String", + "Fqdn": "System.String", + "ProvisioningState": "System.String", + "AddressSpaceText": "System.String", + "BgpSettingsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -202046,383 +202977,107 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVirtualRouterAutoScaleConfiguration", - "Name": "New-AzVirtualRouterAutoScaleConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualRouterAutoScaleConfigurationCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "MinCapacity": "System.Int32" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "MinCapacity", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "MinCapacity", + "Name": "ConnectionType", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 2147483647, + "ValidateSet": [ + "IPsec", + "Vnet2Vnet", + "ExpressRoute", + "VPNClient" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "RoutingWeight", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVirtualWan", - "Name": "New-AzVirtualWan", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualWanCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualWanName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AllowVnetToVnetTraffic", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AllowBranchToBranchTraffic", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualWANType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "DpdTimeoutInSeconds", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VirtualWanName" - ], + "Name": "ConnectionMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "SharedKey", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AllowVnetToVnetTraffic", + "Name": "EnableBgp", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AllowBranchToBranchTraffic", + "Name": "UseLocalAzureIpAddress", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -202433,7 +203088,7 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -202448,15 +203103,15 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VirtualWANType", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -202467,11 +203122,11 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "UsePolicyBasedTrafficSelectors", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -202482,179 +203137,222 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "IpsecPolicies", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVpnClientConfiguration", - "Name": "New-AzVpnClientConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVpnClientConfigurationCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VpnProfileSASUrl": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "TrafficSelectorPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ConnectionProtocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IngressNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EgressNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "GatewayCustomBgpIpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExpressRouteGatewayBypass", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnablePrivateLinkFastPath", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ProcessorArchitecture", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Amd64", - "X86" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AuthenticationMethod", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RadiusRootCertificateFile", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ClientRootCertificateFileList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByResource", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Peer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", + "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", + "RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]", + "PeeredConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]", + "AzureASN": "System.Int32", + "VlanId": "System.Int32", + "PeeringType": "System.String", + "Name": "System.String", + "ConnectionsText": "System.String", + "Ipv6PeeringConfigText": "System.String", + "RouteFilterText": "System.String", + "PeerASNText": "System.String", + "MicrosoftPeeringConfigText": "System.String", + "GatewayManagerEtag": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "SharedKey": "System.String", + "SecondaryAzurePort": "System.String", + "PrimaryAzurePort": "System.String", + "SecondaryPeerAddressPrefix": "System.String", + "PrimaryPeerAddressPrefix": "System.String", + "State": "System.String", + "LastModifiedBy": "System.String", + "Id": "System.String", + "PeerASN": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "Name", @@ -202668,7 +203366,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -202690,16 +203388,145 @@ }, { "ParameterMetadata": { - "Name": "ProcessorArchitecture", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Amd64", - "X86" - ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AuthorizationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualNetworkGateway1", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", + "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VirtualNetworkGateway2", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "GatewayDefaultSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", + "VpnClientConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", + "AllowRemoteVnetTraffic": "System.Boolean", + "AllowVirtualWanTraffic": "System.Boolean", + "EnableBgp": "System.Boolean", + "DisableIPsecProtection": "System.Boolean", + "EnablePrivateIpAddress": "System.Boolean", + "ActiveActive": "System.Boolean", + "EnableBgpRouteTranslationForNat": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "AutoScaleConfigurationText": "System.String", + "CustomRoutesText": "System.String", + "NatRulesText": "System.String", + "BgpSettingsText": "System.String", + "VpnClientConfigurationText": "System.String", + "SkuText": "System.String", + "GatewayDefaultSiteText": "System.String", + "VNetExtendedLocationResourceIdText": "System.String", + "ExtendedLocationText": "System.String", + "IpConfigurationsText": "System.String", + "GatewayType": "System.String", + "VpnType": "System.String", + "Etag": "System.String", + "AdminState": "System.String", + "ProvisioningState": "System.String", + "VNetExtendedLocationResourceId": "System.String", + "VpnGatewayGeneration": "System.String", + "Id": "System.String" + } + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -202709,16 +203536,66 @@ }, { "ParameterMetadata": { - "Name": "AuthenticationMethod", + "Name": "LocalNetworkGateway2", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "Tag": "System.Collections.Hashtable", + "GatewayIpAddress": "System.String", + "Fqdn": "System.String", + "ProvisioningState": "System.String", + "AddressSpaceText": "System.String", + "BgpSettingsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ConnectionType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "EAPTLS", - "EAPMSCHAPv2" + "IPsec", + "Vnet2Vnet", + "ExpressRoute", + "VPNClient" ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RoutingWeight", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -202728,7 +203605,37 @@ }, { "ParameterMetadata": { - "Name": "RadiusRootCertificateFile", + "Name": "DpdTimeoutInSeconds", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ConnectionMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharedKey", "Type": { "Namespace": "System", "Name": "System.String", @@ -202743,12 +203650,11 @@ }, { "ParameterMetadata": { - "Name": "ClientRootCertificateFileList", + "Name": "EnableBgp", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -202759,22 +203665,41 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "UseLocalAzureIpAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -202782,178 +203707,121 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVpnClientConnectionConfiguration", - "Name": "New-AzVpnClientConnectionConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVpnClientConnectionConfigurationCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Name": "System.String", - "ProvisioningState": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "UsePolicyBasedTrafficSelectors", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IpsecPolicies", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "TrafficSelectorPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualNetworkGatewayPolicyGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VpnClientAddressPool", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ConnectionProtocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualNetworkGatewayPolicyGroup", + "Name": "IngressNatRule", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnClientAddressPool", + "Name": "EgressNatRule", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "GatewayCustomBgpIpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "AsJob", @@ -202969,6 +203837,36 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "ExpressRouteGatewayBypass", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnablePrivateLinkFastPath", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -203001,9 +203899,9 @@ }, { "VerbName": "New", - "NounName": "AzVpnClientIpsecParameter", - "Name": "New-AzVpnClientIpsecParameter", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand", + "NounName": "AzVirtualNetworkGatewayIpConfig", + "Name": "New-AzVirtualNetworkGatewayIpConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayIpConfigCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -203012,17 +203910,18 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SaLifeTimeSeconds": "System.Int32", - "SaDataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateIpAddress": "System.String", + "PrivateIpAllocationMethod": "System.String", + "SubnetText": "System.String", + "PublicIpAddressText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -203061,117 +203960,122 @@ ], "Parameters": [ { - "Name": "SALifeTime", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 300, - "ValidateRangeMax": 172799, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SADataSize", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1024, - "ValidateRangeMax": 2147483647, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpsecEncryption", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "AES256", - "AES128" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "IpsecIntegrity", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "SHA256" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "IkeEncryption", + "Name": "SubnetId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "AES256", - "AES128" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "IkeIntegrity", + "Name": "Subnet", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } }, - "ValidateSet": [ - "SHA384", - "SHA256" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "DhGroup", + "Name": "PublicIpAddressId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "DHGroup24", - "ECP384", - "ECP256", - "DHGroup14", - "DHGroup2" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "PfsGroup", + "Name": "PublicIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } }, - "ValidateSet": [ - "PFS24", - "PFSMM", - "ECP384", - "ECP256", - "PFS14", - "PFS2", - "None" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -203200,31 +204104,27 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "SALifeTime", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 300, - "ValidateRangeMax": 172799, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SADataSize", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1024, - "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -203234,18 +204134,43 @@ }, { "ParameterMetadata": { - "Name": "IpsecEncryption", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SubnetId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "AES256", - "AES128" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": false, @@ -203255,18 +204180,13 @@ }, { "ParameterMetadata": { - "Name": "IpsecIntegrity", + "Name": "PublicIpAddressId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "SHA256" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -203275,38 +204195,107 @@ }, { "ParameterMetadata": { - "Name": "IkeEncryption", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "AES256", - "AES128" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IkeIntegrity", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "SHA384", - "SHA256" + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" ], - "ValidateNotNullOrEmpty": true + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResource", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Subnet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -203315,44 +204304,74 @@ }, { "ParameterMetadata": { - "Name": "DhGroup", + "Name": "PublicIpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "DHGroup24", - "ECP384", - "ECP256", - "DHGroup14", - "DHGroup2" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PfsGroup", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "PFS24", - "PFSMM", - "ECP384", - "ECP256", - "PFS14", - "PFS2", - "None" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -203391,28 +204410,31 @@ }, { "VerbName": "New", - "NounName": "AzVpnClientIpsecPolicy", - "Name": "New-AzVpnClientIpsecPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand", - "SupportsShouldProcess": false, + "NounName": "AzVirtualNetworkGatewayNatRule", + "Name": "New-AzVirtualNetworkGatewayNatRule", + "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetworkGateway.NewAzureVirtualNetworkGatewayNatRule", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByVirtualNetworkGatewayNatRuleName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" + "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", + "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", + "VirtualNetworkGatewayNatRulePropertiesType": "System.String", + "Mode": "System.String", + "IpConfigurationId": "System.String", + "ProvisioningState": "System.String", + "InternalMappingsText": "System.String", + "ExternalMappingsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -203451,117 +204473,101 @@ ], "Parameters": [ { - "Name": "SALifeTime", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualNetworkGatewayNatRuleName" + ], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 300, - "ValidateRangeMax": 172799, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "SADataSize", + "Name": "Type", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1024, - "ValidateRangeMax": 2147483647, + "ValidateSet": [ + "Static", + "Dynamic" + ], "ValidateNotNullOrEmpty": false }, { - "Name": "IpsecEncryption", + "Name": "Mode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "AES256", - "AES128" + "EgressSnat", + "IngressSnat" ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "IpsecIntegrity", + "Name": "InternalMapping", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "SHA256" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "IkeEncryption", + "Name": "ExternalMapping", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "AES256", - "AES128" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "IkeIntegrity", + "Name": "InternalPortRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "SHA384", - "SHA256" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "DhGroup", + "Name": "ExternalPortRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "DHGroup24", - "ECP384", - "ECP256", - "DHGroup14", - "DHGroup2" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "PfsGroup", + "Name": "IpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "PFS24", - "PFSMM", - "ECP384", - "ECP256", - "PFS14", - "PFS2", - "None" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -203586,57 +204592,107 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByVirtualNetworkGatewayNatRuleName", "Parameters": [ { "ParameterMetadata": { - "Name": "SALifeTime", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualNetworkGatewayNatRuleName" + ], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 300, - "ValidateRangeMax": 172799, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SADataSize", + "Name": "Type", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1024, - "ValidateRangeMax": 2147483647, + "ValidateSet": [ + "Static", + "Dynamic" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpsecEncryption", + "Name": "Mode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "AES256", - "AES128" + "EgressSnat", + "IngressSnat" ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InternalMapping", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExternalMapping", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InternalPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -203645,18 +204701,14 @@ }, { "ParameterMetadata": { - "Name": "IpsecIntegrity", + "Name": "ExternalPortRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "SHA256" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -203665,19 +204717,13 @@ }, { "ParameterMetadata": { - "Name": "IkeEncryption", + "Name": "IpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "GCMAES256", - "GCMAES128", - "AES256", - "AES128" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -203686,39 +204732,130 @@ }, { "ParameterMetadata": { - "Name": "IkeIntegrity", + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Type", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "SHA384", - "SHA256" + "Static", + "Dynamic" ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DhGroup", + "Name": "Mode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "DHGroup24", - "ECP384", - "ECP256", - "DHGroup14", - "DHGroup2" + "EgressSnat", + "IngressSnat" ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InternalMapping", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExternalMapping", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InternalPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -203727,22 +204864,44 @@ }, { "ParameterMetadata": { - "Name": "PfsGroup", + "Name": "ExternalPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "PFS24", - "PFSMM", - "ECP384", - "ECP256", - "PFS14", - "PFS2", - "None" - ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -203781,9 +204940,9 @@ }, { "VerbName": "New", - "NounName": "AzVpnClientRevokedCertificate", - "Name": "New-AzVpnClientRevokedCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand", + "NounName": "AzVirtualNetworkGatewayPolicyGroup", + "Name": "New-AzVirtualNetworkGatewayPolicyGroup", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -203792,11 +204951,16 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Thumbprint": "System.String", + "IsDefault": "System.Boolean", + "ClientConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PolicyMembers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember]", + "Priority": "System.Int32", "ProvisioningState": "System.String", + "PolicyMembersText": "System.String", + "P2SConnectionConfigurationsText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -203847,13 +205011,41 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Thumbprint", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultPolicyGroup", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PolicyMember", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -203897,17 +205089,63 @@ }, { "ParameterMetadata": { - "Name": "Thumbprint", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultPolicyGroup", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PolicyMember", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -203942,9 +205180,9 @@ }, { "VerbName": "New", - "NounName": "AzVpnClientRootCertificate", - "Name": "New-AzVpnClientRootCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand", + "NounName": "AzVirtualNetworkGatewayPolicyGroupMember", + "Name": "New-AzVirtualNetworkGatewayPolicyGroupMember", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkGatewayPolicyGroupMemberCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -203953,14 +205191,12 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PublicCertData": "System.String", - "ProvisioningState": "System.String", "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "AttributeType": "System.String", + "AttributeValue": "System.String" }, "Methods": [ { @@ -204008,13 +205244,31 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "PublicCertData", + "Name": "AttributeType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AttributeValue", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -204058,19 +205312,49 @@ }, { "ParameterMetadata": { - "Name": "PublicCertData", + "Name": "AttributeType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "AttributeValue", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -204103,42 +205387,81 @@ }, { "VerbName": "New", - "NounName": "AzVpnConnection", - "Name": "New-AzVpnConnection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand", - "SupportsShouldProcess": true, + "NounName": "AzVirtualNetworkSubnetConfig", + "Name": "New-AzVirtualNetworkSubnetConfig", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVirtualNetworkSubnetConfigCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVpnGatewayNameByVpnSiteObject", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "UsePolicyBasedTrafficSelectors": "System.Boolean", - "UseLocalAzureIpAddress": "System.Boolean", - "EnableBgp": "System.Boolean", - "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", - "VpnLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]", - "ConnectionBandwidth": "System.Int32", - "EgressBytesTransferred": "System.Nullable`1[System.Int64]", - "IngressBytesTransferred": "System.Nullable`1[System.Int64]", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", "Etag": "System.String", - "ConnectionStatus": "System.String", "ProvisioningState": "System.String", - "VpnConnectionProtocolType": "System.String", - "SharedKey": "System.String", - "RoutingConfigurationText": "System.String", - "Name": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeServiceEndpointPolicies", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeServiceEndpoints", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeResourceNavigationLinks", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializePrivateEndpoints", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeDelegations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeServiceAssociationLinks", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -204175,7 +205498,7 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -204184,245 +205507,223 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ParentResourceName", - "AliasList": [ - "ParentVpnGatewayName", - "VpnGatewayName" - ], + "Name": "AddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkSecurityGroupId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ParentObject", - "AliasList": [ - "ParentVpnGateway", - "VpnGateway" - ], + "Name": "NetworkSecurityGroup", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "FlushConnection": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "NetworkInterfacesText": "System.String", + "SubnetsText": "System.String", + "Etag": "System.String", + "DefaultSecurityRulesText": "System.String", + "SecurityRulesText": "System.String", + "FlushConnectionText": "System.String", "ProvisioningState": "System.String", - "TagsTable": "System.String", - "Name": "System.String", + "ResourceGroupName": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ParentResourceId", - "AliasList": [ - "ParentVpnGatewayId", - "VpnGatewayId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], + "Name": "RouteTableId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "VpnSite", + "Name": "RouteTable", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", - "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", + "DisableBgpRoutePropagation": "System.Boolean", + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", "Tag": "System.Collections.Hashtable", - "IsSecuritySite": "System.Nullable`1[System.Boolean]", - "IpAddress": "System.String", "ProvisioningState": "System.String", - "Etag": "System.String", + "RoutesText": "System.String", + "SubnetsText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", + "Etag": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "VpnSiteId", + "Name": "ResourceId", + "AliasList": [ + "NatGatewayId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "SharedKey", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ConnectionBandwidthInMbps", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpSecPolicy", + "Name": "InputObject", + "AliasList": [ + "NatGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" + "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "PublicIpPrefixesText": "System.String", + "ResourceGroupName": "System.String", + "Etag": "System.String", + "PublicIpAddressesText": "System.String", + "SkuText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "VpnConnectionProtocolType", + "Name": "ServiceEndpoint", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "EnableBgp", + "Name": "NetworkIdentifier", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "UseLocalAzureIpAddress", + "Name": "ServiceEndpointConfig", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UsePolicyBasedTrafficSelectors", + "Name": "ServiceEndpointPolicy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false }, { - "Name": "VpnSiteLinkConnection", + "Name": "Delegation", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" + "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableInternetSecurity", + "Name": "PrivateEndpointNetworkPoliciesFlag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "RoutingConfiguration", + "Name": "PrivateLinkServiceNetworkPoliciesFlag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "TrafficSelectorPolicy", + "Name": "IpAllocation", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "DefaultOutboundAccess", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, @@ -204449,30 +205750,11 @@ ], "ParameterSets": [ { - "Name": "ByVpnGatewayNameByVpnSiteObject", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ParentResourceName", - "AliasList": [ - "ParentVpnGatewayName", - "VpnGatewayName" - ], + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -204487,50 +205769,12 @@ }, { "ParameterMetadata": { - "Name": "VpnSite", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", - "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", - "Tag": "System.Collections.Hashtable", - "IsSecuritySite": "System.Nullable`1[System.Boolean]", - "IpAddress": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], + "Name": "AddressPrefix", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -204541,50 +205785,29 @@ }, { "ParameterMetadata": { - "Name": "SharedKey", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ConnectionBandwidthInMbps", + "Name": "ServiceEndpoint", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IpSecPolicy", + "Name": "NetworkIdentifier", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -204592,135 +205815,94 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnConnectionProtocolType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableBgp", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "UseLocalAzureIpAddress", + "Name": "ServiceEndpointConfig", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "UsePolicyBasedTrafficSelectors", + "Name": "ServiceEndpointPolicy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnSiteLinkConnection", + "Name": "Delegation", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" + "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "PrivateEndpointNetworkPoliciesFlag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "PrivateLinkServiceNetworkPoliciesFlag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TrafficSelectorPolicy", + "Name": "IpAllocation", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false }, @@ -204731,18 +205913,21 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DefaultOutboundAccess", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -204773,64 +205958,59 @@ ] }, { - "Name": "ByVpnGatewayNameByVpnSiteResourceId", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "NetworkSecurityGroupId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ParentResourceName", - "AliasList": [ - "ParentVpnGatewayName", - "VpnGatewayName" - ], + "Name": "RouteTableId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnSiteId", + "Name": "ResourceId", + "AliasList": [ + "NatGatewayId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -204845,50 +206025,45 @@ }, { "ParameterMetadata": { - "Name": "SharedKey", + "Name": "AddressPrefix", "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ConnectionBandwidthInMbps", + "Name": "ServiceEndpoint", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IpSecPolicy", + "Name": "NetworkIdentifier", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -204896,135 +206071,94 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnConnectionProtocolType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableBgp", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "UseLocalAzureIpAddress", + "Name": "ServiceEndpointConfig", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "UsePolicyBasedTrafficSelectors", + "Name": "ServiceEndpointPolicy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnSiteLinkConnection", + "Name": "Delegation", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" + "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "PrivateEndpointNetworkPoliciesFlag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "PrivateLinkServiceNetworkPoliciesFlag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TrafficSelectorPolicy", + "Name": "IpAllocation", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false }, @@ -205035,18 +206169,21 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DefaultOutboundAccess", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -205077,283 +206214,266 @@ ] }, { - "Name": "ByVpnGatewayObjectByVpnSiteObject", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentObject", - "AliasList": [ - "ParentVpnGateway", - "VpnGateway" - ], + "Name": "NetworkSecurityGroup", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", + "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "DefaultSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "FlushConnection": "System.Nullable`1[System.Boolean]", + "Name": "System.String", + "TagsTable": "System.String", "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "NetworkInterfacesText": "System.String", + "SubnetsText": "System.String", + "Etag": "System.String", + "DefaultSecurityRulesText": "System.String", + "SecurityRulesText": "System.String", + "FlushConnectionText": "System.String", "ProvisioningState": "System.String", - "TagsTable": "System.String", - "Name": "System.String", + "ResourceGroupName": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnSite", + "Name": "RouteTable", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", - "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", + "DisableBgpRoutePropagation": "System.Boolean", + "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", + "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", "Tag": "System.Collections.Hashtable", - "IsSecuritySite": "System.Nullable`1[System.Boolean]", - "IpAddress": "System.String", "ProvisioningState": "System.String", - "Etag": "System.String", + "RoutesText": "System.String", + "SubnetsText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", + "Etag": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "InputObject", "AliasList": [ - "ResourceName", - "VpnConnectionName" + "NatGateway" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SharedKey", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "PublicIpPrefixesText": "System.String", + "ResourceGroupName": "System.String", + "Etag": "System.String", + "PublicIpAddressesText": "System.String", + "SkuText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ConnectionBandwidthInMbps", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IpSecPolicy", + "Name": "AddressPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnConnectionProtocolType", + "Name": "ServiceEndpoint", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableBgp", + "Name": "NetworkIdentifier", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "UseLocalAzureIpAddress", + "Name": "ServiceEndpointConfig", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "UsePolicyBasedTrafficSelectors", + "Name": "ServiceEndpointPolicy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnSiteLinkConnection", + "Name": "Delegation", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" + "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "PrivateEndpointNetworkPoliciesFlag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "PrivateLinkServiceNetworkPoliciesFlag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TrafficSelectorPolicy", + "Name": "IpAllocation", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false }, @@ -205364,18 +206484,21 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DefaultOutboundAccess", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -205404,326 +206527,260 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualNetworkTap", + "Name": "New-AzVirtualNetworkTap", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualNetworkTap", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "SetByResource", + "OutputTypes": [ { - "Name": "ByVpnGatewayObjectByVpnSiteResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ParentObject", - "AliasList": [ - "ParentVpnGateway", - "VpnGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnSiteId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", + "NetworkInterfaceTapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "Tag": "System.Collections.Hashtable", + "DestinationPort": "System.Nullable`1[System.Int32]", + "NetworkInterfaceTapConfigurationsText": "System.String", + "DestinationNetworkInterfaceIPConfigurationText": "System.String", + "DestinationLoadBalancerFrontEndIPConfigurationText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "SharedKey", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ConnectionBandwidthInMbps", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IpSecPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnConnectionProtocolType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IKEv1", - "IKEv2" ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableBgp", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UseLocalAzureIpAddress", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsePolicyBasedTrafficSelectors", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnSiteLinkConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" - }, - "ValidateNotNullOrEmpty": false + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableInternetSecurity", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TrafficSelectorPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByVpnGatewayResourceIdByVpnSiteObject", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DestinationPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationNetworkInterfaceIPConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationNetworkInterfaceIPConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "Primary": "System.Boolean", + "ApplicationGatewayBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "ApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", + "LoadBalancerBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "LoadBalancerInboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "VirtualNetworkTaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]", + "PrivateIpAddressVersion": "System.String", + "Name": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAllocationMethod": "System.String", + "ApplicationSecurityGroupsText": "System.String", + "GatewayLoadBalancerText": "System.String", + "PrivateLinkConnectionPropertiesText": "System.String", + "VirtualNetworkTapsText": "System.String", + "Etag": "System.String", + "ApplicationGatewayBackendAddressPoolsText": "System.String", + "LoadBalancerInboundNatRulesText": "System.String", + "LoadBalancerBackendAddressPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationLoadBalancerFrontEndIPConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationLoadBalancerFrontEndIPConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentResourceId", - "AliasList": [ - "ParentVpnGatewayId", - "VpnGatewayId" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -205736,48 +206793,9 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "VpnSite", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", - "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", - "Tag": "System.Collections.Hashtable", - "IsSecuritySite": "System.Nullable`1[System.Boolean]", - "IpAddress": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -205788,146 +206806,56 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SharedKey", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ConnectionBandwidthInMbps", + "Name": "DestinationPort", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IpSecPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" - } + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnConnectionProtocolType", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableBgp", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UseLocalAzureIpAddress", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsePolicyBasedTrafficSelectors", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnSiteLinkConnection", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -205940,46 +206868,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TrafficSelectorPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "AsJob", @@ -206024,49 +206912,41 @@ ] }, { - "Name": "ByVpnGatewayResourceIdByVpnSiteResourceId", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentResourceId", - "AliasList": [ - "ParentVpnGatewayId", - "VpnGatewayId" - ], + "Name": "DestinationNetworkInterfaceIPConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnSiteId", + "Name": "DestinationLoadBalancerFrontEndIPConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -206077,146 +206957,71 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SharedKey", + "Name": "Name", "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ConnectionBandwidthInMbps", + "Name": "DestinationPort", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IpSecPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" - } + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnConnectionProtocolType", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableBgp", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UseLocalAzureIpAddress", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UsePolicyBasedTrafficSelectors", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnSiteLinkConnection", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -206229,46 +207034,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TrafficSelectorPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "AsJob", @@ -206313,73 +207078,84 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnConnectionName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SharedKey", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ConnectionBandwidthInMbps", + "Name": "DestinationNetworkInterfaceIPConfiguration", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "Primary": "System.Boolean", + "ApplicationGatewayBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "ApplicationSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", + "LoadBalancerBackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "LoadBalancerInboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "VirtualNetworkTaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]", + "PrivateIpAddressVersion": "System.String", + "Name": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAllocationMethod": "System.String", + "ApplicationSecurityGroupsText": "System.String", + "GatewayLoadBalancerText": "System.String", + "PrivateLinkConnectionPropertiesText": "System.String", + "VirtualNetworkTapsText": "System.String", + "Etag": "System.String", + "ApplicationGatewayBackendAddressPoolsText": "System.String", + "LoadBalancerInboundNatRulesText": "System.String", + "LoadBalancerBackendAddressPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IpSecPolicy", + "Name": "DestinationLoadBalancerFrontEndIPConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -206387,91 +207163,86 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnConnectionProtocolType", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableBgp", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "UseLocalAzureIpAddress", + "Name": "DestinationPort", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "UsePolicyBasedTrafficSelectors", + "Name": "Location", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnSiteLinkConnection", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableInternetSecurity", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -206484,46 +207255,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TrafficSelectorPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "AsJob", @@ -206571,38 +207302,36 @@ }, { "VerbName": "New", - "NounName": "AzVpnGateway", - "Name": "New-AzVpnGateway", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnGatewayCommand", + "NounName": "AzVirtualRouter", + "Name": "New-AzVirtualRouter", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualRouter", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualHubName", + "DefaultParameterSetName": "VirtualRouterNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "AllowBranchToBranchTraffic": "System.Boolean", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Etag": "System.String", + "ProvisioningState": "System.String", + "HostedSubnet": "System.String", + "PeeringsText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "ProvisioningState": "System.String", "TagsTable": "System.String", "Name": "System.String", - "Id": "System.String" + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" }, "Methods": [ { @@ -206631,6 +207360,15 @@ "Constructors": [ { "Name": "" + }, + { + "Name": "", + "Parameters": [ + { + "Name": "virtualHub", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] } ] }, @@ -206652,8 +207390,7 @@ { "Name": "Name", "AliasList": [ - "ResourceName", - "VpnGatewayName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -206663,111 +207400,22 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VpnGatewayScaleUnit", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHub", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualHubId", + "Name": "HostedSubnet", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "VirtualHubName", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VpnConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableRoutingPreferenceInternetFlag", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableBgpRouteTranslationForNat", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VpnGatewayNatRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "Tag", @@ -206779,11 +207427,11 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Asn", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -206834,14 +207482,13 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName", - "VpnGatewayName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -206853,17 +207500,17 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "VpnGatewayScaleUnit", + "Name": "HostedSubnet", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -206872,65 +207519,18 @@ }, { "ParameterMetadata": { - "Name": "VpnConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableRoutingPreferenceInternetFlag", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableBgpRouteTranslationForNat", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnGatewayNatRule", + "Name": "Location", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -206945,15 +207545,15 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Asn", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -207004,214 +207604,116 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualRouterAutoScaleConfiguration", + "Name": "New-AzVirtualRouterAutoScaleConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualRouterAutoScaleConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "ByVirtualHubObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualHub", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", - "AddressPrefix": "System.String", - "ProvisioningState": "System.String", - "Sku": "System.String", - "RoutingState": "System.String", - "PreferredRoutingGateway": "System.String", - "HubRoutingPreference": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "VirtualRouterAsn": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "MinCapacity": "System.Int32" }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayName" + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "MinCapacity", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "VpnGatewayScaleUnit", + "Name": "MinCapacity", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateRangeMin": 1, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "VpnConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableRoutingPreferenceInternetFlag", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableBgpRouteTranslationForNat", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnGatewayNatRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Asn", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -207239,227 +207741,176 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVirtualWan", + "Name": "New-AzVirtualWan", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVirtualWanCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "ByVirtualHubResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualHubId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnGatewayScaleUnit", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableRoutingPreferenceInternetFlag", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableBgpRouteTranslationForNat", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnGatewayNatRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "VirtualWANType": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "Asn", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByVirtualHubName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VirtualWanName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AllowVnetToVnetTraffic", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AllowBranchToBranchTraffic", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualWANType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualHubName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -207480,7 +207931,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VpnGatewayName" + "VirtualWanName" ], "Type": { "Namespace": "System", @@ -207496,13 +207947,13 @@ }, { "ParameterMetadata": { - "Name": "VpnGatewayScaleUnit", + "Name": "Location", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -207511,23 +207962,7 @@ }, { "ParameterMetadata": { - "Name": "VpnConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableRoutingPreferenceInternetFlag", + "Name": "AllowVnetToVnetTraffic", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -207542,7 +207977,7 @@ }, { "ParameterMetadata": { - "Name": "EnableBgpRouteTranslationForNat", + "Name": "AllowBranchToBranchTraffic", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -207555,22 +207990,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "VpnGatewayNatRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Tag", @@ -207588,11 +208007,11 @@ }, { "ParameterMetadata": { - "Name": "Asn", + "Name": "VirtualWANType", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -207648,35 +208067,21 @@ }, { "VerbName": "New", - "NounName": "AzVpnGatewayNatRule", - "Name": "New-AzVpnGatewayNatRule", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnGatewayNatRuleCommand", + "NounName": "AzVpnClientConfiguration", + "Name": "New-AzVpnClientConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVpnClientConfigurationCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVpnGatewayName", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", - "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", - "VpnGatewayNatRulePropertiesType": "System.String", - "Mode": "System.String", - "IpConfigurationId": "System.String", - "ProvisioningState": "System.String", - "InternalMappingsText": "System.String", - "ExternalMappingsText": "System.String", - "IngressVpnSiteLinkConnectionsText": "System.String", - "EgressVpnSiteLinkConnectionsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "VpnProfileSASUrl": "System.String" }, "Methods": [ { @@ -207715,65 +208120,9 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ParentResourceName", - "AliasList": [ - "ParentVpnGatewayName", - "VpnGatewayName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ParentObject", - "AliasList": [ - "ParentVpnGateway", - "VpnGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ParentResourceId", + "Name": "Name", "AliasList": [ - "ParentVpnGatewayId", - "VpnGatewayId" + "ResourceName" ], "Type": { "Namespace": "System", @@ -207783,11 +208132,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayNatRuleName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -207796,63 +208141,42 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Type", + "Name": "ProcessorArchitecture", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Static", - "Dynamic" + "Amd64", + "X86" ], "ValidateNotNullOrEmpty": false }, { - "Name": "Mode", + "Name": "AuthenticationMethod", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "EgressSnat", - "IngressSnat" + "EAPTLS", + "EAPMSCHAPv2" ], "ValidateNotNullOrEmpty": false }, { - "Name": "InternalMapping", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ExternalMapping", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InternalPortRange", + "Name": "RadiusRootCertificateFile", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "ExternalPortRange", + "Name": "ClientRootCertificateFileList", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -207861,24 +208185,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "IpConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -207902,29 +208208,13 @@ ], "ParameterSets": [ { - "Name": "ByVpnGatewayName", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ParentResourceName", + "Name": "Name", "AliasList": [ - "ParentVpnGatewayName", - "VpnGatewayName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -207933,18 +208223,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayNatRuleName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -207955,81 +208241,64 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Type", + "Name": "ProcessorArchitecture", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Static", - "Dynamic" + "Amd64", + "X86" ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Mode", + "Name": "AuthenticationMethod", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "EgressSnat", - "IngressSnat" + "EAPTLS", + "EAPMSCHAPv2" ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "InternalMapping", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExternalMapping", + "Name": "RadiusRootCertificateFile", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "InternalPortRange", + "Name": "ClientRootCertificateFileList", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -208041,31 +208310,26 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExternalPortRange", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IpConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -208073,99 +208337,134 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVpnClientConnectionConfiguration", + "Name": "New-AzVpnClientConnectionConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVpnClientConnectionConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Name": "System.String", + "ProvisioningState": "System.String" }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByVpnGatewayObject", + "Name": "VirtualNetworkGatewayPolicyGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VpnClientAddressPool", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ParentObject", - "AliasList": [ - "ParentVpnGateway", - "VpnGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", - "Tag": "System.Collections.Hashtable", - "VpnGatewayScaleUnit": "System.Int32", - "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", - "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayNatRuleName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -208180,61 +208479,23 @@ }, { "ParameterMetadata": { - "Name": "Type", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Static", - "Dynamic" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Mode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "EgressSnat", - "IngressSnat" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "InternalMapping", + "Name": "VirtualNetworkGatewayPolicyGroup", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExternalMapping", + "Name": "VpnClientAddressPool", "Type": { "Namespace": "System", "Name": "System.String[]", @@ -208248,53 +208509,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "InternalPortRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExternalPortRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IpConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "AsJob", @@ -208337,61 +208551,257 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVpnClientIpsecParameter", + "Name": "New-AzVpnClientIpsecParameter", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecParametersCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SaLifeTimeSeconds": "System.Int32", + "SaDataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "SALifeTime", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 300, + "ValidateRangeMax": 172799, + "ValidateNotNullOrEmpty": false }, { - "Name": "ByVpnGatewayResourceId", + "Name": "SADataSize", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 1024, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpsecEncryption", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "GCMAES256", + "GCMAES128", + "AES256", + "AES128" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IpsecIntegrity", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "GCMAES256", + "GCMAES128", + "SHA256" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IkeEncryption", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "GCMAES256", + "GCMAES128", + "AES256", + "AES128" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IkeIntegrity", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "SHA384", + "SHA256" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DhGroup", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "DHGroup24", + "ECP384", + "ECP256", + "DHGroup14", + "DHGroup2" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PfsGroup", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "PFS24", + "PFSMM", + "ECP384", + "ECP256", + "PFS14", + "PFS2", + "None" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ParentResourceId", - "AliasList": [ - "ParentVpnGatewayId", - "VpnGatewayId" - ], + "Name": "SALifeTime", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 300, + "ValidateRangeMax": 172799, + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayNatRuleName" - ], + "Name": "SADataSize", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1024, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Type", + "Name": "IpsecEncryption", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Static", - "Dynamic" + "GCMAES256", + "GCMAES128", + "AES256", + "AES128" ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -208400,17 +208810,18 @@ }, { "ParameterMetadata": { - "Name": "Mode", + "Name": "IpsecIntegrity", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "EgressSnat", - "IngressSnat" + "GCMAES256", + "GCMAES128", + "SHA256" ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -208419,46 +208830,19 @@ }, { "ParameterMetadata": { - "Name": "InternalMapping", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExternalMapping", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "InternalPortRange", + "Name": "IkeEncryption", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "GCMAES256", + "GCMAES128", + "AES256", + "AES128" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -208467,14 +208851,17 @@ }, { "ParameterMetadata": { - "Name": "ExternalPortRange", + "Name": "IkeIntegrity", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "SHA384", + "SHA256" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -208483,13 +208870,20 @@ }, { "ParameterMetadata": { - "Name": "IpConfigurationId", + "Name": "DhGroup", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "DHGroup24", + "ECP384", + "ECP256", + "DHGroup14", + "DHGroup2" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -208498,13 +208892,22 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PfsGroup", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "PFS24", + "PFSMM", + "ECP384", + "ECP256", + "PFS14", + "PFS2", + "None" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -208538,41 +208941,235 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVpnClientIpsecPolicy", + "Name": "New-AzVpnClientIpsecPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnClientIpsecPolicyCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "SALifeTime", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 300, + "ValidateRangeMax": 172799, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SADataSize", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 1024, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpsecEncryption", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "GCMAES256", + "GCMAES128", + "AES256", + "AES128" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IpsecIntegrity", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "GCMAES256", + "GCMAES128", + "SHA256" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IkeEncryption", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "GCMAES256", + "GCMAES128", + "AES256", + "AES128" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IkeIntegrity", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "SHA384", + "SHA256" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DhGroup", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "DHGroup24", + "ECP384", + "ECP256", + "DHGroup14", + "DHGroup2" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PfsGroup", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "PFS24", + "PFSMM", + "ECP384", + "ECP256", + "PFS14", + "PFS2", + "None" + ], + "ValidateNotNullOrEmpty": true }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnGatewayNatRuleName" - ], + "Name": "SALifeTime", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 300, + "ValidateRangeMax": 172799, + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Type", + "Name": "SADataSize", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Static", - "Dynamic" - ], + "ValidateRangeMin": 1024, + "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -208582,17 +209179,19 @@ }, { "ParameterMetadata": { - "Name": "Mode", + "Name": "IpsecEncryption", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "EgressSnat", - "IngressSnat" + "GCMAES256", + "GCMAES128", + "AES256", + "AES128" ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -208601,46 +209200,39 @@ }, { "ParameterMetadata": { - "Name": "InternalMapping", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExternalMapping", + "Name": "IpsecIntegrity", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "GCMAES256", + "GCMAES128", + "SHA256" + ], + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "InternalPortRange", + "Name": "IkeEncryption", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "GCMAES256", + "GCMAES128", + "AES256", + "AES128" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -208649,14 +209241,17 @@ }, { "ParameterMetadata": { - "Name": "ExternalPortRange", + "Name": "IkeIntegrity", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "SHA384", + "SHA256" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -208665,13 +209260,20 @@ }, { "ParameterMetadata": { - "Name": "IpConfigurationId", + "Name": "DhGroup", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "DHGroup24", + "ECP384", + "ECP256", + "DHGroup14", + "DHGroup2" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -208680,13 +209282,22 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PfsGroup", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "PFS24", + "PFSMM", + "ECP384", + "ECP256", + "PFS14", + "PFS2", + "None" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -208725,10 +209336,10 @@ }, { "VerbName": "New", - "NounName": "AzVpnServerConfiguration", - "Name": "New-AzVpnServerConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnServerConfigurationCommand", - "SupportsShouldProcess": true, + "NounName": "AzVpnClientRevokedCertificate", + "Name": "New-AzVpnClientRevokedCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVpnClientRevokedCertificateCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -208736,40 +209347,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", + "Thumbprint": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", "Id": "System.String" }, "Methods": [ @@ -208809,7 +209393,7 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -208818,11 +209402,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnServerConfigurationName" - ], + "Name": "Thumbprint", "Type": { "Namespace": "System", "Name": "System.String", @@ -208830,177 +209410,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VpnProtocol", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateSet": [ - "IkeV2", - "OpenVPN" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VpnAuthenticationType", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateSet": [ - "Certificate", - "Radius", - "AAD" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VpnClientRootCertificateFilesList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VpnClientRevokedCertificateFilesList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RadiusServerAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RadiusServerSecret", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RadiusServerList", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RadiusServerRootCertificateFilesList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RadiusClientRootCertificateFilesList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AadTenant", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AadAudience", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AadIssuer", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VpnClientIpsecPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ConfigurationPolicyGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -209026,28 +209435,9 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnServerConfigurationName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -209062,7 +209452,7 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "Thumbprint", "Type": { "Namespace": "System", "Name": "System.String", @@ -209077,115 +209467,22 @@ }, { "ParameterMetadata": { - "Name": "VpnProtocol", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateSet": [ - "IkeV2", - "OpenVPN" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnAuthenticationType", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateSet": [ - "Certificate", - "Radius", - "AAD" + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnClientRootCertificateFilesList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnClientRevokedCertificateFilesList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RadiusServerAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RadiusServerSecret", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RadiusServerList", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -209193,57 +209490,115 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVpnClientRootCertificate", + "Name": "New-AzVpnClientRootCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureVpnClientRootCertificateCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicCertData": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "RadiusServerRootCertificateFilesList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RadiusClientRootCertificateFilesList", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AadTenant", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PublicCertData", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "AadAudience", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -209251,14 +209606,14 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AadIssuer", + "Name": "PublicCertData", "Type": { "Namespace": "System", "Name": "System.String", @@ -209266,73 +209621,11 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnClientIpsecPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "ConfigurationPolicyGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -209365,29 +209658,39 @@ }, { "VerbName": "New", - "NounName": "AzVpnServerConfigurationPolicyGroup", - "Name": "New-AzVpnServerConfigurationPolicyGroup", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnServerConfigurationPolicyGroupCommand", + "NounName": "AzVpnConnection", + "Name": "New-AzVpnConnection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnConnectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByVpnServerConfigurationName", + "DefaultParameterSetName": "ByVpnGatewayNameByVpnSiteObject", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "IsDefault": "System.Boolean", - "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PolicyMembers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember]", - "Priority": "System.Int32", + "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "UsePolicyBasedTrafficSelectors": "System.Boolean", + "UseLocalAzureIpAddress": "System.Boolean", + "EnableBgp": "System.Boolean", + "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "TrafficSelectorPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", + "VpnLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]", + "ConnectionBandwidth": "System.Int32", + "EgressBytesTransferred": "System.Nullable`1[System.Int64]", + "IngressBytesTransferred": "System.Nullable`1[System.Int64]", + "Etag": "System.String", + "ConnectionStatus": "System.String", "ProvisioningState": "System.String", - "PolicyMembersText": "System.String", - "P2SConnectionConfigurationsText": "System.String", + "VpnConnectionProtocolType": "System.String", + "SharedKey": "System.String", + "RoutingConfigurationText": "System.String", "Name": "System.String", - "Etag": "System.String", "Id": "System.String" }, "Methods": [ @@ -209436,10 +209739,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ServerConfigurationName", + "Name": "ParentResourceName", "AliasList": [ - "ParentVpnServerConfigurationName", - "VpnServerConfigurationName" + "ParentVpnGatewayName", + "VpnGatewayName" ], "Type": { "Namespace": "System", @@ -209449,10 +209752,43 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "ParentObject", "AliasList": [ - "ResourceName", - "VpnServerConfigurationPolicyGroupName" + "ParentVpnGateway", + "VpnGateway" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ParentResourceId", + "AliasList": [ + "ParentVpnGatewayId", + "VpnGatewayId" ], "Type": { "Namespace": "System", @@ -209462,58 +209798,49 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ServerConfigurationObject", + "Name": "Name", "AliasList": [ - "ParentVpnServerConfiguration", - "VpnServerConfiguration" + "ResourceName", + "VpnConnectionName" ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnSite", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", + "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", "Tag": "System.Collections.Hashtable", + "IsSecuritySite": "System.Nullable`1[System.Boolean]", + "IpAddress": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", - "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": true }, { - "Name": "ServerConfigurationResourceId", - "AliasList": [ - "ParentVpnServerConfigurationId", - "VpnServerConfigurationId" - ], + "Name": "VpnSiteId", "Type": { "Namespace": "System", "Name": "System.String", @@ -209522,16 +209849,57 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Priority", + "Name": "SharedKey", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ConnectionBandwidthInMbps", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultPolicyGroup", + "Name": "IpSecPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VpnConnectionProtocolType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableBgp", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -209540,12 +209908,67 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PolicyMember", + "Name": "UseLocalAzureIpAddress", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UsePolicyBasedTrafficSelectors", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VpnSiteLinkConnection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableInternetSecurity", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RoutingConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TrafficSelectorPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false }, @@ -209581,7 +210004,7 @@ ], "ParameterSets": [ { - "Name": "ByVpnServerConfigurationName", + "Name": "ByVpnGatewayNameByVpnSiteObject", "Parameters": [ { "ParameterMetadata": { @@ -209600,10 +210023,10 @@ }, { "ParameterMetadata": { - "Name": "ServerConfigurationName", + "Name": "ParentResourceName", "AliasList": [ - "ParentVpnServerConfigurationName", - "VpnServerConfigurationName" + "ParentVpnGatewayName", + "VpnGatewayName" ], "Type": { "Namespace": "System", @@ -209614,7 +210037,42 @@ }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnSite", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", + "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", + "Tag": "System.Collections.Hashtable", + "IsSecuritySite": "System.Nullable`1[System.Boolean]", + "IpAddress": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -209622,7 +210080,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VpnServerConfigurationPolicyGroupName" + "VpnConnectionName" ], "Type": { "Namespace": "System", @@ -209638,26 +210096,51 @@ }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "SharedKey", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ConnectionBandwidthInMbps", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultPolicyGroup", + "Name": "IpSecPolicy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -209668,23 +210151,26 @@ }, { "ParameterMetadata": { - "Name": "PolicyMember", + "Name": "VpnConnectionProtocolType", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "EnableBgp", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -209699,22 +210185,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "UseLocalAzureIpAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -209722,83 +210197,41 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVpnServerConfigurationObject", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ServerConfigurationObject", - "AliasList": [ - "ParentVpnServerConfiguration", - "VpnServerConfiguration" - ], + "Name": "UsePolicyBasedTrafficSelectors", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "VpnProtocols": "System.Collections.Generic.List`1[System.String]", - "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "TagsTable": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ConfigurationPolicyGroupsText": "System.String", - "P2SVpnGatewaysText": "System.String", - "VpnClientRevokedCertificatesText": "System.String", - "VpnClientIpsecPoliciesText": "System.String", - "RadiusClientRootCertificatesText": "System.String", - "RadiusServerRootCertificatesText": "System.String", - "RadiusServersText": "System.String", - "Etag": "System.String", - "VpnClientRootCertificatesText": "System.String", - "ProvisioningState": "System.String", - "RadiusServerSecret": "System.String", - "RadiusServerAddress": "System.String", - "AadAuthenticationParametersText": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "VpnSiteLinkConnection", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultPolicyGroup", + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -209813,12 +210246,36 @@ }, { "ParameterMetadata": { - "Name": "PolicyMember", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TrafficSelectorPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false }, @@ -209871,15 +210328,11 @@ ] }, { - "Name": "ByVpnServerConfigurationResourceId", + "Name": "ByVpnGatewayNameByVpnSiteResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "ServerConfigurationResourceId", - "AliasList": [ - "ParentVpnServerConfigurationId", - "VpnServerConfigurationId" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -209890,153 +210343,83 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "ParentResourceName", + "AliasList": [ + "ParentVpnGatewayName", + "VpnGatewayName" + ], "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultPolicyGroup", + "Name": "VpnSiteId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PolicyMember", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "Name", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "ResourceName", + "VpnConnectionName" ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DefaultPolicyGroup", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PolicyMember", + "Name": "SharedKey", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ConnectionBandwidthInMbps", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -210047,21 +210430,20 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "IpSecPolicy", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -210070,370 +210452,50 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "New", - "NounName": "AzVpnSite", - "Name": "New-AzVpnSite", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnSiteCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByVirtualWanNameByVpnSiteIpAddress", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", - "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", - "Tag": "System.Collections.Hashtable", - "IsSecuritySite": "System.Nullable`1[System.Boolean]", - "IpAddress": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnSiteName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VirtualWanResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualWanName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualWan", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VirtualWanId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AddressSpace", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DeviceModel", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DeviceVendor", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IsSecuritySite", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LinkSpeedInMbps", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BgpAsn", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BgpPeeringAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BgpPeeringWeight", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "VpnSiteLink", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "O365Policy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VpnConnectionProtocolType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnSiteName" + "ValidateSet": [ + "IKEv1", + "IKEv2" ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "EnableBgp", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AddressSpace", + "Name": "UseLocalAzureIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -210442,11 +210504,11 @@ }, { "ParameterMetadata": { - "Name": "DeviceModel", + "Name": "UsePolicyBasedTrafficSelectors", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -210457,11 +210519,12 @@ }, { "ParameterMetadata": { - "Name": "DeviceVendor", + "Name": "VpnSiteLinkConnection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" }, "ValidateNotNullOrEmpty": false }, @@ -210472,7 +210535,7 @@ }, { "ParameterMetadata": { - "Name": "IsSecuritySite", + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -210487,16 +210550,22 @@ }, { "ParameterMetadata": { - "Name": "O365Policy", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -210505,18 +210574,19 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "TrafficSelectorPolicy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -210562,32 +210632,76 @@ ] }, { - "Name": "ByVirtualWanNameByVpnSiteIpAddress", + "Name": "ByVpnGatewayObjectByVpnSiteObject", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualWanResourceGroupName", + "Name": "ParentObject", + "AliasList": [ + "ParentVpnGateway", + "VpnGateway" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VirtualWanName", + "Name": "VpnSite", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", + "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", + "Tag": "System.Collections.Hashtable", + "IsSecuritySite": "System.Nullable`1[System.Boolean]", + "IpAddress": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -210596,13 +210710,17 @@ }, { "ParameterMetadata": { - "Name": "IpAddress", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -210611,13 +210729,13 @@ }, { "ParameterMetadata": { - "Name": "LinkSpeedInMbps", + "Name": "SharedKey", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -210626,7 +210744,7 @@ }, { "ParameterMetadata": { - "Name": "BgpAsn", + "Name": "ConnectionBandwidthInMbps", "Type": { "Namespace": "System", "Name": "System.UInt32", @@ -210641,26 +210759,21 @@ }, { "ParameterMetadata": { - "Name": "BgpPeeringAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BgpPeeringWeight", + "Name": "IpSecPolicy", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -210671,63 +210784,47 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VpnConnectionProtocolType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnSiteName" + "ValidateSet": [ + "IKEv1", + "IKEv2" ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "EnableBgp", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AddressSpace", + "Name": "UseLocalAzureIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -210736,11 +210833,11 @@ }, { "ParameterMetadata": { - "Name": "DeviceModel", + "Name": "UsePolicyBasedTrafficSelectors", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -210751,11 +210848,12 @@ }, { "ParameterMetadata": { - "Name": "DeviceVendor", + "Name": "VpnSiteLinkConnection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" }, "ValidateNotNullOrEmpty": false }, @@ -210766,7 +210864,7 @@ }, { "ParameterMetadata": { - "Name": "IsSecuritySite", + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -210781,16 +210879,22 @@ }, { "ParameterMetadata": { - "Name": "O365Policy", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -210799,18 +210903,19 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "TrafficSelectorPolicy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -210856,17 +210961,56 @@ ] }, { - "Name": "ByVirtualWanNameByVpnSiteLinkObject", + "Name": "ByVpnGatewayObjectByVpnSiteResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualWanResourceGroupName", + "Name": "ParentObject", + "AliasList": [ + "ParentVpnGateway", + "VpnGateway" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnSiteId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -210875,13 +211019,17 @@ }, { "ParameterMetadata": { - "Name": "VirtualWanName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -210890,79 +211038,87 @@ }, { "ParameterMetadata": { - "Name": "VpnSiteLink", + "Name": "SharedKey", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ConnectionBandwidthInMbps", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnSiteName" - ], + "Name": "IpSecPolicy", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "VpnConnectionProtocolType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AddressSpace", + "Name": "EnableBgp", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -210971,11 +211127,11 @@ }, { "ParameterMetadata": { - "Name": "DeviceModel", + "Name": "UseLocalAzureIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -210986,11 +211142,11 @@ }, { "ParameterMetadata": { - "Name": "DeviceVendor", + "Name": "UsePolicyBasedTrafficSelectors", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -211001,7 +211157,23 @@ }, { "ParameterMetadata": { - "Name": "IsSecuritySite", + "Name": "VpnSiteLinkConnection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -211016,16 +211188,22 @@ }, { "ParameterMetadata": { - "Name": "O365Policy", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -211034,18 +211212,19 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "TrafficSelectorPolicy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -211091,32 +211270,56 @@ ] }, { - "Name": "ByVirtualWanObjectByVpnSiteIpAddress", + "Name": "ByVpnGatewayResourceIdByVpnSiteObject", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualWan", + "Name": "ParentResourceId", + "AliasList": [ + "ParentVpnGatewayId", + "VpnGatewayId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VpnSite", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", + "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", "Tag": "System.Collections.Hashtable", + "IsSecuritySite": "System.Nullable`1[System.Boolean]", + "IpAddress": "System.String", "ProvisioningState": "System.String", - "VirtualWANType": "System.String", + "Etag": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", - "Etag": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -211125,13 +211328,17 @@ }, { "ParameterMetadata": { - "Name": "IpAddress", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -211140,13 +211347,13 @@ }, { "ParameterMetadata": { - "Name": "LinkSpeedInMbps", + "Name": "SharedKey", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -211155,7 +211362,7 @@ }, { "ParameterMetadata": { - "Name": "BgpAsn", + "Name": "ConnectionBandwidthInMbps", "Type": { "Namespace": "System", "Name": "System.UInt32", @@ -211170,11 +211377,21 @@ }, { "ParameterMetadata": { - "Name": "BgpPeeringAddress", + "Name": "IpSecPolicy", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -211185,12 +211402,16 @@ }, { "ParameterMetadata": { - "Name": "BgpPeeringWeight", + "Name": "VpnConnectionProtocolType", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -211200,63 +211421,28 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "EnableBgp", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnSiteName" - ], + "Name": "UseLocalAzureIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AddressSpace", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -211265,11 +211451,11 @@ }, { "ParameterMetadata": { - "Name": "DeviceModel", + "Name": "UsePolicyBasedTrafficSelectors", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -211280,11 +211466,12 @@ }, { "ParameterMetadata": { - "Name": "DeviceVendor", + "Name": "VpnSiteLinkConnection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" }, "ValidateNotNullOrEmpty": false }, @@ -211295,7 +211482,7 @@ }, { "ParameterMetadata": { - "Name": "IsSecuritySite", + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -211310,16 +211497,22 @@ }, { "ParameterMetadata": { - "Name": "O365Policy", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -211328,18 +211521,19 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "TrafficSelectorPolicy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -211385,57 +211579,30 @@ ] }, { - "Name": "ByVirtualWanObjectByVpnSiteLinkObject", + "Name": "ByVpnGatewayResourceIdByVpnSiteResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualWan", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowVnetToVnetTraffic": "System.Boolean", - "AllowBranchToBranchTraffic": "System.Boolean", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "VirtualWANType": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VpnSiteLink", + "Name": "ParentResourceId", + "AliasList": [ + "ParentVpnGatewayId", + "VpnGatewayId" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "VpnSiteId", "Type": { "Namespace": "System", "Name": "System.String", @@ -211453,7 +211620,7 @@ "Name": "Name", "AliasList": [ "ResourceName", - "VpnSiteName" + "VpnConnectionName" ], "Type": { "Namespace": "System", @@ -211469,29 +211636,28 @@ }, { "ParameterMetadata": { - "Name": "Location", + "Name": "SharedKey", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AddressSpace", + "Name": "ConnectionBandwidthInMbps", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -211500,11 +211666,21 @@ }, { "ParameterMetadata": { - "Name": "DeviceModel", + "Name": "IpSecPolicy", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -211515,12 +211691,16 @@ }, { "ParameterMetadata": { - "Name": "DeviceVendor", + "Name": "VpnConnectionProtocolType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -211530,7 +211710,7 @@ }, { "ParameterMetadata": { - "Name": "IsSecuritySite", + "Name": "EnableBgp", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -211545,40 +211725,7 @@ }, { "ParameterMetadata": { - "Name": "O365Policy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", + "Name": "UseLocalAzureIpAddress", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -211593,197 +211740,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByVirtualWanResourceIdByVpnSiteIpAddress", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "VirtualWanId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "LinkSpeedInMbps", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BgpAsn", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BgpPeeringAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BgpPeeringWeight", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnSiteName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AddressSpace", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DeviceModel", + "Name": "UsePolicyBasedTrafficSelectors", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -211794,11 +211755,12 @@ }, { "ParameterMetadata": { - "Name": "DeviceVendor", + "Name": "VpnSiteLinkConnection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" }, "ValidateNotNullOrEmpty": false }, @@ -211809,7 +211771,7 @@ }, { "ParameterMetadata": { - "Name": "IsSecuritySite", + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -211824,16 +211786,22 @@ }, { "ParameterMetadata": { - "Name": "O365Policy", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -211842,18 +211810,19 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "TrafficSelectorPolicy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -211899,17 +211868,21 @@ ] }, { - "Name": "ByVirtualWanResourceIdByVpnSiteLinkObject", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "VirtualWanId", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnConnectionName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -211918,79 +211891,87 @@ }, { "ParameterMetadata": { - "Name": "VpnSiteLink", + "Name": "SharedKey", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ConnectionBandwidthInMbps", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "VpnSiteName" - ], + "Name": "IpSecPolicy", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Location", + "Name": "VpnConnectionProtocolType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AddressSpace", + "Name": "EnableBgp", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -211999,11 +211980,11 @@ }, { "ParameterMetadata": { - "Name": "DeviceModel", + "Name": "UseLocalAzureIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -212014,11 +211995,11 @@ }, { "ParameterMetadata": { - "Name": "DeviceVendor", + "Name": "UsePolicyBasedTrafficSelectors", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -212029,7 +212010,23 @@ }, { "ParameterMetadata": { - "Name": "IsSecuritySite", + "Name": "VpnSiteLinkConnection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -212044,16 +212041,22 @@ }, { "ParameterMetadata": { - "Name": "O365Policy", + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -212062,18 +212065,19 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "TrafficSelectorPolicy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -212122,28 +212126,37 @@ }, { "VerbName": "New", - "NounName": "AzVpnSiteLink", - "Name": "New-AzVpnSiteLink", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand", - "SupportsShouldProcess": false, + "NounName": "AzVpnGateway", + "Name": "New-AzVpnGateway", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnGatewayCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByVirtualHubName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", - "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", - "IpAddress": "System.String", - "Fqdn": "System.String", - "ProvisioningState": "System.String", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", + "ProvisioningState": "System.String", + "TagsTable": "System.String", "Name": "System.String", - "Etag": "System.String", "Id": "System.String" }, "Methods": [ @@ -212183,7 +212196,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -212192,7 +212205,11 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "IPAddress", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -212201,16 +212218,67 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Fqdn", + "Name": "VpnGatewayScaleUnit", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHub", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualHubId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "LinkProviderName", + "Name": "VirtualHubName", "Type": { "Namespace": "System", "Name": "System.String", @@ -212219,16 +212287,54 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "LinkSpeedInMbps", + "Name": "VpnConnection", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" }, "ValidateNotNullOrEmpty": false }, { - "Name": "BGPAsn", + "Name": "EnableRoutingPreferenceInternetFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableBgpRouteTranslationForNat", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VpnGatewayNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Asn", "Type": { "Namespace": "System", "Name": "System.UInt32", @@ -212237,11 +212343,11 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "BGPPeeringAddress", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -212272,7 +212378,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -212287,22 +212393,26 @@ }, { "ParameterMetadata": { - "Name": "LinkProviderName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LinkSpeedInMbps", + "Name": "VpnGatewayScaleUnit", "Type": { "Namespace": "System", "Name": "System.UInt32", @@ -212310,6 +212420,22 @@ }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnConnection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -212317,7 +212443,68 @@ }, { "ParameterMetadata": { - "Name": "BGPAsn", + "Name": "EnableRoutingPreferenceInternetFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableBgpRouteTranslationForNat", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnGatewayNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Asn", "Type": { "Namespace": "System", "Name": "System.UInt32", @@ -212332,11 +212519,11 @@ }, { "ParameterMetadata": { - "Name": "BGPPeeringAddress", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -212374,11 +212561,59 @@ ] }, { - "Name": "ByVpnSiteLinkIpAddress", + "Name": "ByVirtualHubObject", "Parameters": [ { "ParameterMetadata": { - "Name": "IPAddress", + "Name": "VirtualHub", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "P2SVpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ExpressRouteGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SecurityPartnerProvider": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AzureFirewall": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", + "VirtualRouterAutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", + "BgpConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", + "VirtualNetworkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", + "RouteMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", + "RouteTables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", + "VirtualRouterIps": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "AllowBranchToBranchTraffic": "System.Management.Automation.SwitchParameter", + "AddressPrefix": "System.String", + "ProvisioningState": "System.String", + "Sku": "System.String", + "RoutingState": "System.String", + "PreferredRoutingGateway": "System.String", + "HubRoutingPreference": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "VirtualRouterAsn": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -212394,6 +212629,10 @@ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -212408,11 +212647,27 @@ }, { "ParameterMetadata": { - "Name": "LinkProviderName", + "Name": "VpnGatewayScaleUnit", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnConnection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" }, "ValidateNotNullOrEmpty": false }, @@ -212423,11 +212678,11 @@ }, { "ParameterMetadata": { - "Name": "LinkSpeedInMbps", + "Name": "EnableRoutingPreferenceInternetFlag", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -212438,7 +212693,53 @@ }, { "ParameterMetadata": { - "Name": "BGPAsn", + "Name": "EnableBgpRouteTranslationForNat", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnGatewayNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Asn", "Type": { "Namespace": "System", "Name": "System.UInt32", @@ -212453,11 +212754,11 @@ }, { "ParameterMetadata": { - "Name": "BGPPeeringAddress", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -212495,26 +212796,26 @@ ] }, { - "Name": "ByVpnSiteLinkFqdn", + "Name": "ByVirtualHubResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Fqdn", + "Name": "VirtualHubId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -212529,22 +212830,26 @@ }, { "ParameterMetadata": { - "Name": "LinkProviderName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LinkSpeedInMbps", + "Name": "VpnGatewayScaleUnit", "Type": { "Namespace": "System", "Name": "System.UInt32", @@ -212552,6 +212857,22 @@ }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnConnection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -212559,11 +212880,11 @@ }, { "ParameterMetadata": { - "Name": "BGPAsn", + "Name": "EnableRoutingPreferenceInternetFlag", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -212574,11 +212895,11 @@ }, { "ParameterMetadata": { - "Name": "BGPPeeringAddress", + "Name": "EnableBgpRouteTranslationForNat", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -212589,22 +212910,12 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "VpnGatewayNatRule", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" }, "ValidateNotNullOrEmpty": false }, @@ -212612,49 +212923,314 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Asn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualHubName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualHubName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnGatewayScaleUnit", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnConnection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableRoutingPreferenceInternetFlag", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableBgpRouteTranslationForNat", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnGatewayNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Asn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] } ] }, { "VerbName": "New", - "NounName": "AzVpnSiteLinkConnection", - "Name": "New-AzVpnSiteLinkConnection", - "ClassName": "Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand", - "SupportsShouldProcess": false, + "NounName": "AzVpnGatewayNatRule", + "Name": "New-AzVpnGatewayNatRule", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnGatewayNatRuleCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByVpnGatewayName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "UsePolicyBasedTrafficSelectors": "System.Boolean", - "EnableBgp": "System.Boolean", - "UseLocalAzureIpAddress": "System.Boolean", - "VpnGatewayCustomBgpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", - "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ConnectionBandwidth": "System.Int32", - "RoutingWeight": "System.Int32", - "EgressBytesTransferred": "System.Nullable`1[System.Int64]", - "IngressBytesTransferred": "System.Nullable`1[System.Int64]", - "Etag": "System.String", + "IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", + "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", + "VpnGatewayNatRulePropertiesType": "System.String", + "Mode": "System.String", + "IpConfigurationId": "System.String", "ProvisioningState": "System.String", - "ConnectionStatus": "System.String", - "VpnConnectionProtocolType": "System.String", - "VpnLinkConnectionMode": "System.String", - "IngressNatRulesText": "System.String", - "EgressNatRulesText": "System.String", - "VpnGatewayCustomBgpAddressesText": "System.String", + "InternalMappingsText": "System.String", + "ExternalMappingsText": "System.String", + "IngressVpnSiteLinkConnectionsText": "System.String", + "EgressVpnSiteLinkConnectionsText": "System.String", "Name": "System.String", - "SharedKey": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ @@ -212694,7 +213270,7 @@ ], "Parameters": [ { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -212703,150 +213279,158 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "VpnSiteLink", + "Name": "ParentResourceName", "AliasList": [ - "InputObject" + "ParentVpnGatewayName", + "VpnGatewayName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ParentObject", + "AliasList": [ + "ParentVpnGateway", + "VpnGateway" ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", - "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", - "IpAddress": "System.String", - "Fqdn": "System.String", - "ProvisioningState": "System.String", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", + "ProvisioningState": "System.String", + "TagsTable": "System.String", "Name": "System.String", - "Etag": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": true }, { - "Name": "SharedKey", + "Name": "ParentResourceId", + "AliasList": [ + "ParentVpnGatewayId", + "VpnGatewayId" + ], "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "ConnectionBandwidth", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayNatRuleName" + ], "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "RoutingWeight", + "Name": "Type", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpSecPolicy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" - } + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Static", + "Dynamic" + ], "ValidateNotNullOrEmpty": false }, { - "Name": "VpnConnectionProtocolType", + "Name": "Mode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "IKEv1", - "IKEv2" + "EgressSnat", + "IngressSnat" ], "ValidateNotNullOrEmpty": false }, { - "Name": "EnableBgp", + "Name": "InternalMapping", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UseLocalAzureIpAddress", + "Name": "ExternalMapping", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "UsePolicyBasedTrafficSelectors", + "Name": "InternalPortRange", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "IngressNatRule", + "Name": "ExternalPortRange", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EgressNatRule", + "Name": "IpConfigurationId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "VpnGatewayCustomBgpAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VpnLinkConnectionMode", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -212873,11 +213457,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByVpnGatewayName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -212892,43 +213476,56 @@ }, { "ParameterMetadata": { - "Name": "VpnSiteLink", + "Name": "ParentResourceName", "AliasList": [ - "InputObject" + "ParentVpnGatewayName", + "VpnGatewayName" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", - "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", - "IpAddress": "System.String", - "Fqdn": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SharedKey", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayNatRuleName" + ], "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Type", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Static", + "Dynamic" + ], + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -212936,12 +213533,16 @@ }, { "ParameterMetadata": { - "Name": "ConnectionBandwidth", + "Name": "Mode", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "EgressSnat", + "IngressSnat" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -212951,11 +213552,44 @@ }, { "ParameterMetadata": { - "Name": "RoutingWeight", + "Name": "InternalMapping", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExternalMapping", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InternalPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -212966,21 +213600,12 @@ }, { "ParameterMetadata": { - "Name": "IpSecPolicy", + "Name": "ExternalPortRange", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SALifeTimeSeconds": "System.Int32", - "SADataSizeKilobytes": "System.Int32", - "IpsecEncryption": "System.String", - "IpsecIntegrity": "System.String", - "IkeEncryption": "System.String", - "IkeIntegrity": "System.String", - "DhGroup": "System.String", - "PfsGroup": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -212991,16 +213616,12 @@ }, { "ParameterMetadata": { - "Name": "VpnConnectionProtocolType", + "Name": "IpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IKEv1", - "IKEv2" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -213010,7 +213631,7 @@ }, { "ParameterMetadata": { - "Name": "EnableBgp", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -213025,11 +213646,22 @@ }, { "ParameterMetadata": { - "Name": "UseLocalAzureIpAddress", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -213037,15 +213669,82 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVpnGatewayObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ParentObject", + "AliasList": [ + "ParentVpnGateway", + "VpnGateway" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Connections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", + "NatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", + "Tag": "System.Collections.Hashtable", + "VpnGatewayScaleUnit": "System.Int32", + "EnableBgpRouteTranslationForNat": "System.Nullable`1[System.Boolean]", + "IsRoutingPreferenceInternet": "System.Nullable`1[System.Boolean]", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayNatRuleName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UsePolicyBasedTrafficSelectors", + "Name": "Type", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Static", + "Dynamic" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -213055,13 +213754,16 @@ }, { "ParameterMetadata": { - "Name": "IngressNatRule", + "Name": "Mode", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "EgressSnat", + "IngressSnat" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -213071,12 +213773,44 @@ }, { "ParameterMetadata": { - "Name": "EgressNatRule", + "Name": "InternalMapping", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExternalMapping", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InternalPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -213087,23 +213821,23 @@ }, { "ParameterMetadata": { - "Name": "VpnGatewayCustomBgpAddress", + "Name": "ExternalPortRange", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VpnLinkConnectionMode", + "Name": "IpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -213116,6 +213850,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -213143,100 +213892,16 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGateway", - "Name": "Remove-AzApplicationGateway", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByVpnGatewayResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ParentResourceId", "AliasList": [ - "ResourceName" + "ParentVpnGatewayId", + "VpnGatewayId" ], "Type": { "Namespace": "System", @@ -213252,7 +213917,11 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayNatRuleName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -213263,26 +213932,128 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Type", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Static", + "Dynamic" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "Mode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "EgressSnat", + "IngressSnat" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InternalMapping", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExternalMapping", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InternalPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExternalPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IpConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -213322,248 +214093,17 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayAuthenticationCertificate", - "Name": "Remove-AzApplicationGatewayAuthenticationCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayAuthenticationCertificateCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ApplicationGateway", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + }, { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnGatewayNatRuleName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -213578,445 +214118,124 @@ }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "Type", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Static", + "Dynamic" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Mode", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "EgressSnat", + "IngressSnat" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayAutoscaleConfiguration", - "Name": "Remove-AzApplicationGatewayAutoscaleConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayAutoscaleConfigurationCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "InternalMapping", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExternalMapping", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "InternalPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ApplicationGateway", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "ExternalPortRange", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "IpConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -214060,10 +214279,10 @@ ] }, { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayBackendAddressPool", - "Name": "Remove-AzApplicationGatewayBackendAddressPool", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendAddressPoolCommand", + "VerbName": "New", + "NounName": "AzVpnServerConfiguration", + "Name": "New-AzVpnServerConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnServerConfigurationCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -214072,28 +214291,43 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", "Id": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeBackendAddresses", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeBackendIpConfigurations", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -214129,8 +214363,21 @@ } ], "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnServerConfigurationName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -214139,82 +214386,173 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ApplicationGateway", + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnProtocol", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "IkeV2", + "OpenVPN" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnAuthenticationType", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "Certificate", + "Radius", + "AAD" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnClientRootCertificateFilesList", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VpnClientRevokedCertificateFilesList", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RadiusServerAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RadiusServerSecret", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RadiusServerList", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RadiusServerRootCertificateFilesList", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RadiusClientRootCertificateFilesList", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AadTenant", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AadAudience", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AadIssuer", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnClientIpsecPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ConfigurationPolicyGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -214245,7 +214583,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -214260,108 +214598,87 @@ }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnServerConfigurationName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnProtocol", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "IkeV2", + "OpenVPN" ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnAuthenticationType", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "Certificate", + "Radius", + "AAD" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnClientRootCertificateFilesList", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -214369,250 +214686,104 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayBackendHttpSetting", - "Name": "Remove-AzApplicationGatewayBackendHttpSetting", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "VpnClientRevokedCertificateFilesList", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RadiusServerAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RadiusServerSecret", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ApplicationGateway", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "Name", + "Name": "RadiusServerList", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RadiusServerRootCertificateFilesList", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RadiusClientRootCertificateFilesList", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AadTenant", "Type": { "Namespace": "System", "Name": "System.String", @@ -214620,95 +214791,101 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "AadAudience", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AadIssuer", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnClientIpsecPolicy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ConfigurationPolicyGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -214739,95 +214916,33 @@ } ] } - ], - "AliasList": [ - "Remove-AzApplicationGatewayBackendHttpSettings" ] }, { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayBackendSetting", - "Name": "Remove-AzApplicationGatewayBackendSetting", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendSettingsCommand", - "SupportsShouldProcess": false, + "VerbName": "New", + "NounName": "AzVpnServerConfigurationPolicyGroup", + "Name": "New-AzVpnServerConfigurationPolicyGroup", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnServerConfigurationPolicyGroupCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByVpnServerConfigurationName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "IsDefault": "System.Boolean", + "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PolicyMembers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember]", + "Priority": "System.Int32", + "ProvisioningState": "System.String", + "PolicyMembersText": "System.String", + "P2SConnectionConfigurationsText": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", "Id": "System.String" }, "Methods": [ @@ -214866,8 +214981,34 @@ } ], "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServerConfigurationName", + "AliasList": [ + "ParentVpnServerConfigurationName", + "VpnServerConfigurationName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnServerConfigurationPolicyGroupName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -214876,83 +215017,100 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ApplicationGateway", + "Name": "ServerConfigurationObject", + "AliasList": [ + "ParentVpnServerConfiguration", + "VpnServerConfiguration" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", "TagsTable": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", "Id": "System.String" } }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ServerConfigurationResourceId", + "AliasList": [ + "ParentVpnServerConfigurationId", + "VpnServerConfigurationId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultPolicyGroup", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PolicyMember", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, { @@ -214978,11 +215136,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByVpnServerConfigurationName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -214997,84 +215155,17 @@ }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "ServerConfigurationName", + "AliasList": [ + "ParentVpnServerConfigurationName", + "VpnServerConfigurationName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -215083,185 +215174,45 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "Name", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "ResourceName", + "VpnServerConfigurationPolicyGroupName" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayClientAuthConfiguration", - "Name": "Remove-AzApplicationGatewayClientAuthConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayClientAuthConfigurationCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "SslProfile", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "SslProfile", + "Name": "Priority", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DefaultPolicyGroup", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -215269,487 +215220,36 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayConnectionDraining", - "Name": "Remove-AzApplicationGatewayConnectionDraining", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", - "Name": "System.String", - "CookieBasedAffinity": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "ShouldSerializePort", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeRequestTimeout", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeAuthenticationCertificates", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "BackendHttpSettings", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", - "Name": "System.String", - "CookieBasedAffinity": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ { "ParameterMetadata": { - "Name": "BackendHttpSettings", + "Name": "PolicyMember", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", - "Name": "System.String", - "CookieBasedAffinity": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayCustomError", - "Name": "Remove-AzApplicationGatewayCustomError", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "StatusCode": "System.String", - "CustomErrorPageUrl": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "StatusCode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ApplicationGateway", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "StatusCode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -215779,131 +215279,72 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayFirewallCustomRule", - "Name": "Remove-AzApplicationGatewayFirewallCustomRule", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFirewallCustomRuleCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PolicyName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByVpnServerConfigurationObject", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ServerConfigurationObject", "AliasList": [ - "ResourceName" + "ParentVpnServerConfiguration", + "VpnServerConfiguration" ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", + "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "RadiusClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", + "VpnClientRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "RadiusServerRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", + "VpnClientIpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "RadiusServers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", + "P2SVpnGateways": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConfigurationPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", + "VpnProtocols": "System.Collections.Generic.List`1[System.String]", + "VpnAuthenticationTypes": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "TagsTable": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ConfigurationPolicyGroupsText": "System.String", + "P2SVpnGatewaysText": "System.String", + "VpnClientRevokedCertificatesText": "System.String", + "VpnClientIpsecPoliciesText": "System.String", + "RadiusClientRootCertificatesText": "System.String", + "RadiusServerRootCertificatesText": "System.String", + "RadiusServersText": "System.String", + "Etag": "System.String", + "VpnClientRootCertificatesText": "System.String", + "ProvisioningState": "System.String", + "RadiusServerSecret": "System.String", + "RadiusServerAddress": "System.String", + "AadAuthenticationParametersText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -215912,26 +215353,27 @@ }, { "ParameterMetadata": { - "Name": "PolicyName", + "Name": "DefaultPolicyGroup", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "PolicyMember", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" }, "ValidateNotNullOrEmpty": false }, @@ -215942,7 +215384,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -215982,143 +215424,16 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayFirewallPolicy", - "Name": "Remove-AzApplicationGatewayFirewallPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFirewallPolicyCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByFactoryName", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", - "Tag": "System.Collections.Hashtable", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "CustomBlockResponseBody": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ByFactoryName", + "Name": "ByVpnServerConfigurationResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ServerConfigurationResourceId", "AliasList": [ - "ResourceName" + "ParentVpnServerConfigurationId", + "VpnServerConfigurationId" ], "Type": { "Namespace": "System", @@ -216134,13 +215449,13 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -216149,7 +215464,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "DefaultPolicyGroup", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -216164,18 +215479,19 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "PolicyMember", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -216221,42 +215537,26 @@ ] }, { - "Name": "ByFactoryObject", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Priority", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", - "Tag": "System.Collections.Hashtable", - "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", - "CustomBlockResponseBody": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", + "Name": "DefaultPolicyGroup", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -216271,18 +215571,19 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "PolicyMember", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -216326,261 +215627,43 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVpnSite", + "Name": "New-AzVpnSite", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzureRmVpnSiteCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByVirtualWanNameByVpnSiteIpAddress", + "OutputTypes": [ { - "Name": "ByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayFrontendIPConfig", - "Name": "Remove-AzApplicationGatewayFrontendIPConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DeviceProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", + "VpnSiteLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", + "Tag": "System.Collections.Hashtable", + "IsSecuritySite": "System.Nullable`1[System.Boolean]", + "IpAddress": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -216618,8 +215701,21 @@ } ], "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -216628,85 +215724,187 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ApplicationGateway", + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VirtualWanResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualWanName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VirtualWan", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", + "ProvisioningState": "System.String", + "VirtualWANType": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "RoutingRulesText": "System.String", "TagsTable": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, + { + "Name": "VirtualWanId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AddressSpace", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DeviceModel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DeviceVendor", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IsSecuritySite", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "LinkSpeedInMbps", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BgpAsn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BgpPeeringAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BgpPeeringWeight", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VpnSiteLink", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "O365Policy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -216732,9 +215930,28 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -216749,88 +215966,126 @@ }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AddressSpace", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceModel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceVendor", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IsSecuritySite", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "O365Policy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -216860,254 +216115,19 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewayFrontendPort", - "Name": "Remove-AzApplicationGatewayFrontendPort", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ApplicationGateway", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByVirtualWanNameByVpnSiteIpAddress", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "VirtualWanResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -217116,108 +216136,7873 @@ }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "VirtualWanName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "IpAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LinkSpeedInMbps", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BgpAsn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BgpPeeringAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BgpPeeringWeight", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AddressSpace", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceModel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceVendor", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IsSecuritySite", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "O365Policy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanNameByVpnSiteLinkObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualWanResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VirtualWanName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnSiteLink", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AddressSpace", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceModel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceVendor", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IsSecuritySite", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "O365Policy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanObjectByVpnSiteIpAddress", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualWan", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "VirtualWANType": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IpAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LinkSpeedInMbps", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BgpAsn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BgpPeeringAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BgpPeeringWeight", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AddressSpace", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceModel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceVendor", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IsSecuritySite", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "O365Policy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanObjectByVpnSiteLinkObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualWan", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowVnetToVnetTraffic": "System.Boolean", + "AllowBranchToBranchTraffic": "System.Boolean", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "VirtualWANType": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnSiteLink", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AddressSpace", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceModel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceVendor", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IsSecuritySite", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "O365Policy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanResourceIdByVpnSiteIpAddress", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualWanId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IpAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LinkSpeedInMbps", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BgpAsn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BgpPeeringAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BgpPeeringWeight", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AddressSpace", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceModel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceVendor", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IsSecuritySite", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "O365Policy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVirtualWanResourceIdByVpnSiteLinkObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "VirtualWanId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnSiteLink", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "VpnSiteName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AddressSpace", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceModel", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DeviceVendor", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IsSecuritySite", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "O365Policy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVpnSiteLink", + "Name": "New-AzVpnSiteLink", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", + "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", + "IpAddress": "System.String", + "Fqdn": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IPAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Fqdn", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "LinkProviderName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "LinkSpeedInMbps", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BGPAsn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BGPPeeringAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LinkProviderName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LinkSpeedInMbps", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BGPAsn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BGPPeeringAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVpnSiteLinkIpAddress", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "IPAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LinkProviderName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LinkSpeedInMbps", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BGPAsn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BGPPeeringAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByVpnSiteLinkFqdn", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Fqdn", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LinkProviderName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LinkSpeedInMbps", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BGPAsn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BGPPeeringAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "New", + "NounName": "AzVpnSiteLinkConnection", + "Name": "New-AzVpnSiteLinkConnection", + "ClassName": "Microsoft.Azure.Commands.Network.NewAzVpnSiteLinkConnectionCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "UsePolicyBasedTrafficSelectors": "System.Boolean", + "EnableBgp": "System.Boolean", + "UseLocalAzureIpAddress": "System.Boolean", + "VpnGatewayCustomBgpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", + "IpsecPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", + "IngressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "EgressNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ConnectionBandwidth": "System.Int32", + "RoutingWeight": "System.Int32", + "EgressBytesTransferred": "System.Nullable`1[System.Int64]", + "IngressBytesTransferred": "System.Nullable`1[System.Int64]", + "Etag": "System.String", + "ProvisioningState": "System.String", + "ConnectionStatus": "System.String", + "VpnConnectionProtocolType": "System.String", + "VpnLinkConnectionMode": "System.String", + "IngressNatRulesText": "System.String", + "EgressNatRulesText": "System.String", + "VpnGatewayCustomBgpAddressesText": "System.String", + "Name": "System.String", + "SharedKey": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnSiteLink", + "AliasList": [ + "InputObject" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", + "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", + "IpAddress": "System.String", + "Fqdn": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SharedKey", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ConnectionBandwidth", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RoutingWeight", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpSecPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VpnConnectionProtocolType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableBgp", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UseLocalAzureIpAddress", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UsePolicyBasedTrafficSelectors", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IngressNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EgressNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "VpnGatewayCustomBgpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "VpnLinkConnectionMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnSiteLink", + "AliasList": [ + "InputObject" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", + "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", + "IpAddress": "System.String", + "Fqdn": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharedKey", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ConnectionBandwidth", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RoutingWeight", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IpSecPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SALifeTimeSeconds": "System.Int32", + "SADataSizeKilobytes": "System.Int32", + "IpsecEncryption": "System.String", + "IpsecIntegrity": "System.String", + "IkeEncryption": "System.String", + "IkeIntegrity": "System.String", + "DhGroup": "System.String", + "PfsGroup": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnConnectionProtocolType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IKEv1", + "IKEv2" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableBgp", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UseLocalAzureIpAddress", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UsePolicyBasedTrafficSelectors", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IngressNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EgressNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "VpnGatewayCustomBgpAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "VpnLinkConnectionMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGateway", + "Name": "Remove-AzApplicationGateway", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayAuthenticationCertificate", + "Name": "Remove-AzApplicationGatewayAuthenticationCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayAuthenticationCertificateCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayAutoscaleConfiguration", + "Name": "Remove-AzApplicationGatewayAutoscaleConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayAutoscaleConfigurationCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayBackendAddressPool", + "Name": "Remove-AzApplicationGatewayBackendAddressPool", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendAddressPoolCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "ShouldSerializeBackendAddresses", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeBackendIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayBackendHttpSetting", + "Name": "Remove-AzApplicationGatewayBackendHttpSetting", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendHttpSettingsCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ], + "AliasList": [ + "Remove-AzApplicationGatewayBackendHttpSettings" + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayBackendSetting", + "Name": "Remove-AzApplicationGatewayBackendSetting", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayBackendSettingsCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayClientAuthConfiguration", + "Name": "Remove-AzApplicationGatewayClientAuthConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayClientAuthConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "SslProfile", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SslProfile", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayConnectionDraining", + "Name": "Remove-AzApplicationGatewayConnectionDraining", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayConnectionDrainingCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "ShouldSerializePort", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeRequestTimeout", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeAuthenticationCertificates", + "ReturnType": "System.Boolean" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "BackendHttpSettings", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "BackendHttpSettings", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayCustomError", + "Name": "Remove-AzApplicationGatewayCustomError", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayCustomErrorCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "StatusCode": "System.String", + "CustomErrorPageUrl": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "StatusCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "StatusCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayFirewallCustomRule", + "Name": "Remove-AzApplicationGatewayFirewallCustomRule", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFirewallCustomRuleCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayFirewallPolicy", + "Name": "Remove-AzApplicationGatewayFirewallPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFirewallPolicyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByFactoryName", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", + "Tag": "System.Collections.Hashtable", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "CustomBlockResponseBody": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByFactoryName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByFactoryObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", + "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", + "CustomRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", + "Tag": "System.Collections.Hashtable", + "CustomBlockResponseStatusCode": "System.Nullable`1[System.Int32]", + "CustomBlockResponseBody": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayFrontendIPConfig", + "Name": "Remove-AzApplicationGatewayFrontendIPConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendIPConfigCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayFrontendPort", + "Name": "Remove-AzApplicationGatewayFrontendPort", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayFrontendPortCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayHttpListener", + "Name": "Remove-AzApplicationGatewayHttpListener", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequireServerNameIndication": "System.Boolean", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Type": "System.String", + "Etag": "System.String", + "HostName": "System.String", + "Protocol": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "FirewallPolicyText": "System.String", + "Name": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayHttpListenerCustomError", + "Name": "Remove-AzApplicationGatewayHttpListenerCustomError", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "StatusCode": "System.String", + "CustomErrorPageUrl": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "StatusCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HttpListener", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequireServerNameIndication": "System.Boolean", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Type": "System.String", + "Etag": "System.String", + "HostName": "System.String", + "Protocol": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "FirewallPolicyText": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "StatusCode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpListener", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequireServerNameIndication": "System.Boolean", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Type": "System.String", + "Etag": "System.String", + "HostName": "System.String", + "Protocol": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "FirewallPolicyText": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayIdentity", + "Name": "Remove-AzApplicationGatewayIdentity", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIdentityCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayIPConfiguration", + "Name": "Remove-AzApplicationGatewayIPConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -217232,9 +224017,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayHttpListener", - "Name": "Remove-AzApplicationGatewayHttpListener", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCommand", + "NounName": "AzApplicationGatewayListener", + "Name": "Remove-AzApplicationGatewayListener", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayListenerCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -217243,28 +224028,444 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequireServerNameIndication": "System.Boolean", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "HostNames": "System.Collections.Generic.List`1[System.String]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", "Etag": "System.String", - "HostName": "System.String", - "Protocol": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayPrivateLinkConfiguration", + "Name": "Remove-AzApplicationGatewayPrivateLinkConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", "Id": "System.String" }, "Methods": [ @@ -217317,7 +224518,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -217438,7 +224639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -217550,9 +224751,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayHttpListenerCustomError", - "Name": "Remove-AzApplicationGatewayHttpListenerCustomError", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayHttpListenerCustomErrorCommand", + "NounName": "AzApplicationGatewayProbeConfig", + "Name": "Remove-AzApplicationGatewayProbeConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -217561,11 +224762,78 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "StatusCode": "System.String", - "CustomErrorPageUrl": "System.String" + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" }, "Methods": [ { @@ -217604,7 +224872,7 @@ ], "Parameters": [ { - "Name": "StatusCode", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -217613,31 +224881,447 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "HttpListener", + "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequireServerNameIndication": "System.Boolean", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "HostNames": "System.Collections.Generic.List`1[System.String]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationGatewayRedirectConfiguration", + "Name": "Remove-AzApplicationGatewayRedirectConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", "Etag": "System.String", - "HostName": "System.String", - "Protocol": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", "Id": "System.String" } }, @@ -217670,7 +225354,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "StatusCode", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -217685,31 +225369,80 @@ }, { "ParameterMetadata": { - "Name": "HttpListener", + "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequireServerNameIndication": "System.Boolean", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "HostNames": "System.Collections.Generic.List`1[System.String]", - "ProvisioningState": "System.String", - "Type": "System.String", - "Etag": "System.String", - "HostName": "System.String", - "Protocol": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", "Id": "System.String" } }, @@ -217752,10 +225485,10 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayIdentity", - "Name": "Remove-AzApplicationGatewayIdentity", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIdentityCommand", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewayRequestRoutingRule", + "Name": "Remove-AzApplicationGatewayRequestRoutingRule", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -217763,77 +225496,27 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "HttpListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "UrlPathMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Priority": "System.Nullable`1[System.Int32]", + "RuleType": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "RedirectConfigurationText": "System.String", + "RewriteRuleSetText": "System.String", + "UrlPathMapText": "System.String", + "Type": "System.String", + "BackendHttpSettingsText": "System.String", + "BackendAddressPoolText": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "HttpListenerText": "System.String", "Id": "System.String" }, "Methods": [ @@ -217872,12 +225555,21 @@ } ], "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -217977,13 +225669,28 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -218095,9 +225802,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayIPConfiguration", - "Name": "Remove-AzApplicationGatewayIPConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayIPConfigurationCommand", + "NounName": "AzApplicationGatewayRewriteRuleSet", + "Name": "Remove-AzApplicationGatewayRewriteRuleSet", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -218107,7 +225814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -218229,7 +225936,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -218350,7 +226057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -218462,9 +226169,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayListener", - "Name": "Remove-AzApplicationGatewayListener", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayListenerCommand", + "NounName": "AzApplicationGatewayRoutingRule", + "Name": "Remove-AzApplicationGatewayRoutingRule", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRoutingRuleCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -218474,7 +226181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -218596,7 +226303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -218717,7 +226424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -218829,9 +226536,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayPrivateLinkConfiguration", - "Name": "Remove-AzApplicationGatewayPrivateLinkConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayPrivateLinkConfigurationCommand", + "NounName": "AzApplicationGatewaySslCertificate", + "Name": "Remove-AzApplicationGatewaySslCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -218841,7 +226548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -218963,7 +226670,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -219084,7 +226791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -219196,10 +226903,10 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayProbeConfig", - "Name": "Remove-AzApplicationGatewayProbeConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayProbeConfigCommand", - "SupportsShouldProcess": false, + "NounName": "AzApplicationGatewaySslPolicy", + "Name": "Remove-AzApplicationGatewaySslPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslPolicyCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -219208,7 +226915,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -219316,21 +227023,12 @@ } ], "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -219405,6 +227103,15 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -219430,28 +227137,13 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -219531,6 +227223,21 @@ "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -219563,9 +227270,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayRedirectConfiguration", - "Name": "Remove-AzApplicationGatewayRedirectConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRedirectConfigurationCommand", + "NounName": "AzApplicationGatewaySslProfile", + "Name": "Remove-AzApplicationGatewaySslProfile", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfileCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -219575,7 +227282,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -219697,7 +227404,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -219818,7 +227525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -219930,9 +227637,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayRequestRoutingRule", - "Name": "Remove-AzApplicationGatewayRequestRoutingRule", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRequestRoutingRuleCommand", + "NounName": "AzApplicationGatewaySslProfilePolicy", + "Name": "Remove-AzApplicationGatewaySslProfilePolicy", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfilePolicyCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -219941,27 +227648,17 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "HttpListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "UrlPathMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Priority": "System.Nullable`1[System.Int32]", - "RuleType": "System.String", + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", "Name": "System.String", - "RedirectConfigurationText": "System.String", - "RewriteRuleSetText": "System.String", - "UrlPathMapText": "System.String", - "Type": "System.String", - "BackendHttpSettingsText": "System.String", - "BackendAddressPoolText": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "HttpListenerText": "System.String", "Id": "System.String" }, "Methods": [ @@ -220001,89 +227698,20 @@ ], "Parameters": [ { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ApplicationGateway", + "Name": "SslProfile", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", "Id": "System.String" } }, @@ -220116,95 +227744,20 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "SslProfile", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", "Id": "System.String" } }, @@ -220247,9 +227800,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayRewriteRuleSet", - "Name": "Remove-AzApplicationGatewayRewriteRuleSet", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRewriteRuleSetCommand", + "NounName": "AzApplicationGatewayTrustedClientCertificate", + "Name": "Remove-AzApplicationGatewayTrustedClientCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayTrustedClientCertificateCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -220259,7 +227812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -220381,7 +227934,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -220502,7 +228055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -220614,10 +228167,10 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayRoutingRule", - "Name": "Remove-AzApplicationGatewayRoutingRule", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayRoutingRuleCommand", - "SupportsShouldProcess": false, + "NounName": "AzApplicationGatewayTrustedRootCertificate", + "Name": "Remove-AzApplicationGatewayTrustedRootCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayTrustedRootCertificateCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -220626,7 +228179,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -220748,7 +228301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -220869,7 +228422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -220981,9 +228534,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewaySslCertificate", - "Name": "Remove-AzApplicationGatewaySslCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslCertificateCommand", + "NounName": "AzApplicationGatewayUrlPathMapConfig", + "Name": "Remove-AzApplicationGatewayUrlPathMapConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -220993,7 +228546,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -221115,7 +228668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -221236,7 +228789,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -221311,9 +228864,686 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzApplicationSecurityGroup", + "Name": "Remove-AzApplicationSecurityGroup", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzBastion", + "Name": "Remove-AzBastion", + "ClassName": "Microsoft.Azure.Commands.Network.Bastion.RemoveAzBastionCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "ByResourceGroupName", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "AliasList": [ + "Bastion", + "BastionObject" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", + "Tag": "System.Collections.Hashtable", + "EnableShareableLink": "System.Nullable`1[System.Boolean]", + "EnableIpConnect": "System.Nullable`1[System.Boolean]", + "EnableTunneling": "System.Nullable`1[System.Boolean]", + "EnableSessionRecording": "System.Nullable`1[System.Boolean]", + "EnableKerberos": "System.Nullable`1[System.Boolean]", + "DisableCopyPaste": "System.Nullable`1[System.Boolean]", + "ScaleUnit": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Etag": "System.String", + "IpConfigurationsText": "System.String", + "SkuText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "DnsName": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [ + "BastionId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByResourceGroupName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByInputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [ + "Bastion", + "BastionObject" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", + "Tag": "System.Collections.Hashtable", + "EnableShareableLink": "System.Nullable`1[System.Boolean]", + "EnableIpConnect": "System.Nullable`1[System.Boolean]", + "EnableTunneling": "System.Nullable`1[System.Boolean]", + "EnableSessionRecording": "System.Nullable`1[System.Boolean]", + "EnableKerberos": "System.Nullable`1[System.Boolean]", + "DisableCopyPaste": "System.Nullable`1[System.Boolean]", + "ScaleUnit": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Etag": "System.String", + "IpConfigurationsText": "System.String", + "SkuText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "DnsName": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [ + "BastionId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -221348,119 +229578,19 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewaySslPolicy", - "Name": "Remove-AzApplicationGatewaySslPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslPolicyCommand", + "NounName": "AzBastionShareableLink", + "Name": "Remove-AzBastionShareableLink", + "ClassName": "Microsoft.Azure.Commands.Network.Bastion.RemoveAzBastionShareableLinkCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByResourceGroupNameByName", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -221469,84 +229599,80 @@ ], "Parameters": [ { - "Name": "ApplicationGateway", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", + "EnableShareableLink": "System.Nullable`1[System.Boolean]", + "EnableIpConnect": "System.Nullable`1[System.Boolean]", + "EnableTunneling": "System.Nullable`1[System.Boolean]", + "EnableSessionRecording": "System.Nullable`1[System.Boolean]", + "EnableKerberos": "System.Nullable`1[System.Boolean]", + "DisableCopyPaste": "System.Nullable`1[System.Boolean]", + "ScaleUnit": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Etag": "System.String", + "IpConfigurationsText": "System.String", + "SkuText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "RoutingRulesText": "System.String", + "DnsName": "System.String", "TagsTable": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TargetVmId", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] + }, + "ValidateNotNullOrEmpty": true }, { "Name": "Force", @@ -221557,6 +229683,24 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -221580,88 +229724,54 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByResourceGroupNameByName", "Parameters": [ { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "BastionName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetVmId", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -221680,9 +229790,39 @@ }, "Mandatory": false, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -221710,248 +229850,13 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewaySslProfile", - "Name": "Remove-AzApplicationGatewaySslProfile", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfileCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ApplicationGateway", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -221966,90 +229871,200 @@ }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "TargetVmId", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByInputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", + "EnableShareableLink": "System.Nullable`1[System.Boolean]", + "EnableIpConnect": "System.Nullable`1[System.Boolean]", + "EnableTunneling": "System.Nullable`1[System.Boolean]", + "EnableSessionRecording": "System.Nullable`1[System.Boolean]", + "EnableKerberos": "System.Nullable`1[System.Boolean]", + "DisableCopyPaste": "System.Nullable`1[System.Boolean]", + "ScaleUnit": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Etag": "System.String", + "IpConfigurationsText": "System.String", + "SkuText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "RoutingRulesText": "System.String", + "DnsName": "System.String", "TagsTable": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TargetVmId", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -222077,138 +230092,69 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzApplicationGatewaySslProfilePolicy", - "Name": "Remove-AzApplicationGatewaySslProfilePolicy", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewaySslProfilePolicyCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "SslProfile", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "SslProfile", + "Name": "TargetVmId", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[System.String]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.String" + ] + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false @@ -222245,119 +230191,19 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayTrustedClientCertificate", - "Name": "Remove-AzApplicationGatewayTrustedClientCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayTrustedClientCertificateCommand", - "SupportsShouldProcess": false, + "NounName": "AzCustomIpPrefix", + "Name": "Remove-AzCustomIpPrefix", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureCustomIpPrefixCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "DeleteByNameParameterSet", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -222367,6 +230213,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -222375,85 +230224,87 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ApplicationGateway", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", + "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ChildCustomIpPrefixesText": "System.String", + "CustomIpPrefixParentText": "System.String", + "Cidr": "System.String", + "PrefixType": "System.String", "Etag": "System.String", + "AuthorizationMessage": "System.String", + "SignedMessage": "System.String", "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "CommissionedState": "System.String", + "Asn": "System.String", + "Geo": "System.String", + "PublicIpPrefixesText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -222477,11 +230328,29 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "DeleteByNameParameterSet", "Parameters": [ { "ParameterMetadata": { "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -222492,84 +230361,208 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteByInputObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", + "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ChildCustomIpPrefixesText": "System.String", + "CustomIpPrefixParentText": "System.String", + "Cidr": "System.String", + "PrefixType": "System.String", "Etag": "System.String", + "AuthorizationMessage": "System.String", + "SignedMessage": "System.String", "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "CommissionedState": "System.String", + "Asn": "System.String", + "Geo": "System.String", + "PublicIpPrefixesText": "System.String", "Id": "System.String" } }, @@ -222580,6 +230573,127 @@ "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -222612,9 +230726,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayTrustedRootCertificate", - "Name": "Remove-AzApplicationGatewayTrustedRootCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayTrustedRootCertificateCommand", + "NounName": "AzDdosProtectionPlan", + "Name": "Remove-AzDdosProtectionPlan", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -222622,109 +230736,9 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -222732,8 +230746,20 @@ } ], "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -222742,82 +230768,11 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ApplicationGateway", + "Name": "PassThru", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -222826,125 +230781,72 @@ "AliasList": [ "AzContext", "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ApplicationGateway", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -222979,9 +230881,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationGatewayUrlPathMapConfig", - "Name": "Remove-AzApplicationGatewayUrlPathMapConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureApplicationGatewayUrlPathMapConfigCommand", + "NounName": "AzDelegation", + "Name": "Remove-AzDelegation", + "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -222990,80 +230892,70 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeServiceEndpointPolicies", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeServiceEndpoints", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeResourceNavigationLinks", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializePrivateEndpoints", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeDelegations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeServiceAssociationLinks", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -223109,80 +231001,42 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ApplicationGateway", + "Name": "Subnet", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", "Id": "System.String" } }, @@ -223226,84 +231080,46 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "Subnet", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", "Etag": "System.String", "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", "Id": "System.String" } }, @@ -223346,9 +231162,9 @@ }, { "VerbName": "Remove", - "NounName": "AzApplicationSecurityGroup", - "Name": "Remove-AzApplicationSecurityGroup", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmApplicationSecurityGroup", + "NounName": "AzExpressRouteCircuit", + "Name": "Remove-AzExpressRouteCircuit", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -223367,7 +231183,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -223376,10 +231195,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -223397,7 +231213,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -223406,7 +231222,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -223441,7 +231257,10 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -223456,10 +231275,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -223489,7 +231305,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -223504,7 +231320,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -223549,19 +231365,82 @@ }, { "VerbName": "Remove", - "NounName": "AzBastion", - "Name": "Remove-AzBastion", - "ClassName": "Microsoft.Azure.Commands.Network.Bastion.RemoveAzBastionCommand", - "SupportsShouldProcess": true, + "NounName": "AzExpressRouteCircuitAuthorization", + "Name": "Remove-AzExpressRouteCircuitAuthorization", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByResourceGroupName", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Tag": "System.Collections.Hashtable", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] }, "ParameterSets": [ "__AllParameterSets" @@ -223569,21 +231448,8 @@ } ], "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -223592,70 +231458,46 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", - "AliasList": [ - "Bastion", - "BastionObject" - ], + "Name": "ExpressRouteCircuit", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "EnableShareableLink": "System.Nullable`1[System.Boolean]", - "EnableIpConnect": "System.Nullable`1[System.Boolean]", - "EnableTunneling": "System.Nullable`1[System.Boolean]", - "EnableSessionRecording": "System.Nullable`1[System.Boolean]", - "EnableKerberos": "System.Nullable`1[System.Boolean]", - "DisableCopyPaste": "System.Nullable`1[System.Boolean]", - "ScaleUnit": "System.Nullable`1[System.Int32]", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", "ProvisioningState": "System.String", - "Etag": "System.String", - "IpConfigurationsText": "System.String", - "SkuText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "DnsName": "System.String", - "TagsTable": "System.String", "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceId", - "AliasList": [ - "BastionId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, { @@ -223681,30 +231523,11 @@ ], "ParameterSets": [ { - "Name": "ByResourceGroupName", + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -223712,21 +231535,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -223734,17 +231542,51 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "ExpressRouteCircuit", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Tag": "System.Collections.Hashtable", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -223774,76 +231616,262 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzExpressRouteCircuitConnectionConfig", + "Name": "Remove-AzExpressRouteCircuitConnectionConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitConnectionConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Tag": "System.Collections.Hashtable", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByInputObject", + "Name": "ExpressRouteCircuit", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Tag": "System.Collections.Hashtable", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AddressPrefixType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6", + "All" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "Bastion", - "BastionObject" - ], + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExpressRouteCircuit", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "EnableShareableLink": "System.Nullable`1[System.Boolean]", - "EnableIpConnect": "System.Nullable`1[System.Boolean]", - "EnableTunneling": "System.Nullable`1[System.Boolean]", - "EnableSessionRecording": "System.Nullable`1[System.Boolean]", - "EnableKerberos": "System.Nullable`1[System.Boolean]", - "DisableCopyPaste": "System.Nullable`1[System.Boolean]", - "ScaleUnit": "System.Nullable`1[System.Int32]", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", "ProvisioningState": "System.String", - "Etag": "System.String", - "IpConfigurationsText": "System.String", - "SkuText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "DnsName": "System.String", - "TagsTable": "System.String", "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": -2147483648, + "Position": 1, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", + "Name": "AddressPrefixType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPv4", + "IPv6", + "All" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -223869,25 +231897,197 @@ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } - }, - "ValidateNotNullOrEmpty": false + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzExpressRouteCircuitPeeringConfig", + "Name": "Remove-AzExpressRouteCircuitPeeringConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Tag": "System.Collections.Hashtable", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" ] + } + ], + "Parameters": [ + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByResourceId", + "Name": "ExpressRouteCircuit", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Tag": "System.Collections.Hashtable", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PeerAddressType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6", + "All" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", - "AliasList": [ - "BastionId" - ], + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -223895,36 +232095,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -223932,58 +232102,66 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "ExpressRouteCircuit", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Tag": "System.Collections.Hashtable", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "PeerAddressType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPv4", + "IPv6", + "All" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -224023,13 +232201,13 @@ }, { "VerbName": "Remove", - "NounName": "AzBastionShareableLink", - "Name": "Remove-AzBastionShareableLink", - "ClassName": "Microsoft.Azure.Commands.Network.Bastion.RemoveAzBastionShareableLinkCommand", + "NounName": "AzExpressRouteConnection", + "Name": "Remove-AzExpressRouteConnection", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveExpressRouteConnectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByResourceGroupNameByName", + "DefaultParameterSetName": "ByExpressRouteConnectionName", "OutputTypes": [ { "Type": { @@ -224052,11 +232230,20 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "ExpressRouteGatewayName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Name", "AliasList": [ "ResourceName", - "BastionName" + "ExpressRouteConnectionName" ], "Type": { "Namespace": "System", @@ -224067,57 +232254,40 @@ }, { "Name": "ResourceId", + "AliasList": [ + "ExpressRouteConnectionId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "InputObject", + "AliasList": [ + "ExpressRouteConnection" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableShareableLink": "System.Nullable`1[System.Boolean]", - "EnableIpConnect": "System.Nullable`1[System.Boolean]", - "EnableTunneling": "System.Nullable`1[System.Boolean]", - "EnableSessionRecording": "System.Nullable`1[System.Boolean]", - "EnableKerberos": "System.Nullable`1[System.Boolean]", - "DisableCopyPaste": "System.Nullable`1[System.Boolean]", - "ScaleUnit": "System.Nullable`1[System.Int32]", + "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "AuthorizationKey": "System.String", "ProvisioningState": "System.String", - "Etag": "System.String", - "IpConfigurationsText": "System.String", - "SkuText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "DnsName": "System.String", - "TagsTable": "System.String", + "ExpressRouteCircuitPeeringText": "System.String", + "RoutingConfigurationText": "System.String", "Name": "System.String", - "Id": "System.String" + "Etag": "System.String", + "Id": "System.String", + "RoutingWeight": "System.UInt32" } }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "TargetVmId", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "Force", @@ -224137,15 +232307,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -224169,7 +232330,7 @@ ], "ParameterSets": [ { - "Name": "ByResourceGroupNameByName", + "Name": "ByExpressRouteConnectionName", "Parameters": [ { "ParameterMetadata": { @@ -224188,11 +232349,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "BastionName" - ], + "Name": "ExpressRouteGatewayName", "Type": { "Namespace": "System", "Name": "System.String", @@ -224207,20 +232364,21 @@ }, { "ParameterMetadata": { - "Name": "TargetVmId", + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteConnectionName" + ], "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -224235,7 +232393,7 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -224253,21 +232411,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -224297,40 +232440,25 @@ ] }, { - "Name": "ByResourceId", + "Name": "ByExpressRouteConnectionResourceId", "Parameters": [ { "ParameterMetadata": { "Name": "ResourceId", + "AliasList": [ + "ExpressRouteConnectionId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TargetVmId", - "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -224344,7 +232472,7 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -224362,21 +232490,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -224406,68 +232519,57 @@ ] }, { - "Name": "ByInputObject", + "Name": "ByExpressRouteConnectionObject", "Parameters": [ { "ParameterMetadata": { "Name": "InputObject", + "AliasList": [ + "ExpressRouteConnection" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableShareableLink": "System.Nullable`1[System.Boolean]", - "EnableIpConnect": "System.Nullable`1[System.Boolean]", - "EnableTunneling": "System.Nullable`1[System.Boolean]", - "EnableSessionRecording": "System.Nullable`1[System.Boolean]", - "EnableKerberos": "System.Nullable`1[System.Boolean]", - "DisableCopyPaste": "System.Nullable`1[System.Boolean]", - "ScaleUnit": "System.Nullable`1[System.Int32]", + "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "AuthorizationKey": "System.String", "ProvisioningState": "System.String", - "Etag": "System.String", - "IpConfigurationsText": "System.String", - "SkuText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "DnsName": "System.String", - "TagsTable": "System.String", + "ExpressRouteCircuitPeeringText": "System.String", + "RoutingConfigurationText": "System.String", "Name": "System.String", - "Id": "System.String" + "Etag": "System.String", + "Id": "System.String", + "RoutingWeight": "System.UInt32" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TargetVmId", + "Name": "Force", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -224477,12 +232579,43 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -224497,7 +232630,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -224507,7 +232640,7 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -224537,22 +232670,204 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzExpressRouteCrossConnectionPeering", + "Name": "Remove-AzExpressRouteCrossConnectionPeering", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRMExpressRouteCrossConnectionPeeringCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", + "Tag": "System.Collections.Hashtable", + "STag": "System.Nullable`1[System.Int32]", + "BandwidthInMbps": "System.Nullable`1[System.Int32]", + "PrimaryAzurePort": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRouteCircuitText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "ServiceProviderNotes": "System.String", + "ServiceProviderProvisioningState": "System.String", + "PeeringLocation": "System.String", + "SecondaryAzurePort": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ExpressRouteCrossConnection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", + "Tag": "System.Collections.Hashtable", + "STag": "System.Nullable`1[System.Int32]", + "BandwidthInMbps": "System.Nullable`1[System.Int32]", + "PrimaryAzurePort": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRouteCircuitText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "ServiceProviderNotes": "System.String", + "ServiceProviderProvisioningState": "System.String", + "PeeringLocation": "System.String", + "SecondaryAzurePort": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PeerAddressType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6", + "All" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "TargetVmId", + "Name": "ExpressRouteCrossConnection", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[System.String]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.String" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", + "Tag": "System.Collections.Hashtable", + "STag": "System.Nullable`1[System.Int32]", + "BandwidthInMbps": "System.Nullable`1[System.Int32]", + "PrimaryAzurePort": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRouteCircuitText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "ServiceProviderNotes": "System.String", + "ServiceProviderProvisioningState": "System.String", + "PeeringLocation": "System.String", + "SecondaryAzurePort": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -224561,27 +232876,32 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "PeerAddressType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "IPv4", + "IPv6", + "All" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -224591,7 +232911,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -224601,7 +232921,7 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -224636,13 +232956,13 @@ }, { "VerbName": "Remove", - "NounName": "AzCustomIpPrefix", - "Name": "Remove-AzCustomIpPrefix", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureCustomIpPrefixCommand", + "NounName": "AzExpressRouteGateway", + "Name": "Remove-AzExpressRouteGateway", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmExpressRouteGatewayCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "DeleteByNameParameterSet", + "DefaultParameterSetName": "ByExpressRouteGatewayName", "OutputTypes": [ { "Type": { @@ -224656,18 +232976,6 @@ } ], "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "ResourceGroupName", "Type": { @@ -224678,7 +232986,11 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -224688,49 +233000,46 @@ }, { "Name": "InputObject", + "AliasList": [ + "ExpressRouteGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", + "AllowNonVirtualWanTraffic": "System.Boolean", + "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", "Tag": "System.Collections.Hashtable", - "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", - "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", "Name": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", - "Location": "System.String", "ResourceGroupName": "System.String", - "ChildCustomIpPrefixesText": "System.String", - "CustomIpPrefixParentText": "System.String", - "Cidr": "System.String", - "PrefixType": "System.String", "Etag": "System.String", - "AuthorizationMessage": "System.String", - "SignedMessage": "System.String", + "ExpressRouteConnectionsText": "System.String", + "AutoScaleConfigurationText": "System.String", + "VirtualHubText": "System.String", "ProvisioningState": "System.String", - "CommissionedState": "System.String", - "Asn": "System.String", - "Geo": "System.String", - "PublicIpPrefixesText": "System.String", + "Location": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Force", + "Name": "ResourceId", + "AliasList": [ + "expressRouteGatewayId" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "PassThru", @@ -224742,7 +233051,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -224773,14 +233082,11 @@ ], "ParameterSets": [ { - "Name": "DeleteByNameParameterSet", + "Name": "ByExpressRouteGatewayName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -224791,11 +233097,15 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteGatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -224806,21 +233116,6 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -224840,7 +233135,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -224882,36 +233177,43 @@ ] }, { - "Name": "DeleteByResourceIdParameterSet", + "Name": "ByExpressRouteGatewayObject", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "InputObject", + "AliasList": [ + "ExpressRouteGateway" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", + "AllowNonVirtualWanTraffic": "System.Boolean", + "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "ResourceGroupName": "System.String", + "Etag": "System.String", + "ExpressRouteConnectionsText": "System.String", + "AutoScaleConfigurationText": "System.String", + "VirtualHubText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -224931,7 +233233,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -224973,65 +233275,25 @@ ] }, { - "Name": "DeleteByInputObjectParameterSet", + "Name": "ByExpressRouteGatewayResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ResourceId", + "AliasList": [ + "expressRouteGatewayId" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ChildCustomIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ExpressRouteAdvertise": "System.Nullable`1[System.Boolean]", - "NoInternetAdvertise": "System.Nullable`1[System.Boolean]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ChildCustomIpPrefixesText": "System.String", - "CustomIpPrefixParentText": "System.String", - "Cidr": "System.String", - "PrefixType": "System.String", - "Etag": "System.String", - "AuthorizationMessage": "System.String", - "SignedMessage": "System.String", - "ProvisioningState": "System.String", - "CommissionedState": "System.String", - "Asn": "System.String", - "Geo": "System.String", - "PublicIpPrefixesText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -225050,7 +233312,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -225094,21 +233356,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "PassThru", @@ -225126,7 +233373,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -225171,13 +233418,13 @@ }, { "VerbName": "Remove", - "NounName": "AzDdosProtectionPlan", - "Name": "Remove-AzDdosProtectionPlan", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmDdosProtectionPlan", + "NounName": "AzExpressRoutePort", + "Name": "Remove-AzExpressRoutePort", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmExpressRoutePort", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ResourceNameParameterSet", "OutputTypes": [ { "Type": { @@ -225191,6 +233438,50 @@ } ], "Parameters": [ + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", + "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "ResourceGroupName", "Type": { @@ -225210,7 +233501,25 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "PassThru", @@ -225244,40 +233553,78 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "InputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", + "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -225321,200 +233668,13 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzDelegation", - "Name": "Remove-AzDelegation", - "ClassName": "Microsoft.Azure.Commands.Network.VirtualNetwork.Subnet.RemoveAzureSubnetDelegation", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "ShouldSerializeIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeServiceEndpointPolicies", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeServiceEndpoints", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeResourceNavigationLinks", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializePrivateEndpoints", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeDelegations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeServiceAssociationLinks", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -225529,50 +233689,47 @@ }, { "ParameterMetadata": { - "Name": "Subnet", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -225602,110 +233759,13 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzExpressRouteCircuit", - "Name": "Remove-AzExpressRouteCircuit", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ResourceNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -225720,7 +233780,10 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -225750,7 +233813,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -225765,7 +233828,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -225805,180 +233868,19 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzExpressRouteCircuitAuthorization", - "Name": "Remove-AzExpressRouteCircuitAuthorization", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitAuthorizationCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ExpressRouteCircuit", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -225987,51 +233889,32 @@ }, { "ParameterMetadata": { - "Name": "ExpressRouteCircuit", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -226066,9 +233949,9 @@ }, { "VerbName": "Remove", - "NounName": "AzExpressRouteCircuitConnectionConfig", - "Name": "Remove-AzExpressRouteCircuitConnectionConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitConnectionConfigCommand", + "NounName": "AzExpressRoutePortAuthorization", + "Name": "Remove-AzExpressRoutePortAuthorization", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortAuthorizationCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -226076,72 +233959,9 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -226159,60 +233979,65 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ExpressRouteCircuit", + "Name": "ExpressRoutePortObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", "Name": "System.String", "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "AddressPrefixType", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "IPv4", - "IPv6", - "All" - ], "ValidateNotNullOrEmpty": false }, { @@ -226251,72 +234076,89 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 0, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ExpressRouteCircuit", + "Name": "ExpressRoutePortObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", "Name": "System.String", "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 1, + "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AddressPrefixType", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "IPv4", - "IPv6", - "All" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -226356,9 +234198,9 @@ }, { "VerbName": "Remove", - "NounName": "AzExpressRouteCircuitPeeringConfig", - "Name": "Remove-AzExpressRouteCircuitPeeringConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRouteCircuitPeeringConfigCommand", + "NounName": "AzExpressRoutePortIdentity", + "Name": "Remove-AzExpressRoutePortIdentity", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -226367,40 +234209,32 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", "Name": "System.String", "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", "Id": "System.String" }, "Methods": [ @@ -226440,69 +234274,38 @@ ], "Parameters": [ { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ExpressRouteCircuit", + "Name": "ExpressRoutePort", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", "Name": "System.String", "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PeerAddressType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + } }, - "ValidateSet": [ - "IPv4", - "IPv6", - "All" - ], "ValidateNotNullOrEmpty": false }, { @@ -226532,58 +234335,35 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExpressRouteCircuit", + "Name": "ExpressRoutePort", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", "Name": "System.String", "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", "Id": "System.String" } }, @@ -226594,26 +234374,6 @@ "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "PeerAddressType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPv4", - "IPv6", - "All" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -226646,13 +234406,13 @@ }, { "VerbName": "Remove", - "NounName": "AzExpressRouteConnection", - "Name": "Remove-AzExpressRouteConnection", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveExpressRouteConnectionCommand", + "NounName": "AzFirewall", + "Name": "Remove-AzFirewall", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureFirewallCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByExpressRouteConnectionName", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { @@ -226666,29 +234426,10 @@ } ], "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ExpressRouteGatewayName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "Name", "AliasList": [ - "ResourceName", - "ExpressRouteConnectionName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -226698,44 +234439,25 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", - "AliasList": [ - "ExpressRouteConnectionId" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", - "AliasList": [ - "ExpressRouteConnection" - ], + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "AuthorizationKey": "System.String", - "ProvisioningState": "System.String", - "ExpressRouteCircuitPeeringText": "System.String", - "RoutingConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "RoutingWeight": "System.UInt32" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -226744,7 +234466,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -226775,11 +234497,14 @@ ], "ParameterSets": [ { - "Name": "ByExpressRouteConnectionName", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -226790,11 +234515,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExpressRouteGatewayName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -226805,30 +234530,26 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ExpressRouteConnectionName" - ], + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -226843,7 +234564,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -226883,22 +234604,176 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzFirewallPolicy", + "Name": "Remove-AzFirewallPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureFirewallPolicyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "RemoveByNameParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, { - "Name": "ByExpressRouteConnectionResourceId", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "RemoveByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Name", "AliasList": [ - "ExpressRouteConnectionId" + "ResourceName" ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -226935,6 +234810,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -226964,42 +234854,26 @@ ] }, { - "Name": "ByExpressRouteConnectionObject", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "ExpressRouteConnection" - ], + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "AuthorizationKey": "System.String", - "ProvisioningState": "System.String", - "ExpressRouteCircuitPeeringText": "System.String", - "RoutingConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "RoutingWeight": "System.UInt32" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -227014,7 +234888,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -227056,8 +234930,23 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "RemoveByResourceIdParameterSet", "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "Force", @@ -227088,6 +234977,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -227115,201 +235019,43 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzExpressRouteCrossConnectionPeering", - "Name": "Remove-AzExpressRouteCrossConnectionPeering", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRMExpressRouteCrossConnectionPeeringCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", - "Tag": "System.Collections.Hashtable", - "STag": "System.Nullable`1[System.Int32]", - "BandwidthInMbps": "System.Nullable`1[System.Int32]", - "PrimaryAzurePort": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRouteCircuitText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "ServiceProviderNotes": "System.String", - "ServiceProviderProvisioningState": "System.String", - "PeeringLocation": "System.String", - "SecondaryAzurePort": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ExpressRouteCrossConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", - "Tag": "System.Collections.Hashtable", - "STag": "System.Nullable`1[System.Int32]", - "BandwidthInMbps": "System.Nullable`1[System.Int32]", - "PrimaryAzurePort": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRouteCircuitText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "ServiceProviderNotes": "System.String", - "ServiceProviderProvisioningState": "System.String", - "PeeringLocation": "System.String", - "SecondaryAzurePort": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PeerAddressType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPv4", - "IPv6", - "All" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "RemoveByInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ExpressRouteCrossConnection", + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "Tag": "System.Collections.Hashtable", - "STag": "System.Nullable`1[System.Int32]", - "BandwidthInMbps": "System.Nullable`1[System.Int32]", - "PrimaryAzurePort": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRouteCircuitText": "System.String", - "Etag": "System.String", + "Size": "System.String", "ProvisioningState": "System.String", - "ServiceProviderNotes": "System.String", - "ServiceProviderProvisioningState": "System.String", - "PeeringLocation": "System.String", - "SecondaryAzurePort": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" } }, "ValidateNotNullOrEmpty": false @@ -227321,13 +235067,13 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -227336,17 +235082,12 @@ }, { "ParameterMetadata": { - "Name": "PeerAddressType", + "Name": "PassThru", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "IPv4", - "IPv6", - "All" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -227356,7 +235097,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -227401,13 +235142,13 @@ }, { "VerbName": "Remove", - "NounName": "AzExpressRouteGateway", - "Name": "Remove-AzExpressRouteGateway", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmExpressRouteGatewayCommand", + "NounName": "AzFirewallPolicyDraft", + "Name": "Remove-AzFirewallPolicyDraft", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureFirewallPolicyDraftCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByExpressRouteGatewayName", + "DefaultParameterSetName": "RemoveByNameParameterSet", "OutputTypes": [ { "Type": { @@ -227422,7 +235163,7 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "AzureFirewallPolicyName", "Type": { "Namespace": "System", "Name": "System.String", @@ -227431,11 +235172,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ExpressRouteGatewayName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -227444,41 +235181,43 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", - "AliasList": [ - "ExpressRouteGateway" - ], + "Name": "FirewallPolicyObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", - "AllowNonVirtualWanTraffic": "System.Boolean", - "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "ResourceGroupName": "System.String", - "Etag": "System.String", - "ExpressRouteConnectionsText": "System.String", - "AutoScaleConfigurationText": "System.String", - "VirtualHubText": "System.String", + "Size": "System.String", "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", "Location": "System.String", - "Id": "System.String" + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" } }, "ValidateNotNullOrEmpty": true }, { "Name": "ResourceId", - "AliasList": [ - "expressRouteGatewayId" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -227486,6 +235225,39 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "PassThru", "Type": { @@ -227496,7 +235268,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -227527,11 +235299,11 @@ ], "ParameterSets": [ { - "Name": "ByExpressRouteGatewayName", + "Name": "RemoveByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "AzureFirewallPolicyName", "Type": { "Namespace": "System", "Name": "System.String", @@ -227542,15 +235314,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ExpressRouteGatewayName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -227561,6 +235329,21 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -227580,7 +235363,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -227622,43 +235405,63 @@ ] }, { - "Name": "ByExpressRouteGatewayObject", + "Name": "RemoveByParentInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "ExpressRouteGateway" - ], + "Name": "FirewallPolicyObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", - "AllowNonVirtualWanTraffic": "System.Boolean", - "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "ResourceGroupName": "System.String", - "Etag": "System.String", - "ExpressRouteConnectionsText": "System.String", - "AutoScaleConfigurationText": "System.String", - "VirtualHubText": "System.String", + "Size": "System.String", "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", "Location": "System.String", - "Id": "System.String" + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" } }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -227678,7 +235481,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -227720,14 +235523,11 @@ ] }, { - "Name": "ByExpressRouteGatewayResourceId", + "Name": "RemoveByResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { "Name": "ResourceId", - "AliasList": [ - "expressRouteGatewayId" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -227740,6 +235540,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "PassThru", @@ -227755,6 +235570,82 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "RemoveByInputObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -227770,6 +235661,36 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -227801,6 +235722,21 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "PassThru", @@ -227818,7 +235754,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -227863,13 +235799,13 @@ }, { "VerbName": "Remove", - "NounName": "AzExpressRoutePort", - "Name": "Remove-AzExpressRoutePort", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmExpressRoutePort", + "NounName": "AzFirewallPolicyRuleCollectionGroup", + "Name": "Remove-AzFirewallPolicyRuleCollectionGroup", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureFirewallPolicyRuleGroupCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ResourceNameParameterSet", + "DefaultParameterSetName": "RemoveByNameParameterSet", "OutputTypes": [ { "Type": { @@ -227884,42 +235820,64 @@ ], "Parameters": [ { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "FirewallPolicyObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", + "Size": "System.String", "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "AzureFirewallPolicyName", "Type": { "Namespace": "System", "Name": "System.String", @@ -227928,19 +235886,20 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", + "Name": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -227958,7 +235917,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -227967,7 +235926,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -227998,48 +235957,55 @@ ], "ParameterSets": [ { - "Name": "InputObjectParameterSet", + "Name": "RemoveByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AzureFirewallPolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -228058,7 +236024,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -228073,7 +236039,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -228115,11 +236081,14 @@ ] }, { - "Name": "ResourceIdParameterSet", + "Name": "RemoveByParentInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -228130,6 +236099,48 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FirewallPolicyObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { @@ -228149,7 +236160,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -228164,7 +236175,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -228206,40 +236217,26 @@ ] }, { - "Name": "ResourceNameParameterSet", + "Name": "RemoveByInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", + "Name": "System.String" + } }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -228258,7 +236255,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -228273,7 +236270,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -228315,8 +236312,23 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "RemoveByResourceIdParameterSet", "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "Force", @@ -228334,7 +236346,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -228349,7 +236361,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -228389,183 +236401,10 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzExpressRoutePortAuthorization", - "Name": "Remove-AzExpressRoutePortAuthorization", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortAuthorizationCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ExpressRoutePortObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExpressRoutePortObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Force", @@ -228643,74 +236482,19 @@ }, { "VerbName": "Remove", - "NounName": "AzExpressRoutePortIdentity", - "Name": "Remove-AzExpressRoutePortIdentity", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureExpressRoutePortIdentityCommand", - "SupportsShouldProcess": false, + "NounName": "AzFirewallPolicyRuleCollectionGroupDraft", + "Name": "Remove-AzFirewallPolicyRuleCollectionGroupDraft", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureFirewallPolicyRuleGroupDraftCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "RemoveByNameParameterSet", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -228719,172 +236503,83 @@ ], "Parameters": [ { - "Name": "ExpressRoutePort", + "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "FirewallPolicyObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", + "Size": "System.String", "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ExpressRoutePort", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzFirewall", - "Name": "Remove-AzFirewall", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureFirewallCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { + "Name": "AzureFirewallPolicyName", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ + "ValidateNotNullOrEmpty": true + }, { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", + "Name": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -228942,14 +236637,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "RemoveByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "AzureFirewallPolicyRuleCollectionGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -228977,6 +236669,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "AzureFirewallPolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "Force", @@ -229049,155 +236756,13 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzFirewallPolicy", - "Name": "Remove-AzFirewallPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureFirewallPolicyCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "RemoveByNameParameterSet", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "RemoveByNameParameterSet", + "Name": "RemoveByParentInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "AzureFirewallPolicyRuleCollectionGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -229208,15 +236773,42 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "FirewallPolicyObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } }, "ValidateNotNullOrEmpty": true }, @@ -229299,8 +236891,27 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "RemoveByInputObjectParameterSet", "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", + "Name": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -229466,50 +237077,8 @@ ] }, { - "Name": "RemoveByInputObjectParameterSet", + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Force", @@ -229587,13 +237156,13 @@ }, { "VerbName": "Remove", - "NounName": "AzFirewallPolicyDraft", - "Name": "Remove-AzFirewallPolicyDraft", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureFirewallPolicyDraftCommand", + "NounName": "AzIpAllocation", + "Name": "Remove-AzIpAllocation", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "RemoveByNameParameterSet", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { @@ -229608,7 +237177,10 @@ ], "Parameters": [ { - "Name": "AzureFirewallPolicyName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -229626,74 +237198,34 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "FirewallPolicyObject", + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "Name": "System.String", "Etag": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Force", "Type": { @@ -229744,11 +237276,14 @@ ], "ParameterSets": [ { - "Name": "RemoveByNameParameterSet", + "Name": "DeleteByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "AzureFirewallPolicyName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -229850,49 +237385,33 @@ ] }, { - "Name": "RemoveByParentInputObjectParameterSet", + "Name": "DeleteByInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "FirewallPolicyObject", + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" + "Etag": "System.String", + "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -229968,7 +237487,7 @@ ] }, { - "Name": "RemoveByResourceIdParameterSet", + "Name": "DeleteByResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -230058,112 +237577,6 @@ } ] }, - { - "Name": "RemoveByInputObjectParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, { "Name": "__AllParameterSets", "Parameters": [ @@ -230244,13 +237657,13 @@ }, { "VerbName": "Remove", - "NounName": "AzFirewallPolicyRuleCollectionGroup", - "Name": "Remove-AzFirewallPolicyRuleCollectionGroup", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureFirewallPolicyRuleGroupCommand", + "NounName": "AzIpGroup", + "Name": "Remove-AzIpGroup", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveIpGroupsCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "RemoveByNameParameterSet", + "DefaultParameterSetName": "IpGroupNameParameterSet", "OutputTypes": [ { "Type": { @@ -230286,59 +237699,24 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "FirewallPolicyObject", + "Name": "IpGroup", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "IpAddresses": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Size": "System.String", "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AzureFirewallPolicyName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "Name": "System.String" + "Etag": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": true @@ -230402,7 +237780,7 @@ ], "ParameterSets": [ { - "Name": "RemoveByNameParameterSet", + "Name": "IpGroupNameParameterSet", "Parameters": [ { "ParameterMetadata": { @@ -230437,21 +237815,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "AzureFirewallPolicyName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "Force", @@ -230526,67 +237889,36 @@ ] }, { - "Name": "RemoveByParentInputObjectParameterSet", + "Name": "IpGroupInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FirewallPolicyObject", + "Name": "IpGroup", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "IpAddresses": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Size": "System.String", "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", "TagsTable": "System.String", "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" + "Etag": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -230662,26 +237994,22 @@ ] }, { - "Name": "RemoveByInputObjectParameterSet", + "Name": "IpGroupResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "Name": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -230757,23 +238085,8 @@ ] }, { - "Name": "RemoveByResourceIdParameterSet", + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "Force", @@ -230846,10 +238159,137 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzLoadBalancer", + "Name": "Remove-AzLoadBalancer", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancer", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "Force", @@ -230867,7 +238307,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -230882,7 +238322,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -230927,19 +238367,88 @@ }, { "VerbName": "Remove", - "NounName": "AzFirewallPolicyRuleCollectionGroupDraft", - "Name": "Remove-AzFirewallPolicyRuleCollectionGroupDraft", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureFirewallPolicyRuleGroupDraftCommand", + "NounName": "AzLoadBalancerBackendAddressPool", + "Name": "Remove-AzLoadBalancerBackendAddressPool", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendPool", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "RemoveByNameParameterSet", + "DefaultParameterSetName": "DeleteByNameParameterSet", "OutputTypes": [ { "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", + "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", + "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "ShouldSerializeTunnelInterfaces", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeBackendIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeLoadBalancingRules", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeSyncMode", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeVirtualNetwork", + "ReturnType": "System.Boolean" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] }, "ParameterSets": [ "__AllParameterSets" @@ -230948,7 +238457,7 @@ ], "Parameters": [ { - "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -230957,7 +238466,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -230966,59 +238475,78 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "FirewallPolicyObject", + "Name": "LoadBalancerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "AzureFirewallPolicyName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", - "Name": "System.String" + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", + "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", + "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": true @@ -231032,15 +238560,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "PassThru", "Type": { @@ -231050,15 +238569,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -231082,11 +238592,11 @@ ], "ParameterSets": [ { - "Name": "RemoveByNameParameterSet", + "Name": "DeleteByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -231097,11 +238607,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -231112,11 +238622,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AzureFirewallPolicyName", + "Name": "LoadBalancerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -231124,21 +238634,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -231159,21 +238654,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -231203,11 +238683,11 @@ ] }, { - "Name": "RemoveByParentInputObjectParameterSet", + "Name": "DeleteByParentObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -231222,49 +238702,67 @@ }, { "ParameterMetadata": { - "Name": "FirewallPolicyObject", + "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LoadBalancerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -231279,11 +238777,22 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -231291,10 +238800,30 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "LoadBalancerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -231336,18 +238865,34 @@ ] }, { - "Name": "RemoveByInputObjectParameterSet", + "Name": "DeleteByInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", - "Name": "System.String" + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", + "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", + "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": true @@ -231359,13 +238904,13 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "LoadBalancerName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -231389,7 +238934,68 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "DeleteByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LoadBalancerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -231428,63 +239034,216 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false } - ] - }, + ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzLoadBalancerBackendAddressPoolConfig", + "Name": "Remove-AzLoadBalancerBackendAddressPoolConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerBackendAddressPoolConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { - "Name": "RemoveByResourceIdParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "LoadBalancer", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -231520,47 +239279,215 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzLoadBalancerFrontendIpConfig", + "Name": "Remove-AzLoadBalancerFrontendIpConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerFrontendIpConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", + "Name": "LoadBalancer", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -231601,9 +239528,9 @@ }, { "VerbName": "Remove", - "NounName": "AzIpAllocation", - "Name": "Remove-AzIpAllocation", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureIpAllocationCommand", + "NounName": "AzLoadBalancerInboundNatPoolConfig", + "Name": "Remove-AzLoadBalancerInboundNatPoolConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerInboundNatPoolConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -231611,9 +239538,68 @@ "OutputTypes": [ { "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] }, "ParameterSets": [ "__AllParameterSets" @@ -231622,80 +239608,51 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InputObject", + "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", "Tag": "System.Collections.Hashtable", - "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceId", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, { @@ -231721,79 +239678,61 @@ ], "ParameterSets": [ { - "Name": "DeleteByNameParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "LoadBalancer", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -231828,26 +239767,198 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzLoadBalancerInboundNatRuleConfig", + "Name": "Remove-AzLoadBalancerInboundNatRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerInboundNatRuleConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "DeleteByInputObjectParameterSet", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopLevelResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", "Tag": "System.Collections.Hashtable", - "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", "Id": "System.String" } }, @@ -231856,45 +239967,15 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -231930,142 +240011,219 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzLoadBalancerOutboundRuleConfig", + "Name": "Remove-AzLoadBalancerOutboundRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerOutboundRuleConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "DeleteByResourceIdParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" ] + } + ], + "Parameters": [ + { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", + "Name": "LoadBalancer", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -232102,19 +240260,78 @@ }, { "VerbName": "Remove", - "NounName": "AzIpGroup", - "Name": "Remove-AzIpGroup", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveIpGroupsCommand", + "NounName": "AzLoadBalancerProbeConfig", + "Name": "Remove-AzLoadBalancerProbeConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerProbeConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "IpGroupNameParameterSet", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] }, "ParameterSets": [ "__AllParameterSets" @@ -232123,83 +240340,51 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "IpGroup", + "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "IpAddresses": "System.Collections.Generic.List`1[System.String]", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceId", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, "ValidateNotNullOrEmpty": false }, { @@ -232225,183 +240410,60 @@ ], "ParameterSets": [ { - "Name": "IpGroupNameParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "IpGroupInputObjectParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "IpGroup", + "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "IpAddresses": "System.Collections.Generic.List`1[System.String]", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -232437,138 +240499,215 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "Remove", + "NounName": "AzLoadBalancerRuleConfig", + "Name": "Remove-AzLoadBalancerRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerRuleConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "IpGroupResourceIdParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" ] + } + ], + "Parameters": [ + { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", + "Name": "LoadBalancer", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -232609,9 +240748,9 @@ }, { "VerbName": "Remove", - "NounName": "AzLoadBalancer", - "Name": "Remove-AzLoadBalancer", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancer", + "NounName": "AzLocalNetworkGateway", + "Name": "Remove-AzLocalNetworkGateway", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -232630,7 +240769,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -232639,10 +240781,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -232660,7 +240799,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -232669,7 +240808,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -232704,7 +240843,10 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -232719,10 +240861,7 @@ }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -232752,7 +240891,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -232767,7 +240906,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -232812,9 +240951,9 @@ }, { "VerbName": "Remove", - "NounName": "AzLoadBalancerBackendAddressPool", - "Name": "Remove-AzLoadBalancerBackendAddressPool", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureLoadBalancerBackendPool", + "NounName": "AzNatGateway", + "Name": "Remove-AzNatGateway", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmNatGateway", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -232822,78 +240961,9 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "ShouldSerializeTunnelInterfaces", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeBackendIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeLoadBalancingRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeSyncMode", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeVirtualNetwork", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -232920,84 +240990,42 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "LoadBalancerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "LoadBalancer", + "Name": "InputObject", + "AliasList": [ + "NatGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ResourceGroupName": "System.String", "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "PublicIpPrefixesText": "System.String", + "ResourceGroupName": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "PublicIpAddressesText": "System.String", "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", + "Location": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "ResourceId", + "AliasList": [ + "NatGatewayId" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -233005,6 +241033,24 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "PassThru", "Type": { @@ -233071,13 +241117,28 @@ }, { "ParameterMetadata": { - "Name": "LoadBalancerName", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -233128,58 +241189,36 @@ ] }, { - "Name": "DeleteByParentObjectParameterSet", + "Name": "DeleteByInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "InputObject", + "AliasList": [ + "NatGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ResourceGroupName": "System.String", "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "PublicIpPrefixesText": "System.String", + "ResourceGroupName": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "PublicIpAddressesText": "System.String", "SkuText": "System.String", - "OutboundRulesText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", "Id": "System.String" } }, @@ -233192,22 +241231,7 @@ }, { "ParameterMetadata": { - "Name": "LoadBalancerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PassThru", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -233222,44 +241246,13 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "LoadBalancerName", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -233310,52 +241303,50 @@ ] }, { - "Name": "DeleteByInputObjectParameterSet", + "Name": "DeleteByResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ResourceId", + "AliasList": [ + "NatGatewayId" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LoadBalancerName", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -233406,32 +241397,32 @@ ] }, { - "Name": "DeleteByResourceIdParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LoadBalancerName", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -233485,9 +241476,9 @@ }, { "VerbName": "Remove", - "NounName": "AzLoadBalancerBackendAddressPoolConfig", - "Name": "Remove-AzLoadBalancerBackendAddressPoolConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerBackendAddressPoolConfigCommand", + "NounName": "AzNetworkInterface", + "Name": "Remove-AzNetworkInterface", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -233495,68 +241486,9 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -233565,51 +241497,51 @@ ], "Parameters": [ { - "Name": "LoadBalancer", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, { @@ -233639,57 +241571,75 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -233729,10 +241679,10 @@ }, { "VerbName": "Remove", - "NounName": "AzLoadBalancerFrontendIpConfig", - "Name": "Remove-AzLoadBalancerFrontendIpConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerFrontendIpConfigCommand", - "SupportsShouldProcess": true, + "NounName": "AzNetworkInterfaceIpConfig", + "Name": "Remove-AzNetworkInterfaceIpConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -233740,39 +241690,56 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", "TagsTable": "System.String", "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeTapConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeHostedWorkloads", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -233809,53 +241776,58 @@ ], "Parameters": [ { - "Name": "LoadBalancer", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkInterface", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", "TagsTable": "System.String", "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -233883,39 +241855,59 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NetworkInterface", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", "TagsTable": "System.String", "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", "Id": "System.String" } }, @@ -233924,21 +241916,6 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -233973,50 +241950,67 @@ }, { "VerbName": "Remove", - "NounName": "AzLoadBalancerInboundNatPoolConfig", - "Name": "Remove-AzLoadBalancerInboundNatPoolConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerInboundNatPoolConfigCommand", + "NounName": "AzNetworkInterfaceTapConfig", + "Name": "Remove-AzNetworkInterfaceTapConfig", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmNetworkInterfaceTapConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "RemoveByNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", "TagsTable": "System.String", "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeTapConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeHostedWorkloads", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -234053,50 +242047,74 @@ ], "Parameters": [ { - "Name": "LoadBalancer", + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", + "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "NetworkInterfaceName": "System.String", + "VirtualNetworkTapText": "System.String", + "Name": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", "Id": "System.String" } }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", + "Name": "PassThru", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -234123,51 +242141,36 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "RemoveByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkInterfaceName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { @@ -234178,6 +242181,36 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -234212,215 +242245,193 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzLoadBalancerInboundNatRuleConfig", - "Name": "Remove-AzLoadBalancerInboundNatRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerInboundNatRuleConfigCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" + "Name": "DeleteByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } ] - } - ], - "Parameters": [ + }, { - "Name": "LoadBalancer", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" + "Name": "DeleteByInputObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", + "ResourceGroupName": "System.String", + "NetworkInterfaceName": "System.String", + "VirtualNetworkTapText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + ] }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PassThru", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -234461,9 +242472,9 @@ }, { "VerbName": "Remove", - "NounName": "AzLoadBalancerOutboundRuleConfig", - "Name": "Remove-AzLoadBalancerOutboundRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerOutboundRuleConfigCommand", + "NounName": "AzNetworkManager", + "Name": "Remove-AzNetworkManager", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -234471,68 +242482,9 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -234541,51 +242493,60 @@ ], "Parameters": [ { - "Name": "LoadBalancer", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, { @@ -234615,62 +242576,95 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -234705,9 +242699,9 @@ }, { "VerbName": "Remove", - "NounName": "AzLoadBalancerProbeConfig", - "Name": "Remove-AzLoadBalancerProbeConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerProbeConfigCommand", + "NounName": "AzNetworkManagerConnectivityConfiguration", + "Name": "Remove-AzNetworkManagerConnectivityConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerConnectivityConfigurationCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -234715,68 +242709,9 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -234785,51 +242720,69 @@ ], "Parameters": [ { - "Name": "LoadBalancer", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, { @@ -234859,57 +242812,105 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -234949,9 +242950,9 @@ }, { "VerbName": "Remove", - "NounName": "AzLoadBalancerRuleConfig", - "Name": "Remove-AzLoadBalancerRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmLoadBalancerRuleConfigCommand", + "NounName": "AzNetworkManagerGroup", + "Name": "Remove-AzNetworkManagerGroup", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkGroupCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -234959,68 +242960,9 @@ "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -235029,51 +242971,69 @@ ], "Parameters": [ { - "Name": "LoadBalancer", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, { @@ -235103,57 +243063,105 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -235193,9 +243201,9 @@ }, { "VerbName": "Remove", - "NounName": "AzLocalNetworkGateway", - "Name": "Remove-AzLocalNetworkGateway", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureLocalNetworkGatewayCommand", + "NounName": "AzNetworkManagerManagementGroupConnection", + "Name": "Remove-AzNetworkManagerManagementGroupConnection", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerManagementGroupConnectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -235214,19 +243222,19 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ManagementGroupId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -235288,16 +243296,13 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ManagementGroupId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -235306,7 +243311,10 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -235396,13 +243404,13 @@ }, { "VerbName": "Remove", - "NounName": "AzNatGateway", - "Name": "Remove-AzNatGateway", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmNatGateway", + "NounName": "AzNetworkManagerRoutingConfiguration", + "Name": "Remove-AzNetworkManagerRoutingConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerRoutingConfigurationCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "DeleteByNameParameterSet", + "DefaultParameterSetName": "ByName", "OutputTypes": [ { "Type": { @@ -235417,7 +243425,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -235426,7 +243437,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -235436,31 +243456,20 @@ }, { "Name": "InputObject", - "AliasList": [ - "NatGateway" - ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "PublicIpPrefixesText": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", "ResourceGroupName": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "SkuText": "System.String", + "Description": "System.String", + "Type": "System.String", "ProvisioningState": "System.String", - "Location": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" } }, @@ -235468,15 +243477,21 @@ }, { "Name": "ResourceId", - "AliasList": [ - "NatGatewayId" - ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "Force", @@ -235488,7 +243503,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -235497,7 +243512,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -235528,11 +243543,14 @@ ], "ParameterSets": [ { - "Name": "DeleteByNameParameterSet", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -235543,11 +243561,26 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -235558,6 +243591,21 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -235577,7 +243625,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "PassThru", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -235592,7 +243640,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -235634,36 +243682,25 @@ ] }, { - "Name": "DeleteByInputObjectParameterSet", + "Name": "ByInputObject", "Parameters": [ { "ParameterMetadata": { "Name": "InputObject", - "AliasList": [ - "NatGateway" - ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "PublicIpPrefixesText": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", "ResourceGroupName": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "SkuText": "System.String", + "Description": "System.String", + "Type": "System.String", "ProvisioningState": "System.String", - "Location": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" } }, @@ -235676,7 +243713,7 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "ForceDelete", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -235691,7 +243728,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -235719,6 +243756,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -235748,14 +243800,11 @@ ] }, { - "Name": "DeleteByResourceIdParameterSet", + "Name": "ByResourceId", "Parameters": [ { "ParameterMetadata": { "Name": "ResourceId", - "AliasList": [ - "NatGatewayId" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -235766,11 +243815,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "ForceDelete", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -235785,7 +243834,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -235813,6 +243862,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -235846,7 +243910,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Force", + "Name": "ForceDelete", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -235861,7 +243925,7 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -235889,6 +243953,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -235921,13 +244000,13 @@ }, { "VerbName": "Remove", - "NounName": "AzNetworkInterface", - "Name": "Remove-AzNetworkInterface", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceCommand", + "NounName": "AzNetworkManagerRoutingRule", + "Name": "Remove-AzNetworkManagerRoutingRule", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerRoutingRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByName", "OutputTypes": [ { "Type": { @@ -235953,6 +244032,36 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "ResourceGroupName", "Type": { @@ -235962,6 +244071,49 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Destination": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination", + "NextHop": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "RuleCollectionName": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Force", "Type": { @@ -236012,7 +244164,7 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { @@ -236032,6 +244184,54 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "ResourceGroupName", @@ -236047,6 +244247,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -236119,188 +244334,135 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzNetworkInterfaceIpConfig", - "Name": "Remove-AzNetworkInterfaceIpConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureNetworkInterfaceIpConfigCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", - "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "ShouldSerializeIpConfigurations", - "ReturnType": "System.Boolean" + "Name": "ByInputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Destination": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination", + "NextHop": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "RuleCollectionName": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ShouldSerializeTapConfigurations", - "ReturnType": "System.Boolean" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ShouldSerializeHostedWorkloads", - "ReturnType": "System.Boolean" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetType", - "ReturnType": "System.Type" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" ], - "ReturnType": "System.Boolean" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NetworkInterface", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", - "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", - "Id": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false } - }, - "ValidateNotNullOrEmpty": false + ] }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -236315,52 +244477,153 @@ }, { "ParameterMetadata": { - "Name": "NetworkInterface", + "Name": "ForceDelete", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", - "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -236395,95 +244658,19 @@ }, { "VerbName": "Remove", - "NounName": "AzNetworkInterfaceTapConfig", - "Name": "Remove-AzNetworkInterfaceTapConfig", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzureRmNetworkInterfaceTapConfigCommand", + "NounName": "AzNetworkManagerRoutingRuleCollection", + "Name": "Remove-AzNetworkManagerRoutingRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerRoutingRuleCollectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "RemoveByNameParameterSet", + "DefaultParameterSetName": "ByName", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", - "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "ShouldSerializeIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeTapConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeHostedWorkloads", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ParameterSets": [ "__AllParameterSets" @@ -236492,7 +244679,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -236501,7 +244691,10 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "NetworkInterfaceName", + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -236510,7 +244703,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -236519,7 +244712,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -236530,21 +244723,46 @@ { "Name": "InputObject", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesTo": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem]", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "DisableBgpRoutePropagation": "System.String", + "AppliesToText": "System.String", "ResourceGroupName": "System.String", - "NetworkInterfaceName": "System.String", - "VirtualNetworkTapText": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" } }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": true }, + { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Force", "Type": { @@ -236563,6 +244781,15 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -236586,11 +244813,14 @@ ], "ParameterSets": [ { - "Name": "RemoveByNameParameterSet", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -236605,7 +244835,10 @@ }, { "ParameterMetadata": { - "Name": "NetworkInterfaceName", + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -236620,7 +244853,22 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -236633,6 +244881,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -236663,6 +244926,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -236692,22 +244970,53 @@ ] }, { - "Name": "DeleteByResourceIdParameterSet", + "Name": "ByInputObject", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesTo": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem]", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "DisableBgpRoutePropagation": "System.String", + "AppliesToText": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -236739,6 +245048,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -236768,30 +245092,36 @@ ] }, { - "Name": "DeleteByInputObjectParameterSet", + "Name": "ByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ResourceId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "ResourceGroupName": "System.String", - "NetworkInterfaceName": "System.String", - "VirtualNetworkTapText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -236824,6 +245154,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -236855,6 +245200,21 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -236885,6 +245245,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -236917,9 +245292,9 @@ }, { "VerbName": "Remove", - "NounName": "AzNetworkManager", - "Name": "Remove-AzNetworkManager", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerCommand", + "NounName": "AzNetworkManagerScopeConnection", + "Name": "Remove-AzNetworkManagerScopeConnection", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerScopeConnectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -236950,7 +245325,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -236959,13 +245334,13 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ForceDelete", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "Force", @@ -237039,7 +245414,7 @@ }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -237054,18 +245429,18 @@ }, { "ParameterMetadata": { - "Name": "ForceDelete", + "Name": "ResourceGroupName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -237144,9 +245519,9 @@ }, { "VerbName": "Remove", - "NounName": "AzNetworkManagerConnectivityConfiguration", - "Name": "Remove-AzNetworkManagerConnectivityConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerConnectivityConfigurationCommand", + "NounName": "AzNetworkManagerSecurityAdminConfiguration", + "Name": "Remove-AzNetworkManagerSecurityAdminConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerSecurityAdminConfigurationCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -237395,9 +245770,9 @@ }, { "VerbName": "Remove", - "NounName": "AzNetworkManagerGroup", - "Name": "Remove-AzNetworkManagerGroup", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkGroupCommand", + "NounName": "AzNetworkManagerSecurityAdminRule", + "Name": "Remove-AzNetworkManagerSecurityAdminRule", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerSecurityAdminRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -237427,6 +245802,27 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SecurityAdminConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "NetworkManagerName", "Type": { @@ -237524,6 +245920,39 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SecurityAdminConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "NetworkManagerName", @@ -237646,9 +246075,9 @@ }, { "VerbName": "Remove", - "NounName": "AzNetworkManagerManagementGroupConnection", - "Name": "Remove-AzNetworkManagerManagementGroupConnection", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerManagementGroupConnectionCommand", + "NounName": "AzNetworkManagerSecurityAdminRuleCollection", + "Name": "Remove-AzNetworkManagerSecurityAdminRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerSecurityAdminRuleCollectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -237667,18 +246096,21 @@ ], "Parameters": [ { - "Name": "ManagementGroupId", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "SecurityAdminConfigurationName", "AliasList": [ - "ResourceName" + "ConfigName" ], "Type": { "Namespace": "System", @@ -237687,6 +246119,33 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Force", "Type": { @@ -237741,13 +246200,16 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ManagementGroupId", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -237756,9 +246218,9 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "SecurityAdminConfigurationName", "AliasList": [ - "ResourceName" + "ConfigName" ], "Type": { "Namespace": "System", @@ -237772,6 +246234,51 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -237849,13 +246356,13 @@ }, { "VerbName": "Remove", - "NounName": "AzNetworkManagerScopeConnection", - "Name": "Remove-AzNetworkManagerScopeConnection", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerScopeConnectionCommand", + "NounName": "AzNetworkManagerSecurityUserConfiguration", + "Name": "Remove-AzNetworkManagerSecurityUserConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerSecurityUserConfigurationCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByName", "OutputTypes": [ { "Type": { @@ -237899,6 +246406,45 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "Force", "Type": { @@ -237949,7 +246495,7 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { @@ -237999,6 +246545,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "Force", @@ -238071,128 +246632,131 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Remove", - "NounName": "AzNetworkManagerSecurityAdminConfiguration", - "Name": "Remove-AzNetworkManagerSecurityAdminConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerSecurityAdminConfigurationCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "NetworkManagerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ForceDelete", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByInputObject", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", "AliasList": [ - "ResourceName" + "AzContext", + "AzureRmContext", + "AzureCredential" ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -238203,38 +246767,99 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NetworkManagerName", + "Name": "ForceDelete", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "ForceDelete", @@ -238327,13 +246952,13 @@ }, { "VerbName": "Remove", - "NounName": "AzNetworkManagerSecurityAdminRule", - "Name": "Remove-AzNetworkManagerSecurityAdminRule", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerSecurityAdminRuleCommand", + "NounName": "AzNetworkManagerSecurityUserRule", + "Name": "Remove-AzNetworkManagerSecurityUserRule", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerSecurityUserRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByName", "OutputTypes": [ { "Type": { @@ -238369,7 +246994,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "SecurityAdminConfigurationName", + "Name": "SecurityUserConfigurationName", "AliasList": [ "ConfigName" ], @@ -238398,6 +247023,48 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "Sources": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "Destinations": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "SourcePortRanges": "System.Collections.Generic.IList`1[System.String]", + "DestinationPortRanges": "System.Collections.Generic.IList`1[System.String]", + "Protocol": "System.String", + "Name": "System.String", + "SystemDataText": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Description": "System.String", + "ResourceGroupName": "System.String", + "DestinationsText": "System.String", + "SourcePortRangesText": "System.String", + "Etag": "System.String", + "SourcesText": "System.String", + "RuleCollectionName": "System.String", + "SecurityUserConfigurationName": "System.String", + "NetworkManagerName": "System.String", + "Direction": "System.String", + "DestinationPortRangesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "ForceDelete", "Type": { @@ -238457,7 +247124,7 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { @@ -238494,7 +247161,7 @@ }, { "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", + "Name": "SecurityUserConfigurationName", "AliasList": [ "ConfigName" ], @@ -238627,18 +247294,345 @@ "ValueFromPipelineByPropertyName": false } ] + }, + { + "Name": "ByInputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "Sources": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "Destinations": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "SourcePortRanges": "System.Collections.Generic.IList`1[System.String]", + "DestinationPortRanges": "System.Collections.Generic.IList`1[System.String]", + "Protocol": "System.String", + "Name": "System.String", + "SystemDataText": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Description": "System.String", + "ResourceGroupName": "System.String", + "DestinationsText": "System.String", + "SourcePortRangesText": "System.String", + "Etag": "System.String", + "SourcesText": "System.String", + "RuleCollectionName": "System.String", + "SecurityUserConfigurationName": "System.String", + "NetworkManagerName": "System.String", + "Direction": "System.String", + "DestinationPortRangesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] } ] }, { "VerbName": "Remove", - "NounName": "AzNetworkManagerSecurityAdminRuleCollection", - "Name": "Remove-AzNetworkManagerSecurityAdminRuleCollection", - "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerSecurityAdminRuleCollectionCommand", + "NounName": "AzNetworkManagerSecurityUserRuleCollection", + "Name": "Remove-AzNetworkManagerSecurityUserRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.RemoveAzNetworkManagerSecurityUserRuleCollectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByName", "OutputTypes": [ { "Type": { @@ -238665,7 +247659,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "SecurityAdminConfigurationName", + "Name": "SecurityUserConfigurationName", "AliasList": [ "ConfigName" ], @@ -238694,6 +247688,39 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem]", + "NetworkManagerName": "System.String", + "SecurityUserConfigurationName": "System.String", + "AppliesToGroupText": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "ForceDelete", "Type": { @@ -238753,7 +247780,7 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { @@ -238775,7 +247802,7 @@ }, { "ParameterMetadata": { - "Name": "SecurityAdminConfigurationName", + "Name": "SecurityUserConfigurationName", "AliasList": [ "ConfigName" ], @@ -238908,6 +247935,324 @@ "ValueFromPipelineByPropertyName": false } ] + }, + { + "Name": "ByInputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem]", + "NetworkManagerName": "System.String", + "SecurityUserConfigurationName": "System.String", + "AppliesToGroupText": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ForceDelete", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] } ] }, @@ -239398,7 +248743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -239676,7 +249021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -240069,7 +249414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -240158,7 +249503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -240230,7 +249575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -240348,7 +249693,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", @@ -240636,7 +249981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", @@ -240849,7 +250194,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -240944,7 +250289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -241283,7 +250628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -241340,7 +250685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -241417,7 +250762,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -241802,7 +251147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -241971,7 +251316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -242028,7 +251373,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", @@ -242118,7 +251463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -242503,7 +251848,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", @@ -242685,7 +252030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -242789,7 +252134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -243213,7 +252558,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -243399,7 +252744,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -245081,7 +254426,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", @@ -245369,7 +254714,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", @@ -245569,7 +254914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -245636,7 +254981,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -245697,7 +255042,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -245961,7 +255306,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Communities": "System.Collections.Generic.List`1[System.String]", "Access": "System.String", @@ -246020,7 +255365,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -246095,7 +255440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -246231,7 +255576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -246276,7 +255621,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]", "AssociatedInboundConnections": "System.Collections.Generic.List`1[System.String]", @@ -246514,7 +255859,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -246641,7 +255986,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]", "AssociatedInboundConnections": "System.Collections.Generic.List`1[System.String]", @@ -246955,7 +256300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]", @@ -247155,7 +256500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]", @@ -247440,7 +256785,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]", @@ -247541,7 +256886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -247720,7 +257065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -248203,7 +257548,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -248248,7 +257593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -248482,7 +257827,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -248609,7 +257954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -248885,7 +258230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -248935,7 +258280,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -248987,7 +258332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -249097,7 +258442,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -249292,7 +258637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -249612,7 +258957,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -249848,7 +259193,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -250008,7 +259353,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -250092,7 +259437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -250110,7 +259455,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -250176,7 +259521,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -250253,7 +259598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -250315,7 +259660,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -250339,7 +259684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -250401,7 +259746,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -250523,7 +259868,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -250569,7 +259914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -250811,7 +260156,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -250939,7 +260284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -251273,7 +260618,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", "AddressPrefix": "System.String", @@ -251558,7 +260903,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", "AddressPrefix": "System.String", @@ -251790,7 +261135,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -252092,7 +261437,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -252351,7 +261696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -252396,7 +261741,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerIp": "System.String", @@ -252631,7 +261976,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -252758,7 +262103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerIp": "System.String", @@ -253088,7 +262433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -253133,7 +262478,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -253368,7 +262713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -253495,7 +262840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -253822,7 +263167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -254038,7 +263383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -254901,7 +264246,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -254987,7 +264332,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -255066,7 +264411,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -255163,7 +264508,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -255249,7 +264594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -255337,7 +264682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -255512,7 +264857,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", @@ -255774,7 +265119,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", @@ -256152,7 +265497,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -256167,15 +265512,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -256183,8 +265528,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" }, "Methods": [ @@ -256237,7 +265583,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -256252,15 +265598,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -256268,8 +265614,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -256321,7 +265668,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -256336,15 +265683,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -256352,8 +265699,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -256448,7 +265796,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -256725,7 +266073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -256951,7 +266299,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -257149,7 +266497,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -257432,7 +266780,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -257531,7 +266879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -257710,7 +267058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -257976,7 +267324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -258154,7 +267502,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -258423,7 +267771,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -258572,7 +267920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -259167,7 +268515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -259438,7 +268786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -259642,7 +268990,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -259825,7 +269173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -260131,7 +269479,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -260397,7 +269745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -260596,7 +269944,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -260793,7 +270141,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -261115,7 +270463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -261400,7 +270748,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -261616,7 +270964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -261799,7 +271147,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -262042,7 +271390,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -262155,7 +271503,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -262380,7 +271728,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -262527,7 +271875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -262618,7 +271966,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -262778,7 +272126,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -262976,7 +272324,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -263062,7 +272410,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -263159,7 +272507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -263321,7 +272669,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -263499,7 +272847,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -263898,7 +273246,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -263986,7 +273334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -264167,7 +273515,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -264469,7 +273817,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "UsePolicyBasedTrafficSelectors": "System.Boolean", @@ -264666,7 +274014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "UsePolicyBasedTrafficSelectors": "System.Boolean", @@ -264866,7 +274214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -264952,7 +274300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -265055,7 +274403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -265182,7 +274530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceRestartOperationStatusResponse", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceRestartOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceRestartOperationStatusResponse, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Error": "Microsoft.Azure.Commands.Network.Models.ApiError", "InstancesRestarted": "System.Collections.Generic.IList`1[System.String]", @@ -265553,7 +274901,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -265666,7 +275014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -265781,7 +275129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -265920,7 +275268,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -266033,7 +275381,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -266157,7 +275505,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -266311,7 +275659,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -266424,7 +275772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -266551,7 +275899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -266708,7 +276056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -266821,7 +276169,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -266956,7 +276304,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -267127,7 +276475,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -267240,7 +276588,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -267373,7 +276721,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -267395,7 +276743,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -267422,7 +276770,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" }, "ValidateNotNullOrEmpty": true @@ -267432,7 +276780,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": true @@ -267504,7 +276852,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -267673,7 +277021,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -267707,7 +277055,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -267740,7 +277088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" }, "ValidateNotNullOrEmpty": true @@ -267756,7 +277104,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": true @@ -267873,7 +277221,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -267986,7 +277334,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -268115,7 +277463,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -268142,7 +277490,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": true @@ -268196,7 +277544,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -268361,7 +277709,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -268394,7 +277742,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" }, "ValidateNotNullOrEmpty": true @@ -268478,7 +277826,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -268531,7 +277879,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -268599,7 +277947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -268697,7 +278045,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -268773,7 +278121,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -268848,7 +278196,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -268953,7 +278301,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -268999,7 +278347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -269123,7 +278471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -269277,7 +278625,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -269353,7 +278701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -269387,7 +278735,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule" }, "ValidateNotNullOrEmpty": false @@ -269397,7 +278745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", "RequestBodyCheck": "System.Boolean", @@ -269420,7 +278768,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -269498,7 +278846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule" }, "ValidateNotNullOrEmpty": false @@ -269514,7 +278862,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", "RequestBodyCheck": "System.Boolean", @@ -269543,7 +278891,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -269608,7 +278956,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -269639,7 +278987,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule" }, "ValidateNotNullOrEmpty": false @@ -269655,7 +279003,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", "RequestBodyCheck": "System.Boolean", @@ -269684,7 +279032,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -269764,7 +279112,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule" }, "ValidateNotNullOrEmpty": false @@ -269780,7 +279128,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", "RequestBodyCheck": "System.Boolean", @@ -269809,7 +279157,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -269874,7 +279222,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule" }, "ValidateNotNullOrEmpty": false @@ -269890,7 +279238,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", "RequestBodyCheck": "System.Boolean", @@ -269919,7 +279267,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -269991,7 +279339,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -270104,7 +279452,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -270211,7 +279559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -270262,7 +279610,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -270302,7 +279650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -270355,7 +279703,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -270562,7 +279910,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -270709,7 +280057,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -270757,7 +280105,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -270803,7 +280151,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -270827,7 +280175,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -270966,7 +280314,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -271079,7 +280427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -271203,7 +280551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -271357,7 +280705,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -271470,7 +280818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -271568,7 +280916,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -271601,7 +280949,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -271636,7 +280984,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -271661,7 +281009,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -271690,7 +281038,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -271755,7 +281103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true @@ -271791,7 +281139,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -271961,7 +281309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true @@ -272083,7 +281431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -272253,7 +281601,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true @@ -272300,7 +281648,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -272330,7 +281678,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -272353,7 +281701,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagedRules": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", "PolicySettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", @@ -272384,7 +281732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -272410,7 +281758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -272436,7 +281784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -272606,7 +281954,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" }, "ValidateNotNullOrEmpty": true @@ -272660,7 +282008,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -272706,7 +282054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -272781,7 +282129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -272886,7 +282234,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -272999,7 +282347,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -273117,7 +282465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -273259,7 +282607,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -273372,7 +282720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -273470,7 +282818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -273538,7 +282886,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -273685,7 +283033,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -273817,7 +283165,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -273865,7 +283213,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -274004,7 +283352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -274117,7 +283465,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -274215,7 +283563,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -274248,7 +283596,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -274274,7 +283622,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -274303,7 +283651,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -274372,7 +283720,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -274599,7 +283947,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -274766,7 +284114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -274796,7 +284144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -274819,7 +284167,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -274845,7 +284193,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -274871,7 +284219,419 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "TCP", + "TLS" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HostNames", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzApplicationGatewayPrivateLinkConfiguration", + "Name": "Set-AzApplicationGatewayPrivateLinkConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "IpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -274968,38 +284728,19 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "IpConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration" }, - "ValidateSet": [ - "TCP", - "TLS" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "HostNames", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -275033,9 +284774,9 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewayPrivateLinkConfiguration", - "Name": "Set-AzApplicationGatewayPrivateLinkConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayPrivateLinkConfigurationCommand", + "NounName": "AzApplicationGatewayProbeConfig", + "Name": "Set-AzApplicationGatewayProbeConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -275045,7 +284786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -275158,7 +284899,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -275243,12 +284984,107 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "IpConfiguration", + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Http", + "Https", + "TCP", + "TLS" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HostName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Path", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Interval", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Timeout", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "UnhealthyThreshold", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PickHostNameFromBackendHttpSettings", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MinServers", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 0, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Port", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 65535, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Match", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "StatusCodes": "System.Collections.Generic.List`1[System.String]", + "Body": "System.String", + "StatusCodesText": "System.String" + } }, "ValidateNotNullOrEmpty": true }, @@ -275283,7 +285119,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -275380,19 +285216,168 @@ }, { "ParameterMetadata": { - "Name": "IpConfiguration", + "Name": "Protocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Http", + "Https", + "TCP", + "TLS" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HostName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Path", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Interval", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Timeout", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UnhealthyThreshold", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PickHostNameFromBackendHttpSettings", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MinServers", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 0, + "ValidateRangeMax": 2147483647, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Port", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 65535, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Match", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "StatusCodes": "System.Collections.Generic.List`1[System.String]", + "Body": "System.String", + "StatusCodesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -275426,9 +285411,9 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewayProbeConfig", - "Name": "Set-AzApplicationGatewayProbeConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayProbeConfigCommand", + "NounName": "AzApplicationGatewayRedirectConfiguration", + "Name": "Set-AzApplicationGatewayRedirectConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -275438,7 +285423,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -275551,7 +285536,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -275636,31 +285621,22 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Protocol", + "Name": "RedirectType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Http", - "Https", - "TCP", - "TLS" + "Permanent", + "Found", + "SeeOther", + "Temporary" ], "ValidateNotNullOrEmpty": true }, { - "Name": "HostName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Path", + "Name": "TargetListenerID", "Type": { "Namespace": "System", "Name": "System.String", @@ -275669,77 +285645,69 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Interval", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Timeout", + "Name": "TargetListener", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequireServerNameIndication": "System.Boolean", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Type": "System.String", + "Etag": "System.String", + "HostName": "System.String", + "Protocol": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "FirewallPolicyText": "System.String", + "Name": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, { - "Name": "UnhealthyThreshold", + "Name": "TargetUrl", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "PickHostNameFromBackendHttpSettings", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MinServers", + "Name": "IncludePath", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateRangeMin": 0, - "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, { - "Name": "Port", + "Name": "IncludeQueryString", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 65535, "ValidateNotNullOrEmpty": false }, - { - "Name": "Match", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "StatusCodes": "System.Collections.Generic.List`1[System.String]", - "Body": "System.String", - "StatusCodesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "DefaultProfile", "AliasList": [ @@ -275757,21 +285725,655 @@ "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RedirectType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Permanent", + "Found", + "SeeOther", + "Temporary" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IncludePath", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IncludeQueryString", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "TargetListenerID", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RedirectType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Permanent", + "Found", + "SeeOther", + "Temporary" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IncludePath", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IncludeQueryString", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResource", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "TargetListener", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequireServerNameIndication": "System.Boolean", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "HostNames": "System.Collections.Generic.List`1[System.String]", + "ProvisioningState": "System.String", + "Type": "System.String", + "Etag": "System.String", + "HostName": "System.String", + "Protocol": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", + "FirewallPolicyText": "System.String", + "Name": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RedirectType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Permanent", + "Found", + "SeeOther", + "Temporary" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IncludePath", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IncludeQueryString", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, { - "Name": "__AllParameterSets", + "Name": "SetByURL", "Parameters": [ + { + "ParameterMetadata": { + "Name": "TargetUrl", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -275868,17 +286470,17 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "RedirectType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Http", - "Https", - "TCP", - "TLS" + "Permanent", + "Found", + "SeeOther", + "Temporary" ], "ValidateNotNullOrEmpty": true }, @@ -275889,104 +286491,15 @@ }, { "ParameterMetadata": { - "Name": "HostName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Path", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Interval", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Timeout", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UnhealthyThreshold", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PickHostNameFromBackendHttpSettings", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MinServers", + "Name": "IncludePath", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateRangeMin": 0, - "ValidateRangeMax": 2147483647, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -275996,14 +286509,15 @@ }, { "ParameterMetadata": { - "Name": "Port", + "Name": "IncludeQueryString", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 65535, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -276011,26 +286525,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Match", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "StatusCodes": "System.Collections.Generic.List`1[System.String]", - "Body": "System.String", - "StatusCodesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -276063,9 +286557,9 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewayRedirectConfiguration", - "Name": "Set-AzApplicationGatewayRedirectConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRedirectConfigurationCommand", + "NounName": "AzApplicationGatewayRequestRoutingRule", + "Name": "Set-AzApplicationGatewayRequestRoutingRule", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -276075,7 +286569,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -276188,7 +286682,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -276273,22 +286767,34 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RedirectType", + "Name": "RuleType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Permanent", - "Found", - "SeeOther", - "Temporary" + "Basic", + "PathBasedRouting" ], "ValidateNotNullOrEmpty": true }, { - "Name": "TargetListenerID", + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendHttpSettingsId", "Type": { "Namespace": "System", "Name": "System.String", @@ -276297,11 +286803,51 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "TargetListener", + "Name": "BackendHttpSettings", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HttpListenerId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "HttpListener", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -276328,7 +286874,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "TargetUrl", + "Name": "BackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String", @@ -276337,28 +286883,121 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "IncludePath", + "Name": "BackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "UrlPathMapId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "IncludeQueryString", + "Name": "UrlPathMap", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultRewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultRedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", + "Type": "System.String", + "ProvisioningState": "System.String", + "DefaultBackendAddressPoolText": "System.String", + "DefaultBackendHttpSettingsText": "System.String", + "DefaultRedirectConfigurationText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RewriteRuleSetId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RewriteRuleSet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RedirectConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RedirectConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "IncludePath": "System.Nullable`1[System.Boolean]", + "IncludeQueryString": "System.Nullable`1[System.Boolean]", + "RedirectType": "System.String", + "TargetUrl": "System.String", + "Type": "System.String", + "TargetListenerText": "System.String", + "RequestRoutingRulesText": "System.String", + "UrlPathMapsText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -276391,7 +287030,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -276488,17 +287127,15 @@ }, { "ParameterMetadata": { - "Name": "RedirectType", + "Name": "RuleType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Permanent", - "Found", - "SeeOther", - "Temporary" + "Basic", + "PathBasedRouting" ], "ValidateNotNullOrEmpty": true }, @@ -276509,33 +287146,17 @@ }, { "ParameterMetadata": { - "Name": "IncludePath", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IncludeQueryString", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Boolean" + "System.Int32" ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -276576,7 +287197,82 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "TargetListenerID", + "Name": "BackendHttpSettingsId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpListenerId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "BackendAddressPoolId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UrlPathMapId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RewriteRuleSetId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RedirectConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -276595,7 +287291,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -276692,17 +287388,15 @@ }, { "ParameterMetadata": { - "Name": "RedirectType", + "Name": "RuleType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Permanent", - "Found", - "SeeOther", - "Temporary" + "Basic", + "PathBasedRouting" ], "ValidateNotNullOrEmpty": true }, @@ -276713,33 +287407,17 @@ }, { "ParameterMetadata": { - "Name": "IncludePath", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IncludeQueryString", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Boolean" + "System.Int32" ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -276780,11 +287458,48 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "TargetListener", + "Name": "BackendHttpSettings", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "HttpListener", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -276815,13 +287530,127 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "BackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UrlPathMap", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultRewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "DefaultRedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", + "Type": "System.String", + "ProvisioningState": "System.String", + "DefaultBackendAddressPoolText": "System.String", + "DefaultBackendHttpSettingsText": "System.String", + "DefaultRedirectConfigurationText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RewriteRuleSet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RedirectConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "IncludePath": "System.Nullable`1[System.Boolean]", + "IncludeQueryString": "System.Nullable`1[System.Boolean]", + "RedirectType": "System.String", + "TargetUrl": "System.String", + "Type": "System.String", + "TargetListenerText": "System.String", + "RequestRoutingRulesText": "System.String", + "UrlPathMapsText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -276918,17 +287747,15 @@ }, { "ParameterMetadata": { - "Name": "RedirectType", + "Name": "RuleType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Permanent", - "Found", - "SeeOther", - "Temporary" + "Basic", + "PathBasedRouting" ], "ValidateNotNullOrEmpty": true }, @@ -276939,33 +287766,17 @@ }, { "ParameterMetadata": { - "Name": "IncludePath", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IncludeQueryString", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Boolean" + "System.Int32" ] }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -277000,32 +287811,264 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzApplicationGatewayRewriteRuleSet", + "Name": "Set-AzApplicationGatewayRewriteRuleSet", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "SetByURL", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RewriteRule", + "Type": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule" + ] + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "TargetUrl", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -277122,57 +288165,18 @@ }, { "ParameterMetadata": { - "Name": "RedirectType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Permanent", - "Found", - "SeeOther", - "Temporary" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IncludePath", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "IncludeQueryString", + "Name": "RewriteRule", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "System.Boolean" + "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule" ] }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -277209,19 +288213,19 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewayRequestRoutingRule", - "Name": "Set-AzApplicationGatewayRequestRoutingRule", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRequestRoutingRuleCommand", + "NounName": "AzApplicationGatewayRoutingRule", + "Name": "Set-AzApplicationGatewayRoutingRule", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRoutingRuleCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -277334,7 +288338,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -277446,7 +288450,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "BackendHttpSettingsId", + "Name": "BackendSettingsId", "Type": { "Namespace": "System", "Name": "System.String", @@ -277455,38 +288459,31 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "BackendHttpSettings", + "Name": "BackendSettings", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", - "RequestTimeout": "System.Int32", + "Timeout": "System.Int32", "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", "Protocol": "System.String", "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", "ProvisioningState": "System.String", "Type": "System.String", - "ConnectionDrainingText": "System.String", "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", "Name": "System.String", - "CookieBasedAffinity": "System.String", + "Etag": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": true }, { - "Name": "HttpListenerId", + "Name": "ListenerId", "Type": { "Namespace": "System", "Name": "System.String", @@ -277495,31 +288492,26 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "HttpListener", + "Name": "Listener", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequireServerNameIndication": "System.Boolean", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "HostNames": "System.Collections.Generic.List`1[System.String]", + "Protocol": "System.String", "ProvisioningState": "System.String", "Type": "System.String", - "Etag": "System.String", - "HostName": "System.String", - "Protocol": "System.String", "FrontendIpConfigurationText": "System.String", "FrontendPortText": "System.String", "SslCertificateText": "System.String", "SslProfileText": "System.String", - "FirewallPolicyText": "System.String", "Name": "System.String", + "Etag": "System.String", "Id": "System.String" } }, @@ -277539,7 +288531,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -277554,103 +288546,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "UrlPathMapId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "UrlPathMap", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultRewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultRedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", - "Type": "System.String", - "ProvisioningState": "System.String", - "DefaultBackendAddressPoolText": "System.String", - "DefaultBackendHttpSettingsText": "System.String", - "DefaultRedirectConfigurationText": "System.String", - "PathRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RewriteRuleSetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RewriteRuleSet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RedirectConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RedirectConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "IncludePath": "System.Nullable`1[System.Boolean]", - "IncludeQueryString": "System.Nullable`1[System.Boolean]", - "RedirectType": "System.String", - "TargetUrl": "System.String", - "Type": "System.String", - "TargetListenerText": "System.String", - "RequestRoutingRulesText": "System.String", - "UrlPathMapsText": "System.String", - "PathRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "DefaultProfile", "AliasList": [ @@ -277682,7 +288577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -277811,7 +288706,7 @@ "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -277849,7 +288744,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "BackendHttpSettingsId", + "Name": "BackendSettingsId", "Type": { "Namespace": "System", "Name": "System.String", @@ -277864,7 +288759,7 @@ }, { "ParameterMetadata": { - "Name": "HttpListenerId", + "Name": "ListenerId", "Type": { "Namespace": "System", "Name": "System.String", @@ -277892,58 +288787,13 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "UrlPathMapId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RewriteRuleSetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RedirectConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -278072,7 +288922,7 @@ "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -278110,31 +288960,24 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "BackendHttpSettings", + "Name": "BackendSettings", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", - "RequestTimeout": "System.Int32", + "Timeout": "System.Int32", "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", "Protocol": "System.String", "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", "ProvisioningState": "System.String", "Type": "System.String", - "ConnectionDrainingText": "System.String", "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", "Name": "System.String", - "CookieBasedAffinity": "System.String", + "Etag": "System.String", "Id": "System.String" } }, @@ -278147,110 +288990,24 @@ }, { "ParameterMetadata": { - "Name": "HttpListener", + "Name": "Listener", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequireServerNameIndication": "System.Boolean", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "HostNames": "System.Collections.Generic.List`1[System.String]", + "Protocol": "System.String", "ProvisioningState": "System.String", "Type": "System.String", - "Etag": "System.String", - "HostName": "System.String", - "Protocol": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", - "FirewallPolicyText": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UrlPathMap", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultRewriteRuleSet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "DefaultRedirectConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", - "Type": "System.String", - "ProvisioningState": "System.String", - "DefaultBackendAddressPoolText": "System.String", - "DefaultBackendHttpSettingsText": "System.String", - "DefaultRedirectConfigurationText": "System.String", - "PathRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RewriteRuleSet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", + "FrontendIpConfigurationText": "System.String", + "FrontendPortText": "System.String", + "SslCertificateText": "System.String", + "SslProfileText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -278265,25 +289022,18 @@ }, { "ParameterMetadata": { - "Name": "RedirectConfiguration", + "Name": "BackendAddressPool", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "IncludePath": "System.Nullable`1[System.Boolean]", - "IncludeQueryString": "System.Nullable`1[System.Boolean]", - "RedirectType": "System.String", - "TargetUrl": "System.String", + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", "Type": "System.String", - "TargetListenerText": "System.String", - "RequestRoutingRulesText": "System.String", - "UrlPathMapsText": "System.String", - "PathRulesText": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -278302,7 +289052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -278431,7 +289181,7 @@ "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -278468,9 +289218,9 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewayRewriteRuleSet", - "Name": "Set-AzApplicationGatewayRewriteRuleSet", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRewriteRuleSetCommand", + "NounName": "AzApplicationGatewaySku", + "Name": "Set-AzApplicationGatewaySku", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -278480,7 +289230,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -278593,7 +289343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -278675,16 +289425,42 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Standard_Small", + "Standard_Medium", + "Standard_Large", + "WAF_Medium", + "WAF_Large", + "Standard_v2", + "WAF_v2", + "Basic" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "RewriteRule", + "Name": "Tier", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Standard", + "WAF", + "Standard_v2", + "WAF_v2", + "Basic" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Capacity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule" + "System.Int32" ] }, "ValidateNotNullOrEmpty": true @@ -278720,7 +289496,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -278808,6 +289584,16 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Standard_Small", + "Standard_Medium", + "Standard_Large", + "WAF_Medium", + "WAF_Large", + "Standard_v2", + "WAF_v2", + "Basic" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -278817,18 +289603,40 @@ }, { "ParameterMetadata": { - "Name": "RewriteRule", + "Name": "Tier", "Type": { - "Namespace": "System.Collections.Generic", - "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Standard", + "WAF", + "Standard_v2", + "WAF_v2", + "Basic" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Capacity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ - "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule" + "System.Int32" ] }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -278865,19 +289673,19 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewayRoutingRule", - "Name": "Set-AzApplicationGatewayRoutingRule", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayRoutingRuleCommand", + "NounName": "AzApplicationGatewaySslCertificate", + "Name": "Set-AzApplicationGatewaySslCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -278990,7 +289798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -279075,67 +289883,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RuleType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Basic", - "PathBasedRouting" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendSettingsId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "BackendSettings", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "Timeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ProbeText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ListenerId", + "Name": "CertificateFile", "Type": { "Namespace": "System", "Name": "System.String", @@ -279144,33 +289892,16 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Listener", + "Name": "Password", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "HostNames": "System.Collections.Generic.List`1[System.String]", - "Protocol": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "BackendAddressPoolId", + "Name": "KeyVaultSecretId", "Type": { "Namespace": "System", "Name": "System.String", @@ -279178,26 +289909,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "BackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "DefaultProfile", "AliasList": [ @@ -279229,7 +289940,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -279326,39 +290037,45 @@ }, { "ParameterMetadata": { - "Name": "RuleType", + "Name": "CertificateFile", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Basic", - "PathBasedRouting" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "Password", + "Type": { + "Namespace": "System.Security", + "Name": "System.Security.SecureString", + "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "KeyVaultSecretId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -279390,62 +290107,307 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzApplicationGatewaySslPolicy", + "Name": "Set-AzApplicationGatewaySslPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "BackendSettingsId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "ListenerId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DisabledSslProtocols", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PolicyType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Predefined", + "Custom", + "CustomV2" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CipherSuite", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MinProtocolVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -279527,76 +290489,69 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DisabledSslProtocols", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, + "ValidateSet": [ + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" + ], "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleType", + "Name": "PolicyType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Basic", - "PathBasedRouting" + "Predefined", + "Custom", + "CustomV2" ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "PolicyName", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "CipherSuite", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -279604,36 +290559,22 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResource", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "BackendSettings", + "Name": "MinProtocolVersion", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "Timeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ProbeText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -279642,69 +290583,318 @@ }, { "ParameterMetadata": { - "Name": "Listener", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslCertificate": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "SslProfile": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "HostNames": "System.Collections.Generic.List`1[System.String]", - "Protocol": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "FrontendIpConfigurationText": "System.String", - "FrontendPortText": "System.String", - "SslCertificateText": "System.String", - "SslProfileText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzApplicationGatewaySslProfile", + "Name": "Set-AzApplicationGatewaySslProfile", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfileCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "BackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": true + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SslPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", + "CipherSuites": "System.Collections.Generic.List`1[System.String]", + "PolicyType": "System.String", + "PolicyName": "System.String", + "MinProtocolVersion": "System.String", + "DisabledSslProtocolsText": "System.String", + "CipherSuitesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ClientAuthConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", + "VerifyClientRevocation": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "TrustedClientCertificates", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "ApplicationGateway", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -279801,39 +290991,380 @@ }, { "ParameterMetadata": { - "Name": "RuleType", + "Name": "SslPolicy", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", + "CipherSuites": "System.Collections.Generic.List`1[System.String]", + "PolicyType": "System.String", + "PolicyName": "System.String", + "MinProtocolVersion": "System.String", + "DisabledSslProtocolsText": "System.String", + "CipherSuitesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ClientAuthConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", + "VerifyClientRevocation": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TrustedClientCertificates", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzApplicationGatewaySslProfilePolicy", + "Name": "Set-AzApplicationGatewaySslProfilePolicy", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfilePolicyCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "SslProfile", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DisabledSslProtocols", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" + ], + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PolicyType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Predefined", + "Custom", + "CustomV2" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "CipherSuite", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "MinProtocolVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "SslProfile", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "SslPolicyText": "System.String", + "ClientAuthConfigurationText": "System.String", + "TrustedClientCertificatesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisabledSslProtocols", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateSet": [ + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" + ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PolicyType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Basic", - "PathBasedRouting" + "Predefined", + "Custom", + "CustomV2" ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "PolicyName", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 20000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "CipherSuite", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "MinProtocolVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "TLSv1_0", + "TLSv1_1", + "TLSv1_2", + "TLSv1_3" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -279870,9 +291401,9 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewaySku", - "Name": "Set-AzApplicationGatewaySku", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySkuCommand", + "NounName": "AzApplicationGatewayTrustedClientCertificate", + "Name": "Set-AzApplicationGatewayTrustedClientCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayTrustedClientCertificateCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -279882,7 +291413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -279995,7 +291526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -280077,44 +291608,15 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Standard_Small", - "Standard_Medium", - "Standard_Large", - "WAF_Medium", - "WAF_Large", - "Standard_v2", - "WAF_v2", - "Basic" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "Tier", + "Name": "CertificateFile", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Standard", - "WAF", - "Standard_v2", - "WAF_v2", - "Basic" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Capacity", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, "ValidateNotNullOrEmpty": true }, { @@ -280148,7 +291650,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -280236,16 +291738,6 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Standard_Small", - "Standard_Medium", - "Standard_Large", - "WAF_Medium", - "WAF_Large", - "Standard_v2", - "WAF_v2", - "Basic" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -280255,19 +291747,12 @@ }, { "ParameterMetadata": { - "Name": "Tier", + "Name": "CertificateFile", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Standard", - "WAF", - "Standard_v2", - "WAF_v2", - "Basic" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -280275,24 +291760,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Capacity", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -280325,10 +291792,10 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewaySslCertificate", - "Name": "Set-AzApplicationGatewaySslCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslCertificateCommand", - "SupportsShouldProcess": false, + "NounName": "AzApplicationGatewayTrustedRootCertificate", + "Name": "Set-AzApplicationGatewayTrustedRootCertificate", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayTrustedRootCertificateCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -280337,7 +291804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -280450,7 +291917,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -280543,24 +292010,6 @@ }, "ValidateNotNullOrEmpty": true }, - { - "Name": "Password", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "KeyVaultSecretId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "DefaultProfile", "AliasList": [ @@ -280592,7 +292041,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -280675,51 +292124,21 @@ { "ParameterMetadata": { "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CertificateFile", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Password", - "Type": { - "Namespace": "System.Security", - "Name": "System.Security.SecureString", - "AssemblyQualifiedName": "System.Security.SecureString, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "KeyVaultSecretId", + "Name": "CertificateFile", "Type": { "Namespace": "System", "Name": "System.String", @@ -280727,7 +292146,7 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -280764,19 +292183,19 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewaySslPolicy", - "Name": "Set-AzApplicationGatewaySslPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslPolicyCommand", - "SupportsShouldProcess": true, + "NounName": "AzApplicationGatewayUrlPathMapConfig", + "Name": "Set-AzApplicationGatewayUrlPathMapConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "BackendSetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -280889,7 +292308,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -280965,68 +292384,155 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "DisabledSslProtocols", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "PolicyType", + "Name": "PathRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultBackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Predefined", - "Custom", - "CustomV2" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "PolicyName", + "Name": "DefaultBackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultBackendHttpSettingsId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultBackendHttpSettings", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultRewriteRuleSet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, "ValidateNotNullOrEmpty": false }, { - "Name": "CipherSuite", + "Name": "DefaultRewriteRuleSetId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "MinProtocolVersion", + "Name": "DefaultRedirectConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultRedirectConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "IncludePath": "System.Nullable`1[System.Boolean]", + "IncludeQueryString": "System.Nullable`1[System.Boolean]", + "RedirectType": "System.String", + "TargetUrl": "System.String", + "Type": "System.String", + "TargetListenerText": "System.String", + "RequestRoutingRulesText": "System.String", + "UrlPathMapsText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -281059,7 +292565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -281141,39 +292647,104 @@ }, { "ParameterMetadata": { - "Name": "DisabledSslProtocols", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PathRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" }, - "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" - ], "ValidateNotNullOrEmpty": true }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BackendSetByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultBackendAddressPoolId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PolicyType", + "Name": "DefaultBackendHttpSettingsId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultRewriteRuleSetId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Predefined", - "Custom", - "CustomV2" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -281183,27 +292754,403 @@ }, { "ParameterMetadata": { - "Name": "PolicyName", + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PathRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "BackendSetByResource", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultBackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "ProvisioningState": "System.String", + "Type": "System.String", + "BackendAddressesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CipherSuite", + "Name": "DefaultBackendHttpSettings", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", + "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "RequestTimeout": "System.Int32", + "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", + "Protocol": "System.String", + "HostName": "System.String", + "Etag": "System.String", + "AffinityCookieName": "System.String", + "Path": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "ConnectionDrainingText": "System.String", + "ProbeText": "System.String", + "AuthenticationCertificatesText": "System.String", + "Name": "System.String", + "CookieBasedAffinity": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultRewriteRuleSet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PathRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "RedirectSetByResource", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultRewriteRuleSet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", + "ProvisioningState": "System.String", + "Type": "System.String", + "RewriteRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -281214,24 +293161,331 @@ }, { "ParameterMetadata": { - "Name": "MinProtocolVersion", + "Name": "DefaultRedirectConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "IncludePath": "System.Nullable`1[System.Boolean]", + "IncludeQueryString": "System.Nullable`1[System.Boolean]", + "RedirectType": "System.String", + "TargetUrl": "System.String", + "Type": "System.String", + "TargetListenerText": "System.String", + "RequestRoutingRulesText": "System.String", + "UrlPathMapsText": "System.String", + "PathRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PathRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "RedirectSetByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "DefaultRewriteRuleSetId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultRedirectConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ApplicationGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", + "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", + "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", + "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", + "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", + "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", + "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", + "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", + "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", + "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", + "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", + "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", + "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", + "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", + "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", + "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", + "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", + "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", + "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", + "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", + "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", + "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", + "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", + "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", + "EnableFips": "System.Nullable`1[System.Boolean]", + "EnableHttp2": "System.Nullable`1[System.Boolean]", + "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", + "ProbesText": "System.String", + "UrlPathMapsText": "System.String", + "IdentityText": "System.String", + "SslPolicyText": "System.String", + "FirewallPolicyText": "System.String", + "PrivateLinkConfigurationsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "RoutingRulesText": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "PrivateLinkEndpointConnectionsText": "System.String", + "RequestRoutingRulesText": "System.String", + "OperationalState": "System.String", + "ListenersText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "DefaultPredefinedSslPolicy": "System.String", + "GatewayIpConfigurationsText": "System.String", + "TrustedClientCertificatesText": "System.String", + "AuthenticationCertificatesText": "System.String", + "RewriteRuleSetsText": "System.String", + "SslCertificatesText": "System.String", + "FrontendPortsText": "System.String", + "BackendAddressPoolsText": "System.String", + "BackendHttpSettingsCollectionText": "System.String", + "BackendSettingsCollectionText": "System.String", + "SslProfilesText": "System.String", + "HttpListenersText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PathRules", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -281265,10 +293519,10 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewaySslProfile", - "Name": "Set-AzApplicationGatewaySslProfile", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfileCommand", - "SupportsShouldProcess": false, + "NounName": "AzApplicationGatewayWebApplicationFirewallConfiguration", + "Name": "Set-AzApplicationGatewayWebApplicationFirewallConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "__AllParameterSets", @@ -281277,7 +293531,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -281390,7 +293644,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -281466,52 +293720,95 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Name", + "Name": "Enabled", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "FirewallMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Detection", + "Prevention" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "SslPolicy", + "Name": "RuleSetType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "OWASP" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RuleSetVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DisabledRuleGroup", + "AliasList": [ + "DisabledRuleGroups" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", - "CipherSuites": "System.Collections.Generic.List`1[System.String]", - "PolicyType": "System.String", - "PolicyName": "System.String", - "MinProtocolVersion": "System.String", - "DisabledSslProtocolsText": "System.String", - "CipherSuitesText": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RequestBodyCheck", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "MaxRequestBodySizeInKb", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "ClientAuthConfiguration", + "Name": "FileUploadLimitInMb", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", - "VerifyClientRevocation": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "TrustedClientCertificates", + "Name": "Exclusion", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion" }, "ValidateNotNullOrEmpty": true }, @@ -281546,7 +293843,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -281628,12 +293925,31 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "Enabled", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FirewallMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Detection", + "Prevention" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -281643,20 +293959,48 @@ }, { "ParameterMetadata": { - "Name": "SslPolicy", + "Name": "RuleSetType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "OWASP" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleSetVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisabledRuleGroup", + "AliasList": [ + "DisabledRuleGroups" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", - "CipherSuites": "System.Collections.Generic.List`1[System.String]", - "PolicyType": "System.String", - "PolicyName": "System.String", - "MinProtocolVersion": "System.String", - "DisabledSslProtocolsText": "System.String", - "CipherSuitesText": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup" }, "ValidateNotNullOrEmpty": true }, @@ -281667,15 +294011,11 @@ }, { "ParameterMetadata": { - "Name": "ClientAuthConfiguration", + "Name": "RequestBodyCheck", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", - "VerifyClientRevocation": "System.String" - } + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -281686,12 +294026,42 @@ }, { "ParameterMetadata": { - "Name": "TrustedClientCertificates", + "Name": "MaxRequestBodySizeInKb", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FileUploadLimitInMb", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Exclusion", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion" }, "ValidateNotNullOrEmpty": true }, @@ -281732,31 +294102,62 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewaySslProfilePolicy", - "Name": "Set-AzApplicationGatewaySslProfilePolicy", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewaySslProfilePolicyCommand", - "SupportsShouldProcess": false, + "NounName": "AzBastion", + "Name": "Set-AzBastion", + "ClassName": "Microsoft.Azure.Commands.Network.Bastion.SetAzBastionCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByInputObject", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", + "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", + "Tag": "System.Collections.Hashtable", + "EnableShareableLink": "System.Nullable`1[System.Boolean]", + "EnableIpConnect": "System.Nullable`1[System.Boolean]", + "EnableTunneling": "System.Nullable`1[System.Boolean]", + "EnableSessionRecording": "System.Nullable`1[System.Boolean]", + "EnableKerberos": "System.Nullable`1[System.Boolean]", + "DisableCopyPaste": "System.Nullable`1[System.Boolean]", + "ScaleUnit": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Etag": "System.String", + "IpConfigurationsText": "System.String", + "SkuText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "DnsName": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "Allocate", + "Parameters": [ + { + "Name": "virtualNetwork", + "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" + }, + { + "Name": "publicIpAddress", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "Deallocate", + "ReturnType": "System.Void" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -281783,6 +294184,27 @@ "Constructors": [ { "Name": "" + }, + { + "Name": "", + "Parameters": [ + { + "Name": "name", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "rgName", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "location", + "Type": "System.Reflection.RuntimeParameterInfo" + }, + { + "Name": "sku", + "Type": "System.Reflection.RuntimeParameterInfo" + } + ] } ] }, @@ -281793,87 +294215,161 @@ ], "Parameters": [ { - "Name": "SslProfile", + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", + "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", + "Tag": "System.Collections.Hashtable", + "EnableShareableLink": "System.Nullable`1[System.Boolean]", + "EnableIpConnect": "System.Nullable`1[System.Boolean]", + "EnableTunneling": "System.Nullable`1[System.Boolean]", + "EnableSessionRecording": "System.Nullable`1[System.Boolean]", + "EnableKerberos": "System.Nullable`1[System.Boolean]", + "DisableCopyPaste": "System.Nullable`1[System.Boolean]", + "ScaleUnit": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Etag": "System.String", + "IpConfigurationsText": "System.String", + "SkuText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "DnsName": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "DisabledSslProtocols", + "Name": "Sku", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" + "Basic", + "Standard", + "Premium" ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "PolicyType", + "Name": "ScaleUnit", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateSet": [ - "Predefined", - "Custom", - "CustomV2" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "PolicyName", + "Name": "EnableKerberos", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "CipherSuite", + "Name": "DisableCopyPaste", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "MinProtocolVersion", + "Name": "EnableTunneling", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableIpConnect", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableShareableLink", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableSessionRecording", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" - ], "ValidateNotNullOrEmpty": false }, { @@ -281903,24 +294399,37 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "SslProfile", + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "SslPolicyText": "System.String", - "ClientAuthConfigurationText": "System.String", - "TrustedClientCertificatesText": "System.String", - "Name": "System.String", + "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", + "Tag": "System.Collections.Hashtable", + "EnableShareableLink": "System.Nullable`1[System.Boolean]", + "EnableIpConnect": "System.Nullable`1[System.Boolean]", + "EnableTunneling": "System.Nullable`1[System.Boolean]", + "EnableSessionRecording": "System.Nullable`1[System.Boolean]", + "EnableKerberos": "System.Nullable`1[System.Boolean]", + "DisableCopyPaste": "System.Nullable`1[System.Boolean]", + "ScaleUnit": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Etag": "System.String", + "IpConfigurationsText": "System.String", + "SkuText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "DnsName": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -281929,96 +294438,193 @@ }, { "ParameterMetadata": { - "Name": "DisabledSslProtocols", + "Name": "Sku", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" + "Basic", + "Standard", + "Premium" ], - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PolicyType", + "Name": "ScaleUnit", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, - "ValidateSet": [ - "Predefined", - "Custom", - "CustomV2" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PolicyName", + "Name": "EnableKerberos", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CipherSuite", + "Name": "DisableCopyPaste", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MinProtocolVersion", + "Name": "EnableTunneling", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateSet": [ - "TLSv1_0", - "TLSv1_1", - "TLSv1_2", - "TLSv1_3" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableIpConnect", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableShareableLink", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableSessionRecording", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { @@ -282053,9 +294659,9 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewayTrustedClientCertificate", - "Name": "Set-AzApplicationGatewayTrustedClientCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayTrustedClientCertificateCommand", + "NounName": "AzExpressRouteCircuit", + "Name": "Set-AzExpressRouteCircuit", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, @@ -282064,77 +294670,40 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" }, "Methods": [ @@ -282174,102 +294743,56 @@ ], "Parameters": [ { - "Name": "ApplicationGateway", + "Name": "ExpressRouteCircuit", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "CertificateFile", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -282298,80 +294821,43 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "ExpressRouteCircuit", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" } }, @@ -282384,30 +294870,15 @@ }, { "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "CertificateFile", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -282444,88 +294915,51 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewayTrustedRootCertificate", - "Name": "Set-AzApplicationGatewayTrustedRootCertificate", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayTrustedRootCertificateCommand", + "NounName": "AzExpressRouteCircuitConnectionConfig", + "Name": "Set-AzExpressRouteCircuitConnectionConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitConnectionConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" }, "Methods": [ @@ -282565,87 +294999,68 @@ ], "Parameters": [ { - "Name": "ApplicationGateway", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ExpressRouteCircuit", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" } }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PeerExpressRouteCircuitPeering", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", @@ -282654,7 +295069,20 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "CertificateFile", + "Name": "AddressPrefixType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AuthorizationKey", "Type": { "Namespace": "System", "Name": "System.String", @@ -282689,93 +295117,71 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExpressRouteCircuit", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": -2147483648, + "Position": 1, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", @@ -282784,13 +295190,157 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AddressPrefixType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "CertificateFile", + "Name": "AuthorizationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "PeerExpressRouteCircuitPeering", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": 2, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 0, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExpressRouteCircuit", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Tag": "System.Collections.Hashtable", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", + "Etag": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": 1, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", @@ -282799,6 +295349,40 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, + "Position": 3, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AddressPrefixType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthorizationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false @@ -282835,88 +295419,51 @@ }, { "VerbName": "Set", - "NounName": "AzApplicationGatewayUrlPathMapConfig", - "Name": "Set-AzApplicationGatewayUrlPathMapConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayUrlPathMapConfigCommand", + "NounName": "AzExpressRouteCircuitPeeringConfig", + "Name": "Set-AzExpressRouteCircuitPeeringConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand", "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "BackendSetByResource", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" }, "Methods": [ @@ -282956,106 +295503,82 @@ ], "Parameters": [ { - "Name": "ApplicationGateway", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ExpressRouteCircuit", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", + "Name": "PeeringType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "AzurePrivatePeering", + "AzurePublicPeering", + "MicrosoftPeering" + ], "ValidateNotNullOrEmpty": true }, { - "Name": "PathRules", + "Name": "PeerASN", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultBackendAddressPoolId", + "Name": "PrimaryPeerAddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", @@ -283064,27 +295587,25 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultBackendAddressPool", + "Name": "SecondaryPeerAddressPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultBackendHttpSettingsId", + "Name": "VlanId", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SharedKey", "Type": { "Namespace": "System", "Name": "System.String", @@ -283093,65 +295614,35 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultBackendHttpSettings", + "Name": "MicrosoftConfigAdvertisedPublicPrefixes", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", - "Name": "System.String", - "CookieBasedAffinity": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultRewriteRuleSet", + "Name": "MicrosoftConfigCustomerAsn", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultRewriteRuleSetId", + "Name": "MicrosoftConfigRoutingRegistryName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultRedirectConfigurationId", + "Name": "RouteFilterId", "Type": { "Namespace": "System", "Name": "System.String", @@ -283160,25 +295651,23 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultRedirectConfiguration", + "Name": "RouteFilter", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "IncludePath": "System.Nullable`1[System.Boolean]", - "IncludeQueryString": "System.Nullable`1[System.Boolean]", - "RedirectType": "System.String", - "TargetUrl": "System.String", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "RulesText": "System.String", + "PeeringsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", "Type": "System.String", - "TargetListenerText": "System.String", - "RequestRoutingRulesText": "System.String", - "UrlPathMapsText": "System.String", - "PathRulesText": "System.String", + "TagsTable": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -283186,6 +295675,28 @@ }, "ValidateNotNullOrEmpty": true }, + { + "Name": "PeerAddressType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "LegacyMode", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -283211,92 +295722,6 @@ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ApplicationGateway", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", @@ -283314,172 +295739,43 @@ }, { "ParameterMetadata": { - "Name": "PathRules", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "BackendSetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "DefaultBackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultBackendHttpSettingsId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultRewriteRuleSetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "ExpressRouteCircuit", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Tag": "System.Collections.Hashtable", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" } }, @@ -283492,12 +295788,17 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PeeringType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "AzurePrivatePeering", + "AzurePublicPeering", + "MicrosoftPeering" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -283507,12 +295808,11 @@ }, { "ParameterMetadata": { - "Name": "PathRules", + "Name": "PeerASN", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -283523,53 +295823,26 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "PrimaryPeerAddressPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "BackendSetByResource", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultBackendAddressPool", + "Name": "SecondaryPeerAddressPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "ProvisioningState": "System.String", - "Type": "System.String", - "BackendAddressesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -283580,33 +295853,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultBackendHttpSettings", + "Name": "VlanId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "RequestTimeout": "System.Int32", - "PickHostNameFromBackendAddress": "System.Nullable`1[System.Boolean]", - "Protocol": "System.String", - "HostName": "System.String", - "Etag": "System.String", - "AffinityCookieName": "System.String", - "Path": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "ConnectionDrainingText": "System.String", - "ProbeText": "System.String", - "AuthenticationCertificatesText": "System.String", - "Name": "System.String", - "CookieBasedAffinity": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -283617,22 +295868,13 @@ }, { "ParameterMetadata": { - "Name": "DefaultRewriteRuleSet", + "Name": "SharedKey", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -283641,121 +295883,84 @@ }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "MicrosoftConfigAdvertisedPublicPrefixes", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "MicrosoftConfigCustomerAsn", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PathRules", + "Name": "MicrosoftConfigRoutingRegistryName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "PeerAddressType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LegacyMode", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -283785,57 +295990,30 @@ ] }, { - "Name": "RedirectSetByResource", + "Name": "MicrosoftPeeringConfigRoutFilterId", "Parameters": [ { "ParameterMetadata": { - "Name": "DefaultRewriteRuleSet", + "Name": "RouteFilterId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "ProvisioningState": "System.String", - "Type": "System.String", - "RewriteRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultRedirectConfiguration", + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PathRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "IncludePath": "System.Nullable`1[System.Boolean]", - "IncludeQueryString": "System.Nullable`1[System.Boolean]", - "RedirectType": "System.String", - "TargetUrl": "System.String", - "Type": "System.String", - "TargetListenerText": "System.String", - "RequestRoutingRulesText": "System.String", - "UrlPathMapsText": "System.String", - "PathRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -283846,80 +296024,43 @@ }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "ExpressRouteCircuit", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" } }, @@ -283932,12 +296073,17 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PeeringType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "AzurePrivatePeering", + "AzurePublicPeering", + "MicrosoftPeering" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -283947,12 +296093,11 @@ }, { "ParameterMetadata": { - "Name": "PathRules", + "Name": "PeerASN", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -283963,53 +296108,52 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "PrimaryPeerAddressPrefix", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "RedirectSetByResourceId", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "DefaultRewriteRuleSetId", + "Name": "SecondaryPeerAddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultRedirectConfigurationId", + "Name": "VlanId", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SharedKey", "Type": { "Namespace": "System", "Name": "System.String", @@ -284017,128 +296161,91 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "MicrosoftConfigAdvertisedPublicPrefixes", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "MicrosoftConfigCustomerAsn", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PathRules", + "Name": "MicrosoftConfigRoutingRegistryName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "PeerAddressType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LegacyMode", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -284166,405 +296273,95 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzApplicationGatewayWebApplicationFirewallConfiguration", - "Name": "Set-AzApplicationGatewayWebApplicationFirewallConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureApplicationGatewayWebApplicationFirewallConfigurationCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ApplicationGateway", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Enabled", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FirewallMode", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Detection", - "Prevention" - ], - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RuleSetType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "OWASP" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RuleSetVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DisabledRuleGroup", - "AliasList": [ - "DisabledRuleGroups" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RequestBodyCheck", - "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "MaxRequestBodySizeInKb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "FileUploadLimitInMb", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Exclusion", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion" - }, - "ValidateNotNullOrEmpty": true }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "MicrosoftPeeringConfigRoutFilter", "Parameters": [ { "ParameterMetadata": { - "Name": "ApplicationGateway", + "Name": "RouteFilter", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "WebApplicationFirewallConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "FirewallPolicy": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AuthenticationCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "BackendSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "CustomErrorConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "FrontendIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "FrontendPorts": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "HttpListeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "GatewayIPConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "Listeners": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "PrivateEndpointConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "PrivateLinkConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "RedirectConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "RewriteRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "RoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "SslCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "SslProfiles": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "TrustedClientCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "UrlPathMaps": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "RulesText": "System.String", + "PeeringsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ExpressRouteCircuit", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", + "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", + "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Tag": "System.Collections.Hashtable", - "ForceFirewallPolicyAssociation": "System.Nullable`1[System.Boolean]", - "EnableResponseBuffering": "System.Nullable`1[System.Boolean]", - "EnableFips": "System.Nullable`1[System.Boolean]", - "EnableHttp2": "System.Nullable`1[System.Boolean]", - "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", - "ProbesText": "System.String", - "UrlPathMapsText": "System.String", - "IdentityText": "System.String", - "SslPolicyText": "System.String", - "FirewallPolicyText": "System.String", - "PrivateLinkConfigurationsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "RoutingRulesText": "System.String", - "TagsTable": "System.String", + "AllowClassicOperations": "System.Nullable`1[System.Boolean]", + "AllowGlobalReach": "System.Nullable`1[System.Boolean]", + "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", + "BandwidthInGbps": "System.Nullable`1[System.Double]", + "Stag": "System.Nullable`1[System.Int32]", + "ProvisioningState": "System.String", "Name": "System.String", - "PrivateLinkEndpointConnectionsText": "System.String", - "RequestRoutingRulesText": "System.String", - "OperationalState": "System.String", - "ListenersText": "System.String", + "TagsTable": "System.String", + "CircuitProvisioningState": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExpressRoutePortText": "System.String", + "GatewayManagerEtag": "System.String", + "ServiceProviderPropertiesText": "System.String", + "AuthorizationsText": "System.String", + "SkuText": "System.String", + "AuthorizationStatus": "System.String", + "AuthorizationKey": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "DefaultPredefinedSslPolicy": "System.String", - "GatewayIpConfigurationsText": "System.String", - "TrustedClientCertificatesText": "System.String", - "AuthenticationCertificatesText": "System.String", - "RewriteRuleSetsText": "System.String", - "SslCertificatesText": "System.String", - "FrontendPortsText": "System.String", - "BackendAddressPoolsText": "System.String", - "BackendHttpSettingsCollectionText": "System.String", - "BackendSettingsCollectionText": "System.String", - "SslProfilesText": "System.String", - "HttpListenersText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "ServiceProviderProvisioningState": "System.String", + "ServiceKey": "System.String", + "ServiceProviderNotes": "System.String", + "PeeringsText": "System.String", "Id": "System.String" } }, @@ -284577,12 +296374,17 @@ }, { "ParameterMetadata": { - "Name": "Enabled", + "Name": "PeeringType", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "AzurePrivatePeering", + "AzurePublicPeering", + "MicrosoftPeering" + ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -284592,16 +296394,12 @@ }, { "ParameterMetadata": { - "Name": "FirewallMode", + "Name": "PeerASN", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Detection", - "Prevention" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, @@ -284611,63 +296409,56 @@ }, { "ParameterMetadata": { - "Name": "RuleSetType", + "Name": "PrimaryPeerAddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "OWASP" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleSetVersion", + "Name": "SecondaryPeerAddressPrefix", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisabledRuleGroup", - "AliasList": [ - "DisabledRuleGroups" - ], + "Name": "VlanId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RequestBodyCheck", + "Name": "SharedKey", "Type": { "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -284678,11 +296469,12 @@ }, { "ParameterMetadata": { - "Name": "MaxRequestBodySizeInKb", + "Name": "MicrosoftConfigAdvertisedPublicPrefixes", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": true }, @@ -284693,7 +296485,7 @@ }, { "ParameterMetadata": { - "Name": "FileUploadLimitInMb", + "Name": "MicrosoftConfigCustomerAsn", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -284708,12 +296500,11 @@ }, { "ParameterMetadata": { - "Name": "Exclusion", + "Name": "MicrosoftConfigRoutingRegistryName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, @@ -284722,6 +296513,40 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "PeerAddressType", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LegacyMode", + "Type": { + "Namespace": "System", + "Name": "System.Boolean", + "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -284754,62 +296579,33 @@ }, { "VerbName": "Set", - "NounName": "AzBastion", - "Name": "Set-AzBastion", - "ClassName": "Microsoft.Azure.Commands.Network.Bastion.SetAzBastionCommand", + "NounName": "AzExpressRouteConnection", + "Name": "Set-AzExpressRouteConnection", + "ClassName": "Microsoft.Azure.Commands.Network.Cortex.ExpressRouteGateway.UpdateAzureRmExpressRouteConnectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByInputObject", + "DefaultParameterSetName": "ByExpressRouteConnectionName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableShareableLink": "System.Nullable`1[System.Boolean]", - "EnableIpConnect": "System.Nullable`1[System.Boolean]", - "EnableTunneling": "System.Nullable`1[System.Boolean]", - "EnableSessionRecording": "System.Nullable`1[System.Boolean]", - "EnableKerberos": "System.Nullable`1[System.Boolean]", - "DisableCopyPaste": "System.Nullable`1[System.Boolean]", - "ScaleUnit": "System.Nullable`1[System.Int32]", + "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "AuthorizationKey": "System.String", "ProvisioningState": "System.String", - "Etag": "System.String", - "IpConfigurationsText": "System.String", - "SkuText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "DnsName": "System.String", - "TagsTable": "System.String", + "ExpressRouteCircuitPeeringText": "System.String", + "RoutingConfigurationText": "System.String", "Name": "System.String", - "Id": "System.String" + "Etag": "System.String", + "Id": "System.String", + "RoutingWeight": "System.UInt32" }, "Methods": [ - { - "Name": "Allocate", - "Parameters": [ - { - "Name": "virtualNetwork", - "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" - }, - { - "Name": "publicIpAddress", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "Deallocate", - "ReturnType": "System.Void" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -284836,27 +296632,6 @@ "Constructors": [ { "Name": "" - }, - { - "Name": "", - "Parameters": [ - { - "Name": "name", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "rgName", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "location", - "Type": "System.Reflection.RuntimeParameterInfo" - }, - { - "Name": "sku", - "Type": "System.Reflection.RuntimeParameterInfo" - } - ] } ] }, @@ -284867,126 +296642,93 @@ ], "Parameters": [ { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableShareableLink": "System.Nullable`1[System.Boolean]", - "EnableIpConnect": "System.Nullable`1[System.Boolean]", - "EnableTunneling": "System.Nullable`1[System.Boolean]", - "EnableSessionRecording": "System.Nullable`1[System.Boolean]", - "EnableKerberos": "System.Nullable`1[System.Boolean]", - "DisableCopyPaste": "System.Nullable`1[System.Boolean]", - "ScaleUnit": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Etag": "System.String", - "IpConfigurationsText": "System.String", - "SkuText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "DnsName": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Sku", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Basic", - "Standard", - "Premium" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ScaleUnit", + "Name": "ExpressRouteGatewayName", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "EnableKerberos", + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteConnectionName" + ], "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "DisableCopyPaste", + "Name": "ResourceId", + "AliasList": [ + "ExpressRouteConnectionId" + ], "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableTunneling", + "Name": "InputObject", + "AliasList": [ + "ExpressRouteConnection" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "AuthorizationKey": "System.String", + "ProvisioningState": "System.String", + "ExpressRouteCircuitPeeringText": "System.String", + "RoutingConfigurationText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "RoutingWeight": "System.UInt32" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableIpConnect", + "Name": "AuthorizationKey", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "EnableShareableLink", + "Name": "RoutingWeight", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableSessionRecording", + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", @@ -284998,20 +296740,20 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", + "Name": "RoutingConfiguration", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -285047,88 +296789,90 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByExpressRouteConnectionName", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", - "Tag": "System.Collections.Hashtable", - "EnableShareableLink": "System.Nullable`1[System.Boolean]", - "EnableIpConnect": "System.Nullable`1[System.Boolean]", - "EnableTunneling": "System.Nullable`1[System.Boolean]", - "EnableSessionRecording": "System.Nullable`1[System.Boolean]", - "EnableKerberos": "System.Nullable`1[System.Boolean]", - "DisableCopyPaste": "System.Nullable`1[System.Boolean]", - "ScaleUnit": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Etag": "System.String", - "IpConfigurationsText": "System.String", - "SkuText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "DnsName": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Sku", + "Name": "ExpressRouteGatewayName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Basic", - "Standard", - "Premium" + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteConnectionName" ], - "ValidateNotNullOrEmpty": false + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AuthorizationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ScaleUnit", + "Name": "RoutingWeight", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableKerberos", + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", @@ -285141,84 +296885,130 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableCopyPaste", + "Name": "RoutingConfiguration", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableTunneling", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableIpConnect", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByExpressRouteConnectionResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [ + "ExpressRouteConnectionId" + ], "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AuthorizationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableShareableLink", + "Name": "RoutingWeight", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableSessionRecording", + "Name": "EnableInternetSecurity", "Type": { "Namespace": "System", "Name": "System.Nullable`1[System.Boolean]", @@ -285231,27 +297021,36 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "RoutingConfiguration", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Force", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -285261,9 +297060,143 @@ }, "Mandatory": false, "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByExpressRouteConnectionObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "AliasList": [ + "ExpressRouteConnection" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", + "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "EnableInternetSecurity": "System.Boolean", + "AuthorizationKey": "System.String", + "ProvisioningState": "System.String", + "ExpressRouteCircuitPeeringText": "System.String", + "RoutingConfigurationText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "RoutingWeight": "System.UInt32" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AuthorizationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RoutingWeight", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableInternetSecurity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RoutingConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "AsJob", @@ -285276,7 +297209,7 @@ }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -285306,218 +297239,80 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzExpressRouteCircuit", - "Name": "Set-AzExpressRouteCircuit", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ExpressRouteCircuit", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ExpressRouteCircuit", + "Name": "AuthorizationKey", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RoutingWeight", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableInternetSecurity", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RoutingConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" + "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", + "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", + "PropagatedRouteTablesText": "System.String", + "VnetRoutesText": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { @@ -285567,50 +297362,39 @@ }, { "VerbName": "Set", - "NounName": "AzExpressRouteCircuitConnectionConfig", - "Name": "Set-AzExpressRouteCircuitConnectionConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitConnectionConfigCommand", + "NounName": "AzExpressRouteCrossConnection", + "Name": "Set-AzExpressRouteCrossConnection", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", + "STag": "System.Nullable`1[System.Int32]", + "BandwidthInMbps": "System.Nullable`1[System.Int32]", + "PrimaryAzurePort": "System.String", "Name": "System.String", "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", + "ExpressRouteCircuitText": "System.String", "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", + "ProvisioningState": "System.String", "ServiceProviderNotes": "System.String", + "ServiceProviderProvisioningState": "System.String", + "PeeringLocation": "System.String", + "SecondaryAzurePort": "System.String", "PeeringsText": "System.String", "Id": "System.String" }, @@ -285651,68 +297435,48 @@ ], "Parameters": [ { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ExpressRouteCircuit", + "Name": "ExpressRouteCrossConnection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", + "STag": "System.Nullable`1[System.Int32]", + "BandwidthInMbps": "System.Nullable`1[System.Int32]", + "PrimaryAzurePort": "System.String", "Name": "System.String", "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", + "ExpressRouteCircuitText": "System.String", "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", + "ProvisioningState": "System.String", "ServiceProviderNotes": "System.String", + "ServiceProviderProvisioningState": "System.String", + "PeeringLocation": "System.String", + "SecondaryAzurePort": "System.String", "PeeringsText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "PeerExpressRouteCircuitPeering", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "AddressPrefix", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -285721,26 +297485,50 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "AddressPrefixType", + "Name": "ServiceProviderProvisioningState", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "AuthorizationKey", + "Name": "ServiceProviderNotes", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Peerings", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -285765,99 +297553,54 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ModifyByCircuitReference", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 0, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExpressRouteCircuit", + "Name": "ExpressRouteCrossConnection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", + "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", + "STag": "System.Nullable`1[System.Int32]", + "BandwidthInMbps": "System.Nullable`1[System.Int32]", + "PrimaryAzurePort": "System.String", "Name": "System.String", "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", + "ExpressRouteCircuitText": "System.String", "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", + "ProvisioningState": "System.String", "ServiceProviderNotes": "System.String", + "ServiceProviderProvisioningState": "System.String", + "PeeringLocation": "System.String", + "SecondaryAzurePort": "System.String", "PeeringsText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, - "Position": 1, + "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": 3, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AddressPrefixType", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -285867,13 +297610,13 @@ }, { "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -285909,22 +297652,22 @@ ] }, { - "Name": "SetByResourceId", + "Name": "ModifyByParameterValues", "Parameters": [ { "ParameterMetadata": { - "Name": "PeerExpressRouteCircuitPeering", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 2, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -285937,86 +297680,125 @@ "ValidateNotNullOrEmpty": true }, "Mandatory": true, - "Position": 0, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExpressRouteCircuit", + "Name": "ServiceProviderProvisioningState", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 1, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AddressPrefix", + "Name": "ServiceProviderNotes", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": 3, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Peerings", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AddressPrefixType", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateSet": [ - "IPv4", - "IPv6" + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -286026,13 +297808,13 @@ }, { "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -286071,51 +297853,36 @@ }, { "VerbName": "Set", - "NounName": "AzExpressRouteCircuitPeeringConfig", - "Name": "Set-AzExpressRouteCircuitPeeringConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureExpressRouteCircuitPeeringConfigCommand", - "SupportsShouldProcess": false, + "NounName": "AzExpressRouteGateway", + "Name": "Set-AzExpressRouteGateway", + "ClassName": "Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "ByExpressRouteGatewayName", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", + "AllowNonVirtualWanTraffic": "System.Boolean", + "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", "Name": "System.String", "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", "Type": "System.String", "ResourceGuid": "System.String", - "Location": "System.String", "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", + "ExpressRouteConnectionsText": "System.String", + "AutoScaleConfigurationText": "System.String", + "VirtualHubText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", "Id": "System.String" }, "Methods": [ @@ -286154,8 +297921,22 @@ } ], "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteGatewayName", + "GatewayName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -286164,188 +297945,94 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ExpressRouteCircuit", + "Name": "InputObject", + "AliasList": [ + "ExpressRouteGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", + "AllowNonVirtualWanTraffic": "System.Boolean", + "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", "Name": "System.String", "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", "Type": "System.String", "ResourceGuid": "System.String", - "Location": "System.String", "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", + "ExpressRouteConnectionsText": "System.String", + "AutoScaleConfigurationText": "System.String", + "VirtualHubText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "PeeringType", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "AzurePrivatePeering", - "AzurePublicPeering", - "MicrosoftPeering" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "PeerASN", + "Name": "MinScaleUnits", "Type": { "Namespace": "System", "Name": "System.UInt32", "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "PrimaryPeerAddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SecondaryPeerAddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "VlanId", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "SharedKey", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "MicrosoftConfigAdvertisedPublicPrefixes", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "MicrosoftConfigCustomerAsn", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false }, { - "Name": "MicrosoftConfigRoutingRegistryName", + "Name": "MaxScaleUnits", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false }, { - "Name": "RouteFilterId", + "Name": "AllowNonVirtualWanTraffic", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "RouteFilter", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RulesText": "System.String", - "PeeringsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "PeerAddressType", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "LegacyMode", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -286372,11 +298059,11 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByExpressRouteGatewayName", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -286391,173 +298078,185 @@ }, { "ParameterMetadata": { - "Name": "ExpressRouteCircuit", + "Name": "Name", + "AliasList": [ + "ResourceName", + "ExpressRouteGatewayName", + "GatewayName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeeringType", + "Name": "MinScaleUnits", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "AzurePrivatePeering", - "AzurePublicPeering", - "MicrosoftPeering" - ], - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeerASN", + "Name": "MaxScaleUnits", "Type": { "Namespace": "System", "Name": "System.UInt32", "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrimaryPeerAddressPrefix", + "Name": "AllowNonVirtualWanTraffic", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SecondaryPeerAddressPrefix", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VlanId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SharedKey", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "ByExpressRouteGatewayObject", + "Parameters": [ { "ParameterMetadata": { - "Name": "MicrosoftConfigAdvertisedPublicPrefixes", + "Name": "InputObject", + "AliasList": [ + "ExpressRouteGateway" + ], "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", + "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", + "AllowNonVirtualWanTraffic": "System.Boolean", + "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "ResourceGroupName": "System.String", + "Etag": "System.String", + "ExpressRouteConnectionsText": "System.String", + "AutoScaleConfigurationText": "System.String", + "VirtualHubText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MicrosoftConfigCustomerAsn", + "Name": "MinScaleUnits", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -286566,13 +298265,15 @@ }, { "ParameterMetadata": { - "Name": "MicrosoftConfigRoutingRegistryName", + "Name": "MaxScaleUnits", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -286581,16 +298282,15 @@ }, { "ParameterMetadata": { - "Name": "PeerAddressType", + "Name": "AllowNonVirtualWanTraffic", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -286600,18 +298300,33 @@ }, { "ParameterMetadata": { - "Name": "LegacyMode", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -286642,11 +298357,11 @@ ] }, { - "Name": "MicrosoftPeeringConfigRoutFilterId", + "Name": "ByExpressRouteGatewayResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "RouteFilterId", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -286661,173 +298376,128 @@ }, { "ParameterMetadata": { - "Name": "Name", + "Name": "MinScaleUnits", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExpressRouteCircuit", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", - "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - } + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PeeringType", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "AzurePrivatePeering", - "AzurePublicPeering", - "MicrosoftPeering" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PeerASN", + "Name": "MaxScaleUnits", "Type": { "Namespace": "System", "Name": "System.UInt32", "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrimaryPeerAddressPrefix", + "Name": "AllowNonVirtualWanTraffic", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SecondaryPeerAddressPrefix", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "VlanId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SharedKey", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "MicrosoftConfigAdvertisedPublicPrefixes", + "Name": "MinScaleUnits", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -286836,13 +298506,15 @@ }, { "ParameterMetadata": { - "Name": "MicrosoftConfigCustomerAsn", + "Name": "MaxScaleUnits", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateRangeMin": 1, + "ValidateRangeMax": 100, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -286851,52 +298523,51 @@ }, { "ParameterMetadata": { - "Name": "MicrosoftConfigRoutingRegistryName", + "Name": "AllowNonVirtualWanTraffic", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Boolean]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Boolean" + ] }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerAddressType", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LegacyMode", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -286925,95 +298596,427 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzExpressRoutePort", + "Name": "Set-AzExpressRoutePort", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureExpressRoutePortCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", + "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ExpressRoutePort", + "AliasList": [ + "InputObject" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", + "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "MicrosoftPeeringConfigRoutFilter", + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "RouteFilter", + "Name": "ExpressRoutePort", + "AliasList": [ + "InputObject" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "RulesText": "System.String", - "PeeringsText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzExpressRoutePortIdentity", + "Name": "Set-AzExpressRoutePortIdentity", + "ClassName": "Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", + "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ExpressRoutePort", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Tag": "System.Collections.Hashtable", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", + "Etag": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "ExpressRouteCircuit", + "Name": "ExpressRoutePort", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuit, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "ExpressRoutePort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "ServiceProviderProperties": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "Authorizations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", + "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Tag": "System.Collections.Hashtable", - "AllowClassicOperations": "System.Nullable`1[System.Boolean]", - "AllowGlobalReach": "System.Nullable`1[System.Boolean]", - "GlobalReachEnabled": "System.Nullable`1[System.Boolean]", - "BandwidthInGbps": "System.Nullable`1[System.Double]", - "Stag": "System.Nullable`1[System.Int32]", - "ProvisioningState": "System.String", + "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", + "BandwidthInGbps": "System.Nullable`1[System.Int32]", "Name": "System.String", "TagsTable": "System.String", - "CircuitProvisioningState": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "ExpressRoutePortText": "System.String", - "GatewayManagerEtag": "System.String", - "ServiceProviderPropertiesText": "System.String", - "AuthorizationsText": "System.String", - "SkuText": "System.String", - "AuthorizationStatus": "System.String", - "AuthorizationKey": "System.String", + "IdentityText": "System.String", + "PeeringLocation": "System.String", + "LinksText": "System.String", "Etag": "System.String", - "ServiceProviderProvisioningState": "System.String", - "ServiceKey": "System.String", - "ServiceProviderNotes": "System.String", - "PeeringsText": "System.String", + "BillingType": "System.String", + "ProvisioningState": "System.String", + "AllocationDate": "System.String", + "EtherType": "System.String", + "Encapsulation": "System.String", + "Mtu": "System.String", + "CircuitsText": "System.String", "Id": "System.String" } }, @@ -287026,178 +299029,543 @@ }, { "ParameterMetadata": { - "Name": "PeeringType", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "AzurePrivatePeering", - "AzurePublicPeering", - "MicrosoftPeering" - ], "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PeerASN", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzFirewall", + "Name": "Set-AzFirewall", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureFirewallCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", + "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", + "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", + "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", + "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", + "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", + "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "NetworkRuleCollectionsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "DNSServersText": "System.String", + "PrivateRangeText": "System.String", + "ThreatIntelWhitelistText": "System.String", + "Name": "System.String", + "NatRuleCollectionsText": "System.String", + "EnableFatFlowLogging": "System.String", + "ManagementIpConfigurationText": "System.String", + "IpConfigurationsText": "System.String", + "RouteServerId": "System.String", + "EnableUDPLogOptimization": "System.String", + "Etag": "System.String", + "AllowActiveFTP": "System.String", + "ProvisioningState": "System.String", + "DNSEnableProxy": "System.String", + "ThreatIntelMode": "System.String", + "ApplicationRuleCollectionsText": "System.String", + "Id": "System.String", + "DNSServer": "System.String[]", + "PrivateRange": "System.String[]" }, - { - "ParameterMetadata": { - "Name": "PrimaryPeerAddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + "Methods": [ + { + "Name": "Allocate", + "Parameters": [ + { + "Name": "virtualHub", + "Type": "Microsoft.Azure.Management.Network.Models.SubResource" + } + ], + "ReturnType": "System.Void" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SecondaryPeerAddressPrefix", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "Allocate", + "Parameters": [ + { + "Name": "virtualHub", + "Type": "Microsoft.Azure.Management.Network.Models.SubResource" + }, + { + "Name": "publicIpAddresses", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" + } + ], + "ReturnType": "System.Void" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "VlanId", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "Allocate", + "Parameters": [ + { + "Name": "virtualNetwork", + "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" + }, + { + "Name": "publicIpAddresses", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" + }, + { + "Name": "ManagementPublicIpAddress", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + } + ], + "ReturnType": "System.Void" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SharedKey", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "AllocateBasicSku", + "Parameters": [ + { + "Name": "virtualNetwork", + "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" + }, + { + "Name": "publicIpAddresses", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" + }, + { + "Name": "ManagementPublicIpAddress", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + } + ], + "ReturnType": "System.Void" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MicrosoftConfigAdvertisedPublicPrefixes", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "Deallocate", + "ReturnType": "System.Void" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MicrosoftConfigCustomerAsn", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "AddPublicIpAddress", + "Parameters": [ + { + "Name": "publicIpAddress", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + } + ], + "ReturnType": "System.Void" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "MicrosoftConfigRoutingRegistryName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true + { + "Name": "RemovePublicIpAddress", + "Parameters": [ + { + "Name": "publicIpAddress", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" + } + ], + "ReturnType": "System.Void" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "AddIpAddressesForByopipHubFirewall", + "Parameters": [ + { + "Name": "publicIpAddresses", + "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "AddApplicationRuleCollection", + "Parameters": [ + { + "Name": "ruleCollection", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "GetApplicationRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" + }, + { + "Name": "GetApplicationRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", + "Type": "System.UInt32" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" + }, + { + "Name": "RemoveApplicationRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "RemoveApplicationRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", + "Type": "System.UInt32" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "AddNatRuleCollection", + "Parameters": [ + { + "Name": "ruleCollection", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "GetNatRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + }, + { + "Name": "GetNatRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", + "Type": "System.UInt32" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + }, + { + "Name": "RemoveNatRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "RemoveNatRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", + "Type": "System.UInt32" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "AddNetworkRuleCollection", + "Parameters": [ + { + "Name": "ruleCollection", + "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "GetNetworkRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + }, + { + "Name": "GetNetworkRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", + "Type": "System.UInt32" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + }, + { + "Name": "RemoveNetworkRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "RemoveNetworkRuleCollectionByPriority", + "Parameters": [ + { + "Name": "priority", + "Type": "System.UInt32" + } + ], + "ReturnType": "System.Void" + }, + { + "Name": "ValidateDNSProxyRequirements", + "ReturnType": "System.Void" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "AzureFirewall", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", + "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", + "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", + "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", + "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", + "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", + "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "NetworkRuleCollectionsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "DNSServersText": "System.String", + "PrivateRangeText": "System.String", + "ThreatIntelWhitelistText": "System.String", + "Name": "System.String", + "NatRuleCollectionsText": "System.String", + "EnableFatFlowLogging": "System.String", + "ManagementIpConfigurationText": "System.String", + "IpConfigurationsText": "System.String", + "RouteServerId": "System.String", + "EnableUDPLogOptimization": "System.String", + "Etag": "System.String", + "AllowActiveFTP": "System.String", + "ProvisioningState": "System.String", + "DNSEnableProxy": "System.String", + "ThreatIntelMode": "System.String", + "ApplicationRuleCollectionsText": "System.String", + "Id": "System.String", + "DNSServer": "System.String[]", + "PrivateRange": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "PeerAddressType", + "Name": "AzureFirewall", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", + "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", + "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", + "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", + "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", + "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", + "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "NetworkRuleCollectionsText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "DNSServersText": "System.String", + "PrivateRangeText": "System.String", + "ThreatIntelWhitelistText": "System.String", + "Name": "System.String", + "NatRuleCollectionsText": "System.String", + "EnableFatFlowLogging": "System.String", + "ManagementIpConfigurationText": "System.String", + "IpConfigurationsText": "System.String", + "RouteServerId": "System.String", + "EnableUDPLogOptimization": "System.String", + "Etag": "System.String", + "AllowActiveFTP": "System.String", + "ProvisioningState": "System.String", + "DNSEnableProxy": "System.String", + "ThreatIntelMode": "System.String", + "ApplicationRuleCollectionsText": "System.String", + "Id": "System.String", + "DNSServer": "System.String[]", + "PrivateRange": "System.String[]" + } }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LegacyMode", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Boolean", - "AssemblyQualifiedName": "System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -287231,31 +299599,45 @@ }, { "VerbName": "Set", - "NounName": "AzExpressRouteConnection", - "Name": "Set-AzExpressRouteConnection", - "ClassName": "Microsoft.Azure.Commands.Network.Cortex.ExpressRouteGateway.UpdateAzureRmExpressRouteConnectionCommand", + "NounName": "AzFirewallPolicy", + "Name": "Set-AzFirewallPolicy", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureFirewallPolicyCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "ByExpressRouteConnectionName", + "DefaultParameterSetName": "SetByNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "AuthorizationKey": "System.String", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", "ProvisioningState": "System.String", - "ExpressRouteCircuitPeeringText": "System.String", - "RoutingConfigurationText": "System.String", - "Name": "System.String", "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", "Id": "System.String", - "RoutingWeight": "System.UInt32" + "PrivateRange": "System.String[]" }, "Methods": [ { @@ -287294,7 +299676,10 @@ ], "Parameters": [ { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -287303,7 +299688,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ExpressRouteGatewayName", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -287312,11 +299697,52 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ExpressRouteConnectionName" - ], + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", @@ -287325,10 +299751,34 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", - "AliasList": [ - "ExpressRouteConnectionId" + "Name": "ThreatIntelMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Alert", + "Deny", + "Off" ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ThreatIntelWhitelist", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BasePolicy", "Type": { "Namespace": "System", "Name": "System.String", @@ -287337,32 +299787,32 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "InputObject", - "AliasList": [ - "ExpressRouteConnection" - ], + "Name": "DnsSetting", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "AuthorizationKey": "System.String", - "ProvisioningState": "System.String", - "ExpressRouteCircuitPeeringText": "System.String", - "RoutingConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "RoutingWeight": "System.UInt32" + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "AuthorizationKey", + "Name": "SqlSetting", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -287371,50 +299821,124 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "RoutingWeight", + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IntrusionDetection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "TransportSecurityName", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "EnableInternetSecurity", + "Name": "TransportSecurityKeyVaultSecretId", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "RoutingConfiguration", + "Name": "SkuTier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Standard", + "Premium", + "Basic" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Identity", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" } }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "PrivateRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "ExplicitProxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Snat", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -287441,44 +299965,13 @@ ], "ParameterSets": [ { - "Name": "ByExpressRouteConnectionName", + "Name": "SetByNameParameterSet", "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExpressRouteGatewayName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "Name", "AliasList": [ - "ResourceName", - "ExpressRouteConnectionName" + "ResourceName" ], "Type": { "Namespace": "System", @@ -287490,11 +299983,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -287502,127 +299995,6 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingWeight", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableInternetSecurity", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByExpressRouteConnectionResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", - "AliasList": [ - "ExpressRouteConnectionId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, @@ -287630,7 +300002,7 @@ }, { "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "Location", "Type": { "Namespace": "System", "Name": "System.String", @@ -287638,67 +300010,10 @@ }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingWeight", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableInternetSecurity", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -287717,129 +300032,34 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByExpressRouteConnectionObject", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "ExpressRouteConnection" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", - "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "EnableInternetSecurity": "System.Boolean", - "AuthorizationKey": "System.String", - "ProvisioningState": "System.String", - "ExpressRouteCircuitPeeringText": "System.String", - "RoutingConfigurationText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "RoutingWeight": "System.UInt32" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "ThreatIntelMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingWeight", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableInternetSecurity", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, + "ValidateSet": [ + "Alert", + "Deny", + "Off" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "RoutingConfiguration", + "Name": "ThreatIntelWhitelist", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" } }, "ValidateNotNullOrEmpty": false @@ -287851,407 +300071,48 @@ }, { "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "AuthorizationKey", + "Name": "BasePolicy", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingWeight", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableInternetSecurity", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RoutingConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "InboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "OutboundRouteMap": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetRoutes": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "PropagatedRouteTablesText": "System.String", - "VnetRoutesText": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzExpressRouteCrossConnection", - "Name": "Set-AzExpressRouteCrossConnection", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRMExpressRouteCrossConnectionCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", - "Tag": "System.Collections.Hashtable", - "STag": "System.Nullable`1[System.Int32]", - "BandwidthInMbps": "System.Nullable`1[System.Int32]", - "PrimaryAzurePort": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRouteCircuitText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "ServiceProviderNotes": "System.String", - "ServiceProviderProvisioningState": "System.String", - "PeeringLocation": "System.String", - "SecondaryAzurePort": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ExpressRouteCrossConnection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", - "Tag": "System.Collections.Hashtable", - "STag": "System.Nullable`1[System.Int32]", - "BandwidthInMbps": "System.Nullable`1[System.Int32]", - "PrimaryAzurePort": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRouteCircuitText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "ServiceProviderNotes": "System.String", - "ServiceProviderProvisioningState": "System.String", - "PeeringLocation": "System.String", - "SecondaryAzurePort": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ServiceProviderProvisioningState", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ServiceProviderNotes", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Peerings", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ModifyByCircuitReference", - "Parameters": [ { "ParameterMetadata": { - "Name": "ExpressRouteCrossConnection", + "Name": "DnsSetting", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExpressRouteCircuit": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", - "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", - "Tag": "System.Collections.Hashtable", - "STag": "System.Nullable`1[System.Int32]", - "BandwidthInMbps": "System.Nullable`1[System.Int32]", - "PrimaryAzurePort": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExpressRouteCircuitText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "ServiceProviderNotes": "System.String", - "ServiceProviderProvisioningState": "System.String", - "PeeringLocation": "System.String", - "SecondaryAzurePort": "System.String", - "PeeringsText": "System.String", - "Id": "System.String" + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "SqlSetting", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + } }, "ValidateNotNullOrEmpty": false }, @@ -288262,36 +300123,30 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Tag", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "IntrusionDetection", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" } }, "ValidateNotNullOrEmpty": false @@ -288300,95 +300155,127 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ModifyByParameterValues", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "TransportSecurityName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "TransportSecurityKeyVaultSecretId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ServiceProviderProvisioningState", + "Name": "SkuTier", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Standard", + "Premium", + "Basic" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ServiceProviderNotes", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Peerings", + "Name": "Identity", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering" + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ExplicitProxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -288399,11 +300286,15 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "Snat", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -288441,17 +300332,20 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -288460,14 +300354,56 @@ }, { "ParameterMetadata": { - "Name": "Force", + "Name": "InputObject", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -288475,22 +300411,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -288498,283 +300423,73 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzExpressRouteGateway", - "Name": "Set-AzExpressRouteGateway", - "ClassName": "Microsoft.Azure.Commands.Network.UpdateAzureRmExpressRouteGatewayCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "ByExpressRouteGatewayName", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", - "AllowNonVirtualWanTraffic": "System.Boolean", - "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "ResourceGroupName": "System.String", - "Etag": "System.String", - "ExpressRouteConnectionsText": "System.String", - "AutoScaleConfigurationText": "System.String", - "VirtualHubText": "System.String", - "ProvisioningState": "System.String", - "Location": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ExpressRouteGatewayName", - "GatewayName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InputObject", - "AliasList": [ - "ExpressRouteGateway" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", - "AllowNonVirtualWanTraffic": "System.Boolean", - "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "ResourceGroupName": "System.String", - "Etag": "System.String", - "ExpressRouteConnectionsText": "System.String", - "AutoScaleConfigurationText": "System.String", - "VirtualHubText": "System.String", - "ProvisioningState": "System.String", - "Location": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "MinScaleUnits", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "MaxScaleUnits", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AllowNonVirtualWanTraffic", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "ByExpressRouteGatewayName", - "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "ThreatIntelMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "Alert", + "Deny", + "Off" + ], + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName", - "ExpressRouteGatewayName", - "GatewayName" - ], + "Name": "ThreatIntelWhitelist", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MinScaleUnits", + "Name": "BasePolicy", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "MaxScaleUnits", + "Name": "DnsSetting", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" + } }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -288784,21 +300499,21 @@ }, { "ParameterMetadata": { - "Name": "AllowNonVirtualWanTraffic", + "Name": "SqlSetting", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -288813,15 +300528,20 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "IntrusionDetection", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -288832,22 +300552,11 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "TransportSecurityName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -288855,59 +300564,35 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "ByExpressRouteGatewayObject", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "ExpressRouteGateway" - ], + "Name": "TransportSecurityKeyVaultSecretId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AutoScaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", - "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", - "AllowNonVirtualWanTraffic": "System.Boolean", - "ExpressRouteConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "ResourceGroupName": "System.String", - "Etag": "System.String", - "ExpressRouteConnectionsText": "System.String", - "AutoScaleConfigurationText": "System.String", - "VirtualHubText": "System.String", - "ProvisioningState": "System.String", - "Location": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "MinScaleUnits", + "Name": "SkuTier", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, + "ValidateSet": [ + "Standard", + "Premium", + "Basic" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -288917,15 +300602,16 @@ }, { "ParameterMetadata": { - "Name": "MaxScaleUnits", + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" + ], "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -288934,29 +300620,56 @@ }, { "ParameterMetadata": { - "Name": "AllowNonVirtualWanTraffic", + "Name": "Identity", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateRange", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "ExplicitProxy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -288967,11 +300680,15 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Snat", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -289009,33 +300726,16 @@ ] }, { - "Name": "ByExpressRouteGatewayResourceId", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "MinScaleUnits", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -289045,61 +300745,69 @@ }, { "ParameterMetadata": { - "Name": "MaxScaleUnits", + "Name": "ThreatIntelMode", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, + "ValidateSet": [ + "Alert", + "Deny", + "Off" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AllowNonVirtualWanTraffic", + "Name": "ThreatIntelWhitelist", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "BasePolicy", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "DnsSetting", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" + } }, "ValidateNotNullOrEmpty": false }, @@ -289110,21 +300818,13 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "SqlSetting", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" } }, "ValidateNotNullOrEmpty": false @@ -289133,39 +300833,35 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "MinScaleUnits", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "MaxScaleUnits", + "Name": "IntrusionDetection", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" + } }, - "ValidateRangeMin": 1, - "ValidateRangeMax": 100, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -289175,29 +300871,26 @@ }, { "ParameterMetadata": { - "Name": "AllowNonVirtualWanTraffic", + "Name": "TransportSecurityName", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Boolean]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Boolean" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "TransportSecurityKeyVaultSecretId", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -289208,12 +300901,17 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "SkuTier", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateSet": [ + "Standard", + "Premium", + "Basic" + ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -289223,234 +300921,93 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", + "Name": "UserAssignedIdentityId", "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" + "UserAssignedIdentity" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzExpressRoutePort", - "Name": "Set-AzExpressRoutePort", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureExpressRoutePortCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ExpressRoutePort", - "AliasList": [ - "InputObject" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "ExpressRoutePort", - "AliasList": [ - "InputObject" - ], + "Name": "Identity", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" } }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ExplicitProxy", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Snat", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -289486,234 +301043,119 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzExpressRoutePortIdentity", - "Name": "Set-AzExpressRoutePortIdentity", - "ClassName": "Microsoft.Azure.Commands.Network.SetExpressRoutePortIdentityCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" + "Name": "SetByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "Location", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ThreatIntelMode", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Alert", + "Deny", + "Off" ], - "ReturnType": "System.Boolean" + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ExpressRoutePort", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "ExpressRoutePort", + "Name": "ThreatIntelWhitelist", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "Links": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "Circuits": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Tag": "System.Collections.Hashtable", - "ProvisionedBandwidthInGbps": "System.Nullable`1[System.Double]", - "BandwidthInGbps": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "IdentityText": "System.String", - "PeeringLocation": "System.String", - "LinksText": "System.String", - "Etag": "System.String", - "BillingType": "System.String", - "ProvisioningState": "System.String", - "AllocationDate": "System.String", - "EtherType": "System.String", - "Encapsulation": "System.String", - "Mtu": "System.String", - "CircuitsText": "System.String", - "Id": "System.String" + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], + "Name": "BasePolicy", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DnsSetting", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" } }, "ValidateNotNullOrEmpty": false @@ -289722,495 +301164,199 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzFirewall", - "Name": "Set-AzFirewall", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureFirewallCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", - "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", - "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", - "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", - "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "NetworkRuleCollectionsText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "DNSServersText": "System.String", - "PrivateRangeText": "System.String", - "ThreatIntelWhitelistText": "System.String", - "Name": "System.String", - "NatRuleCollectionsText": "System.String", - "EnableFatFlowLogging": "System.String", - "ManagementIpConfigurationText": "System.String", - "IpConfigurationsText": "System.String", - "RouteServerId": "System.String", - "EnableUDPLogOptimization": "System.String", - "Etag": "System.String", - "AllowActiveFTP": "System.String", - "ProvisioningState": "System.String", - "DNSEnableProxy": "System.String", - "ThreatIntelMode": "System.String", - "ApplicationRuleCollectionsText": "System.String", - "Id": "System.String", - "DNSServer": "System.String[]", - "PrivateRange": "System.String[]" }, - "Methods": [ - { - "Name": "Allocate", - "Parameters": [ - { - "Name": "virtualHub", - "Type": "Microsoft.Azure.Management.Network.Models.SubResource" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "Allocate", - "Parameters": [ - { - "Name": "virtualHub", - "Type": "Microsoft.Azure.Management.Network.Models.SubResource" - }, - { - "Name": "publicIpAddresses", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "Allocate", - "Parameters": [ - { - "Name": "virtualNetwork", - "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" - }, - { - "Name": "publicIpAddresses", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" - }, - { - "Name": "ManagementPublicIpAddress", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "AllocateBasicSku", - "Parameters": [ - { - "Name": "virtualNetwork", - "Type": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork" - }, - { - "Name": "publicIpAddresses", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" - }, - { - "Name": "ManagementPublicIpAddress", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "Deallocate", - "ReturnType": "System.Void" - }, - { - "Name": "AddPublicIpAddress", - "Parameters": [ - { - "Name": "publicIpAddress", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "RemovePublicIpAddress", - "Parameters": [ - { - "Name": "publicIpAddress", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "AddIpAddressesForByopipHubFirewall", - "Parameters": [ - { - "Name": "publicIpAddresses", - "Type": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress[]" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "AddApplicationRuleCollection", - "Parameters": [ - { - "Name": "ruleCollection", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetApplicationRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" - }, - { - "Name": "GetApplicationRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" - }, - { - "Name": "RemoveApplicationRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "RemoveApplicationRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "AddNatRuleCollection", - "Parameters": [ - { - "Name": "ruleCollection", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" - } - ], - "ReturnType": "System.Void" - }, - { - "Name": "GetNatRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" - }, - { - "Name": "GetNatRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" + { + "ParameterMetadata": { + "Name": "SqlSetting", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "RemoveNatRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "System.Void" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "RemoveNatRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IntrusionDetection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" } - ], - "ReturnType": "System.Void" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "AddNetworkRuleCollection", - "Parameters": [ - { - "Name": "ruleCollection", - "Type": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" - } - ], - "ReturnType": "System.Void" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TransportSecurityName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetNetworkRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "TransportSecurityKeyVaultSecretId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetNetworkRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" - } + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SkuTier", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Standard", + "Premium", + "Basic" ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" + "ValidateNotNullOrEmpty": false }, - { - "Name": "RemoveNetworkRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "UserAssignedIdentityId", + "AliasList": [ + "UserAssignedIdentity" ], - "ReturnType": "System.Void" + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "RemoveNetworkRuleCollectionByPriority", - "Parameters": [ - { - "Name": "priority", - "Type": "System.UInt32" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Identity", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", + "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", + "PrincipalId": "System.String", + "TenantId": "System.String" } - ], - "ReturnType": "System.Void" - }, - { - "Name": "ValidateDNSProxyRequirements", - "ReturnType": "System.Void" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" + }, + "ValidateNotNullOrEmpty": true }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "AzureFirewall", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", - "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", - "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", - "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", - "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "NetworkRuleCollectionsText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "DNSServersText": "System.String", - "PrivateRangeText": "System.String", - "ThreatIntelWhitelistText": "System.String", - "Name": "System.String", - "NatRuleCollectionsText": "System.String", - "EnableFatFlowLogging": "System.String", - "ManagementIpConfigurationText": "System.String", - "IpConfigurationsText": "System.String", - "RouteServerId": "System.String", - "EnableUDPLogOptimization": "System.String", - "Etag": "System.String", - "AllowActiveFTP": "System.String", - "ProvisioningState": "System.String", - "DNSEnableProxy": "System.String", - "ThreatIntelMode": "System.String", - "ApplicationRuleCollectionsText": "System.String", - "Id": "System.String", - "DNSServer": "System.String[]", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { - "Name": "AzureFirewall", + "Name": "ExplicitProxy", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", - "LearnedIPPrefixes": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", - "FirewallPolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "ApplicationRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", - "NatRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", - "NetworkRuleCollections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "NetworkRuleCollectionsText": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "DNSServersText": "System.String", - "PrivateRangeText": "System.String", - "ThreatIntelWhitelistText": "System.String", - "Name": "System.String", - "NatRuleCollectionsText": "System.String", - "EnableFatFlowLogging": "System.String", - "ManagementIpConfigurationText": "System.String", - "IpConfigurationsText": "System.String", - "RouteServerId": "System.String", - "EnableUDPLogOptimization": "System.String", - "Etag": "System.String", - "AllowActiveFTP": "System.String", - "ProvisioningState": "System.String", - "DNSEnableProxy": "System.String", - "ThreatIntelMode": "System.String", - "ApplicationRuleCollectionsText": "System.String", - "Id": "System.String", - "DNSServer": "System.String[]", - "PrivateRange": "System.String[]" + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Snat", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -290251,9 +301397,9 @@ }, { "VerbName": "Set", - "NounName": "AzFirewallPolicy", - "Name": "Set-AzFirewallPolicy", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureFirewallPolicyCommand", + "NounName": "AzFirewallPolicyDraft", + "Name": "Set-AzFirewallPolicyDraft", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureFirewallPolicyDraftCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -290262,32 +301408,20 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", "ThreatIntelMode": "System.String", "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", "Name": "System.String", + "Etag": "System.String", "Id": "System.String", "PrivateRange": "System.String[]" }, @@ -290328,10 +301462,7 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "AzureFirewallPolicyName", "Type": { "Namespace": "System", "Name": "System.String", @@ -290350,10 +301481,34 @@ }, { "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FirewallPolicyObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -290382,7 +301537,7 @@ "PrivateRange": "System.String[]" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "AsJob", @@ -290421,7 +301576,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -290443,7 +301598,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]" @@ -290456,22 +301611,13 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" } }, "ValidateNotNullOrEmpty": false }, - { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "Tag", "Type": { @@ -290486,7 +301632,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", "Profile": "System.String", @@ -290495,65 +301641,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "TransportSecurityName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "TransportSecurityKeyVaultSecretId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SkuTier", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Identity", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, { "Name": "PrivateRange", "Type": { @@ -290569,7 +301656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", "EnablePacFile": "System.Nullable`1[System.Boolean]", @@ -290586,7 +301673,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", "AutoLearnPrivateRanges": "System.String" @@ -290621,10 +301708,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "AzureFirewallPolicyName", "Type": { "Namespace": "System", "Name": "System.String", @@ -290652,21 +301736,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "AsJob", @@ -290708,7 +301777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -290742,7 +301811,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]" @@ -290761,7 +301830,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" } @@ -290794,7 +301863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", "Profile": "System.String", @@ -290810,11 +301879,12 @@ }, { "ParameterMetadata": { - "Name": "TransportSecurityName", + "Name": "PrivateRange", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -290825,11 +301895,19 @@ }, { "ParameterMetadata": { - "Name": "TransportSecurityKeyVaultSecretId", + "Name": "ExplicitProxy", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", + "EnablePacFile": "System.Nullable`1[System.Boolean]", + "HttpPort": "System.Nullable`1[System.Int32]", + "HttpsPort": "System.Nullable`1[System.Int32]", + "PacFilePort": "System.Nullable`1[System.Int32]", + "PacFile": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -290840,36 +301918,166 @@ }, { "ParameterMetadata": { - "Name": "SkuTier", + "Name": "Snat", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", + "AutoLearnPrivateRanges": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByInputObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "ThreatIntelMode", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateSet": [ - "Standard", - "Premium", - "Basic" + "Alert", + "Deny", + "Off" ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ThreatIntelWhitelist", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "FQDNs": "System.String[]", + "IpAddresses": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], + "Name": "BasePolicy", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DnsSetting", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Servers": "System.Collections.Generic.IList`1[System.String]", + "EnableProxy": "System.Nullable`1[System.Boolean]" + } + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -290878,19 +302086,51 @@ }, { "ParameterMetadata": { - "Name": "Identity", + "Name": "SqlSetting", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" + "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IntrusionDetection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", + "Profile": "System.String", + "Mode": "System.String" + } + }, + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -290919,7 +302159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", "EnablePacFile": "System.Nullable`1[System.Boolean]", @@ -290942,7 +302182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", "AutoLearnPrivateRanges": "System.String" @@ -290984,33 +302224,15 @@ ] }, { - "Name": "SetByInputObjectParameterSet", + "Name": "SetByParentInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "InputObject", + "Name": "FirewallPolicyObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -291032,34 +302254,19 @@ "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } }, "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -291102,7 +302309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -291136,7 +302343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]" @@ -291155,7 +302362,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" } @@ -291188,7 +302395,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", "Profile": "System.String", @@ -291202,95 +302409,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "TransportSecurityName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TransportSecurityKeyVaultSecretId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuTier", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Identity", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "PrivateRange", @@ -291313,7 +302431,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", "EnablePacFile": "System.Nullable`1[System.Boolean]", @@ -291336,7 +302454,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", "AutoLearnPrivateRanges": "System.String" @@ -291421,7 +302539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -291455,7 +302573,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]" @@ -291474,7 +302592,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" } @@ -291507,7 +302625,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", "Profile": "System.String", @@ -291521,95 +302639,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "TransportSecurityName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TransportSecurityKeyVaultSecretId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuTier", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Identity", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "PrivateRange", @@ -291632,7 +302661,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", "EnablePacFile": "System.Nullable`1[System.Boolean]", @@ -291655,7 +302684,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", "AutoLearnPrivateRanges": "System.String" @@ -291714,21 +302743,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "Location", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "AsJob", @@ -291770,7 +302784,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -291804,7 +302818,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]" @@ -291823,7 +302837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" } @@ -291856,7 +302870,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", "Profile": "System.String", @@ -291870,95 +302884,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "TransportSecurityName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "TransportSecurityKeyVaultSecretId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "SkuTier", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "Standard", - "Premium", - "Basic" - ], - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "UserAssignedIdentityId", - "AliasList": [ - "UserAssignedIdentity" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Identity", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", - "PrincipalId": "System.String", - "TenantId": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "PrivateRange", @@ -291981,7 +302906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", "EnablePacFile": "System.Nullable`1[System.Boolean]", @@ -292004,7 +302929,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", "AutoLearnPrivateRanges": "System.String" @@ -292049,9 +302974,9 @@ }, { "VerbName": "Set", - "NounName": "AzFirewallPolicyDraft", - "Name": "Set-AzFirewallPolicyDraft", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureFirewallPolicyDraftCommand", + "NounName": "AzFirewallPolicyRuleCollectionGroup", + "Name": "Set-AzFirewallPolicyRuleCollectionGroup", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureFirewallPolicyRuleGroupCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -292060,24 +302985,27 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", + "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", + "Size": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String", - "PrivateRange": "System.String[]" + "Priority": "System.UInt32" }, "Methods": [ + { + "Name": "GetRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -292114,16 +303042,10 @@ ], "Parameters": [ { - "Name": "AzureFirewallPolicyName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -292135,32 +303057,21 @@ "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" + "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", + "Name": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "FirewallPolicyObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", @@ -292192,16 +303103,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ResourceId", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -292210,128 +303112,43 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ThreatIntelMode", + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ThreatIntelWhitelist", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "BasePolicy", + "Name": "FirewallPolicyName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DnsSetting", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "SqlSetting", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IntrusionDetection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateRange", + "Name": "Priority", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ExplicitProxy", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" - } + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, { - "Name": "Snat", + "Name": "RuleCollection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { "Name": "DefaultProfile", @@ -292360,7 +303177,10 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "AzureFirewallPolicyName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -292390,34 +303210,171 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "FirewallPolicyName", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ThreatIntelMode", + "Name": "RuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByParentInputObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FirewallPolicyObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -292425,16 +303382,64 @@ }, { "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByInputObjectParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" + "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", + "Name": "System.String" } }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -292444,14 +303449,94 @@ }, { "ParameterMetadata": { - "Name": "BasePolicy", + "Name": "RuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "SetByResourceIdParameterSet", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + }, + "ValidateNotNullOrEmpty": true + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -292459,14 +303544,21 @@ }, { "ParameterMetadata": { - "Name": "DnsSetting", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -292475,16 +303567,62 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "SqlSetting", + "Name": "RuleCollection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -292493,99 +303631,288 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzFirewallPolicyRuleCollectionGroupDraft", + "Name": "Set-AzFirewallPolicyRuleCollectionGroupDraft", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureFirewallPolicyRuleCollectionGroupDraftCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "SetByNameParameterSet", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", + "Size": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String", + "Priority": "System.UInt32" }, + "Methods": [ + { + "Name": "GetRuleCollectionByName", + "Parameters": [ + { + "Name": "ruleCollectionName", + "Type": "System.String" + } + ], + "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", + "Name": "System.String" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "FirewallPolicyObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", + "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", + "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", + "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", + "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", + "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", + "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", + "ThreatIntelMode": "System.String", + "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Id": "System.String", + "PrivateRange": "System.String[]" + } + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "AzureFirewallPolicyName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Priority", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RuleCollection", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "SetByNameParameterSet", + "Parameters": [ { "ParameterMetadata": { - "Name": "Tag", + "Name": "AzureFirewallPolicyRuleCollectionGroupName", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IntrusionDetection", + "Name": "ResourceGroupName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "AzureFirewallPolicyName", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExplicitProxy", + "Name": "Priority", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" - } + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Snat", + "Name": "RuleCollection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -292616,32 +303943,59 @@ ] }, { - "Name": "SetByInputObjectParameterSet", + "Name": "SetByParentInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FirewallPolicyObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", + "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", + "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", + "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "Tag": "System.Collections.Hashtable", + "Size": "System.String", + "ProvisioningState": "System.String", + "Etag": "System.String", "ThreatIntelMode": "System.String", "PrivateRangeText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", "Name": "System.String", - "Etag": "System.String", "Id": "System.String", "PrivateRange": "System.String[]" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -292650,33 +304004,31 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Priority", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ThreatIntelMode", + "Name": "RuleCollection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -292685,14 +304037,21 @@ }, { "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -292701,52 +304060,41 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "BasePolicy", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + } + ] + }, + { + "Name": "SetByInputObjectParameterSet", + "Parameters": [ { "ParameterMetadata": { - "Name": "DnsSetting", + "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" + "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", + "Name": "System.String" } }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SqlSetting", + "Name": "Priority", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" - } + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -292756,13 +304104,14 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "RuleCollection", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -292771,15 +304120,21 @@ }, { "ParameterMetadata": { - "Name": "IntrusionDetection", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -292788,64 +304143,59 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "SetByResourceIdParameterSet", + "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "ResourceId", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExplicitProxy", + "Name": "Priority", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" - } + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Snat", + "Name": "RuleCollection", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -292876,79 +304226,35 @@ ] }, { - "Name": "SetByParentInputObjectParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "FirewallPolicyObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "AsJob", + "Name": "Priority", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, + "ValidateRangeMin": 100, + "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ThreatIntelMode", + "Name": "RuleCollection", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, @@ -292957,14 +304263,21 @@ }, { "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -292973,62 +304286,231 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzIpAllocation", + "Name": "Set-AzIpAllocation", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AllocationTags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Tag": "System.Collections.Hashtable", + "PrefixLength": "System.Nullable`1[System.Int32]", + "IpAllocationType": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "VirtualNetworkText": "System.String", + "Etag": "System.String", + "SubnetText": "System.String", + "IpamAllocationId": "System.String", + "PrefixType": "System.String", + "Prefix": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceId", + "AliasList": [ + "IpAllocationId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "AliasList": [ + "IpAllocation" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AllocationTags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Tag": "System.Collections.Hashtable", + "PrefixLength": "System.Nullable`1[System.Int32]", + "IpAllocationType": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "VirtualNetworkText": "System.String", + "Etag": "System.String", + "SubnetText": "System.String", + "IpamAllocationId": "System.String", + "PrefixType": "System.String", + "Prefix": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IpAllocationTag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "SetByNameParameterSet", + "Parameters": [ { "ParameterMetadata": { - "Name": "BasePolicy", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DnsSetting", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" - } - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "SqlSetting", + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "IpAllocationTag", "Type": { "Namespace": "System.Collections", "Name": "System.Collections.Hashtable", @@ -293043,74 +304525,26 @@ }, { "ParameterMetadata": { - "Name": "IntrusionDetection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ExplicitProxy", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" - } + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Snat", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -293148,69 +304582,48 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "ThreatIntelMode", + "Name": "ResourceId", + "AliasList": [ + "IpAllocationId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", + "Name": "IpAllocationTag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" - } + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "BasePolicy", + "Name": "Tag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -293221,15 +304634,11 @@ }, { "ParameterMetadata": { - "Name": "DnsSetting", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -293240,13 +304649,21 @@ }, { "ParameterMetadata": { - "Name": "SqlSetting", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -293255,92 +304672,88 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + } + ] + }, + { + "Name": "SetByInputObjectParameterSet", + "Parameters": [ { "ParameterMetadata": { - "Name": "IntrusionDetection", + "Name": "InputObject", + "AliasList": [ + "IpAllocation" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", + "AllocationTags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "Tag": "System.Collections.Hashtable", + "PrefixLength": "System.Nullable`1[System.Int32]", + "IpAllocationType": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "VirtualNetworkText": "System.String", + "Etag": "System.String", + "SubnetText": "System.String", + "IpamAllocationId": "System.String", + "PrefixType": "System.String", + "Prefix": "System.String", + "ResourceGroupName": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateRange", + "Name": "IpAllocationTag", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ExplicitProxy", + "Name": "Tag", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" - } + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Snat", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -293378,19 +304791,34 @@ ] }, { - "Name": "SetByResourceIdParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "IpAllocationTag", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Tag", + "Type": { + "Namespace": "System.Collections", + "Name": "System.Collections.Hashtable", + "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -293412,69 +304840,192 @@ }, { "ParameterMetadata": { - "Name": "ThreatIntelMode", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, - "ValidateSet": [ - "Alert", - "Deny", - "Off" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzIpGroup", + "Name": "Set-AzIpGroup", + "ClassName": "Microsoft.Azure.Commands.Network.SetIpGroupsCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "IpAddresses": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "IpGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "IpAddresses": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "ThreatIntelWhitelist", + "Name": "IpGroup", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "FQDNs": "System.String[]", - "IpAddresses": "System.String[]" + "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "IpAddresses": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "ProvisioningState": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BasePolicy", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DnsSetting", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Servers": "System.Collections.Generic.IList`1[System.String]", - "EnableProxy": "System.Nullable`1[System.Boolean]" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -293485,13 +305036,21 @@ }, { "ParameterMetadata": { - "Name": "SqlSetting", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -293500,92 +305059,217 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzLoadBalancer", + "Name": "Set-AzLoadBalancer", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IntrusionDetection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "Profile": "System.String", - "Mode": "System.String" - } - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateRange", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "ExplicitProxy", + "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", - "EnablePacFile": "System.Nullable`1[System.Boolean]", - "HttpPort": "System.Nullable`1[System.Int32]", - "HttpsPort": "System.Nullable`1[System.Int32]", - "PacFilePort": "System.Nullable`1[System.Int32]", - "PacFile": "System.String" + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Snat", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", - "AutoLearnPrivateRanges": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -293626,9 +305310,9 @@ }, { "VerbName": "Set", - "NounName": "AzFirewallPolicyRuleCollectionGroup", - "Name": "Set-AzFirewallPolicyRuleCollectionGroup", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureFirewallPolicyRuleGroupCommand", + "NounName": "AzLoadBalancerBackendAddressPool", + "Name": "Set-AzLoadBalancerBackendAddressPool", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureLoadBalancerBackendPool", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -293637,26 +305321,48 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", - "Size": "System.String", + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", "Etag": "System.String", - "Id": "System.String", - "Priority": "System.UInt32" + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" }, "Methods": [ { - "Name": "GetRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Name": "ShouldSerializeTunnelInterfaces", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeBackendIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeLoadBalancingRules", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeSyncMode", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeVirtualNetwork", + "ReturnType": "System.Boolean" }, { "Name": "GetType", @@ -293694,10 +305400,7 @@ ], "Parameters": [ { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -293706,60 +305409,98 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", + "Name": "LoadBalancerName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "Name": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "FirewallPolicyObject", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", + "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceGroupName", + "Name": "LoadBalancerBackendAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" }, "ValidateNotNullOrEmpty": true }, @@ -293773,34 +305514,32 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "FirewallPolicyName", + "Name": "TunnelInterface", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Priority", + "Name": "Force", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, { - "Name": "RuleCollection", + "Name": "PassThru", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -293829,10 +305568,7 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Name", - "AliasList": [ - "ResourceName" - ], + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -293843,11 +305579,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "LoadBalancerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -293858,11 +305594,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FirewallPolicyName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", @@ -293873,19 +305609,18 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "LoadBalancerBackendAddress", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -293894,19 +305629,49 @@ }, { "ParameterMetadata": { - "Name": "RuleCollection", + "Name": "TunnelInterface", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Force", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -293937,14 +305702,11 @@ ] }, { - "Name": "SetByParentInputObjectParameterSet", + "Name": "SetByParentObjectParameterSet", "Parameters": [ { "ParameterMetadata": { "Name": "Name", - "AliasList": [ - "ResourceName" - ], "Type": { "Namespace": "System", "Name": "System.String", @@ -293959,78 +305721,110 @@ }, { "ParameterMetadata": { - "Name": "FirewallPolicyObject", + "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" } }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "LoadBalancerBackendAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" + }, "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "TunnelInterface", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleCollection", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -294068,11 +305862,27 @@ "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "Name": "System.String" + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", + "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", + "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": true @@ -294084,14 +305894,13 @@ }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "TunnelInterface", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -294101,19 +305910,33 @@ }, { "ParameterMetadata": { - "Name": "RuleCollection", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -294146,6 +305969,22 @@ { "Name": "SetByResourceIdParameterSet", "Parameters": [ + { + "ParameterMetadata": { + "Name": "LoadBalancerBackendAddress", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ResourceId", @@ -294163,36 +306002,49 @@ }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "TunnelInterface", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleCollection", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -294227,36 +306079,49 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "Priority", + "Name": "TunnelInterface", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleCollection", + "Name": "Force", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PassThru", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -294290,38 +306155,50 @@ }, { "VerbName": "Set", - "NounName": "AzFirewallPolicyRuleCollectionGroupDraft", - "Name": "Set-AzFirewallPolicyRuleCollectionGroupDraft", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureFirewallPolicyRuleCollectionGroupDraftCommand", + "NounName": "AzLoadBalancerFrontendIpConfig", + "Name": "Set-AzLoadBalancerFrontendIpConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerFrontendIpConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByNameParameterSet", + "DefaultParameterSetName": "SetByResourceSubnet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", - "Size": "System.String", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", "Etag": "System.String", - "Id": "System.String", - "Priority": "System.UInt32" + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" }, "Methods": [ - { - "Name": "GetRuleCollectionByName", - "Parameters": [ - { - "Name": "ruleCollectionName", - "Type": "System.String" - } - ], - "ReturnType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -294358,110 +306235,237 @@ ], "Parameters": [ { - "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "InputObject", + "Name": "PrivateIpAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", - "Name": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "FirewallPolicyObject", + "Name": "PrivateIpAddressVersion", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SubnetId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Subnet", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceGroupName", + "Name": "PublicIpAddressId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "ResourceId", + "Name": "PublicIpAddress", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", + "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", + "Etag": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "AzureFirewallPolicyName", + "Name": "PublicIpAddressPrefixId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { - "Name": "Priority", + "Name": "PublicIpAddressPrefix", "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", + "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "CustomIpPrefixText": "System.String", + "IpTagsText": "System.String", + "Etag": "System.String", + "PublicIpAddressesText": "System.String", + "IPPrefix": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "SkuText": "System.String", + "Id": "System.String", + "PrefixLength": "System.UInt16" + } }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, { - "Name": "RuleCollection", + "Name": "GatewayLoadBalancerId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, { "Name": "DefaultProfile", @@ -294486,81 +306490,94 @@ ], "ParameterSets": [ { - "Name": "SetByNameParameterSet", + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Name": "LoadBalancer", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AzureFirewallPolicyName", + "Name": "Zone", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "GatewayLoadBalancerId", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuleCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -294595,93 +306612,37 @@ ] }, { - "Name": "SetByParentInputObjectParameterSet", + "Name": "SetByResourceSubnet", "Parameters": [ { "ParameterMetadata": { - "Name": "AzureFirewallPolicyRuleCollectionGroupName", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "FirewallPolicyObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "ExplicitProxy": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "IntrusionDetection": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "Snat": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "SqlSetting": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "ThreatIntelWhitelist": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "TransportSecurity": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "BasePolicy": "Microsoft.Azure.Management.Network.Models.SubResource", - "RuleCollectionGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "Tag": "System.Collections.Hashtable", - "Size": "System.String", - "ProvisioningState": "System.String", - "Etag": "System.String", - "ThreatIntelMode": "System.String", - "PrivateRangeText": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Id": "System.String", - "PrivateRange": "System.String[]" - } - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, + "ValidateSet": [ + "IPv4", + "IPv6" + ], "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuleCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -294689,81 +306650,122 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Subnet", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByInputObjectParameterSet", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraftWrapper, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Properties": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", - "Name": "System.String" + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Priority", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RuleCollection", + "Name": "Zone", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -294772,78 +306774,14 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceIdParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "ResourceId", + "Name": "GatewayLoadBalancerId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Priority", - "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "RuleCollection", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, @@ -294878,18 +306816,16 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByResourceIdSubnet", "Parameters": [ { "ParameterMetadata": { - "Name": "Priority", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateRangeMin": 100, - "ValidateRangeMax": 65000, "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -294899,14 +306835,17 @@ }, { "ParameterMetadata": { - "Name": "RuleCollection", + "Name": "PrivateIpAddressVersion", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, @@ -294915,235 +306854,63 @@ }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "SubnetId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzIpAllocation", - "Name": "Set-AzIpAllocation", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureIpAllocationCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AllocationTags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Tag": "System.Collections.Hashtable", - "PrefixLength": "System.Nullable`1[System.Int32]", - "IpAllocationType": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "VirtualNetworkText": "System.String", - "Etag": "System.String", - "SubnetText": "System.String", - "IpamAllocationId": "System.String", - "PrefixType": "System.String", - "Prefix": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceId", - "AliasList": [ - "IpAllocationId" - ], - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "InputObject", - "AliasList": [ - "IpAllocation" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AllocationTags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", - "Tag": "System.Collections.Hashtable", - "PrefixLength": "System.Nullable`1[System.Int32]", - "IpAllocationType": "System.String", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "VirtualNetworkText": "System.String", - "Etag": "System.String", - "SubnetText": "System.String", - "IpamAllocationId": "System.String", - "PrefixType": "System.String", - "Prefix": "System.String", - "ResourceGroupName": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IpAllocationTag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Tag", - "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "SetByNameParameterSet", - "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "LoadBalancer", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -295153,7 +306920,7 @@ "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -295162,11 +306929,12 @@ }, { "ParameterMetadata": { - "Name": "IpAllocationTag", + "Name": "Zone", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -295177,11 +306945,11 @@ }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "GatewayLoadBalancerId", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -295190,21 +306958,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -295234,20 +306987,17 @@ ] }, { - "Name": "SetByResourceIdParameterSet", + "Name": "SetByResourceIdPublicIpAddress", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceId", - "AliasList": [ - "IpAllocationId" - ], + "Name": "PublicIpAddressId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -295256,26 +307006,72 @@ }, { "ParameterMetadata": { - "Name": "IpAllocationTag", + "Name": "LoadBalancer", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Name", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Zone", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -295286,18 +307082,18 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "GatewayLoadBalancerId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -295328,37 +307124,89 @@ ] }, { - "Name": "SetByInputObjectParameterSet", + "Name": "SetByResourcePublicIpAddress", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", - "AliasList": [ - "IpAllocation" - ], + "Name": "PublicIpAddress", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AllocationTags": "System.Collections.Generic.IDictionary`2[System.String,System.String]", + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "PrefixLength": "System.Nullable`1[System.Int32]", - "IpAllocationType": "System.String", - "Name": "System.String", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", "TagsTable": "System.String", "Type": "System.String", + "Name": "System.String", "ResourceGuid": "System.String", "Location": "System.String", - "VirtualNetworkText": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", "Etag": "System.String", - "SubnetText": "System.String", - "IpamAllocationId": "System.String", - "PrefixType": "System.String", - "Prefix": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", "Id": "System.String" } }, @@ -295367,30 +307215,31 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IpAllocationTag", + "Name": "Name", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Zone", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -295401,18 +307250,18 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "GatewayLoadBalancerId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -295443,30 +307292,91 @@ ] }, { - "Name": "__AllParameterSets", + "Name": "SetByResourceIdPublicIpAddressPrefix", "Parameters": [ { "ParameterMetadata": { - "Name": "IpAllocationTag", + "Name": "PublicIpAddressPrefixId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Tag", + "Name": "Zone", "Type": { - "Namespace": "System.Collections", - "Name": "System.Collections.Hashtable", - "AssemblyQualifiedName": "System.Collections.Hashtable, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -295477,18 +307387,18 @@ }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "GatewayLoadBalancerId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -295517,150 +307427,86 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzIpGroup", - "Name": "Set-AzIpGroup", - "ClassName": "Microsoft.Azure.Commands.Network.SetIpGroupsCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "IpAddresses": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "IpGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "IpAddresses": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", - "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "TagsTable": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByResourcePublicIpAddressPrefix", "Parameters": [ { "ParameterMetadata": { - "Name": "IpGroup", + "Name": "PublicIpAddressPrefix", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", - "IpAddresses": "System.Collections.Generic.List`1[System.String]", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", + "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "ProvisioningState": "System.String", + "Name": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "CustomIpPrefixText": "System.String", + "IpTagsText": "System.String", + "Etag": "System.String", + "PublicIpAddressesText": "System.String", + "IPPrefix": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "SkuText": "System.String", + "Id": "System.String", + "PrefixLength": "System.UInt16" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", "Location": "System.String", "ResourceGuid": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", "Id": "System.String" } }, @@ -295669,22 +307515,53 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Zone", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "GatewayLoadBalancerId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -295718,19 +307595,19 @@ }, { "VerbName": "Set", - "NounName": "AzLoadBalancer", - "Name": "Set-AzLoadBalancer", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureLoadBalancerCommand", + "NounName": "AzLoadBalancerInboundNatPoolConfig", + "Name": "Set-AzLoadBalancerInboundNatPoolConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerInboundNatPoolConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -295802,7 +307679,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -295837,7 +307714,70 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FrontendPortRangeStart", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FrontendPortRangeEnd", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableFloatingIP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -295845,6 +307785,51 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "FrontendIpConfigurationId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FrontendIpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -295876,7 +307861,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -295913,391 +307898,101 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzLoadBalancerBackendAddressPool", - "Name": "Set-AzLoadBalancerBackendAddressPool", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureLoadBalancerBackendPool", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "SetByNameParameterSet", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" }, - "Methods": [ - { - "Name": "ShouldSerializeTunnelInterfaces", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeBackendIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeLoadBalancingRules", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeSyncMode", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeVirtualNetwork", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "ResourceGroupName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "LoadBalancerName", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "LoadBalancer", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "LoadBalancerBackendAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "ResourceId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - { - "Name": "TunnelInterface", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PassThru", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "SetByNameParameterSet", - "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LoadBalancerName", + "Name": "FrontendPortRangeStart", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "FrontendPortRangeEnd", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LoadBalancerBackendAddress", + "Name": "BackendPort", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TunnelInterface", + "Name": "IdleTimeoutInMinutes", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", + "Name": "EnableFloatingIP", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -296312,7 +308007,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -296354,22 +308049,22 @@ ] }, { - "Name": "SetByParentObjectParameterSet", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "FrontendIpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { @@ -296377,7 +308072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -296414,18 +308109,17 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LoadBalancerBackendAddress", + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -296434,135 +308128,82 @@ }, { "ParameterMetadata": { - "Name": "TunnelInterface", + "Name": "Protocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", + "Name": "FrontendPortRangeStart", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "FrontendPortRangeEnd", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "BackendPort", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByInputObjectParameterSet", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": true - }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "TunnelInterface", + "Name": "IdleTimeoutInMinutes", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", + "Name": "EnableFloatingIP", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -296577,7 +308218,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -296619,135 +308260,188 @@ ] }, { - "Name": "SetByResourceIdParameterSet", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancerBackendAddress", + "Name": "FrontendIpConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", + "Id": "System.String" + } }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ResourceId", + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "TunnelInterface", + "Name": "Protocol", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", + "Name": "FrontendPortRangeStart", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "FrontendPortRangeEnd", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "BackendPort", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "TunnelInterface", + "Name": "IdleTimeoutInMinutes", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Force", + "Name": "EnableFloatingIP", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -296762,7 +308456,7 @@ }, { "ParameterMetadata": { - "Name": "PassThru", + "Name": "EnableTcpReset", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -296807,19 +308501,19 @@ }, { "VerbName": "Set", - "NounName": "AzLoadBalancerFrontendIpConfig", - "Name": "Set-AzLoadBalancerFrontendIpConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerFrontendIpConfigCommand", + "NounName": "AzLoadBalancerInboundNatRuleConfig", + "Name": "Set-AzLoadBalancerInboundNatRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerInboundNatRuleConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResourceSubnet", + "DefaultParameterSetName": "SetByResource", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -296891,7 +308585,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -296935,7 +308629,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PrivateIpAddress", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -296944,81 +308638,52 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PrivateIpAddressVersion", + "Name": "FrontendPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": false }, { - "Name": "Zone", + "Name": "BackendPort", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "SubnetId", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "Subnet", + "Name": "EnableFloatingIP", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpAddressId", + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FrontendIpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -297027,91 +308692,67 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpAddress", + "Name": "FrontendIpConfiguration", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", "Etag": "System.String", - "IpConfigurationText": "System.String", "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpAddressPrefixId", + "Name": "FrontendPortRangeStart", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpAddressPrefix", + "Name": "FrontendPortRangeEnd", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", - "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "CustomIpPrefixText": "System.String", - "IpTagsText": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "IPPrefix": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "SkuText": "System.String", - "Id": "System.String", - "PrefixLength": "System.UInt16" - } + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, { - "Name": "GatewayLoadBalancerId", + "Name": "BackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String", @@ -297119,6 +308760,35 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "BackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", + "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", + "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -297150,7 +308820,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -297206,12 +308876,11 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -297222,11 +308891,107 @@ }, { "ParameterMetadata": { - "Name": "GatewayLoadBalancerId", + "Name": "FrontendPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BackendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableFloatingIP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FrontendPortRangeStart", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPortRangeEnd", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -297264,11 +309029,11 @@ ] }, { - "Name": "SetByResourceSubnet", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "FrontendIpConfigurationId", "Type": { "Namespace": "System", "Name": "System.String", @@ -297283,16 +309048,12 @@ }, { "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", + "Name": "BackendAddressPoolId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -297300,61 +309061,13 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -297410,12 +309123,11 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -297426,11 +309138,107 @@ }, { "ParameterMetadata": { - "Name": "GatewayLoadBalancerId", + "Name": "FrontendPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BackendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableFloatingIP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FrontendPortRangeStart", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPortRangeEnd", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -297468,15 +309276,42 @@ ] }, { - "Name": "SetByResourceIdSubnet", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "FrontendIpConfiguration", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Name": "System.String", + "PublicIPPrefixText": "System.String", + "PublicIpAddressText": "System.String", + "SubnetText": "System.String", + "LoadBalancingRulesText": "System.String", + "OutboundRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "PrivateIpAddress": "System.String", + "InboundNatRulesText": "System.String", + "ZonesText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateIpAddressVersion": "System.String", + "PrivateIpAllocationMethod": "System.String", + "GatewayLoadBalancerText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -297487,16 +309322,32 @@ }, { "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", + "Name": "BackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", + "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", + "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" + } }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": false }, "Mandatory": false, @@ -297504,28 +309355,13 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, - { - "ParameterMetadata": { - "Name": "SubnetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -297581,12 +309417,11 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -297597,11 +309432,107 @@ }, { "ParameterMetadata": { - "Name": "GatewayLoadBalancerId", + "Name": "FrontendPort", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "BackendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableFloatingIP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "FrontendPortRangeStart", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPortRangeEnd", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] }, "ValidateNotNullOrEmpty": false }, @@ -297637,32 +309568,254 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzLoadBalancerOutboundRuleConfig", + "Name": "Set-AzLoadBalancerOutboundRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerOutboundRuleConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "SetByResource", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "SetByResourceIdPublicIpAddress", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AllocatedOutboundPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "FrontendIpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendAddressPoolId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", + "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", + "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "PublicIpAddressId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -297718,12 +309871,11 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "AllocatedOutboundPort", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -297734,7 +309886,7 @@ }, { "ParameterMetadata": { - "Name": "GatewayLoadBalancerId", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -297742,11 +309894,57 @@ }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "FrontendIpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -297776,46 +309974,15 @@ ] }, { - "Name": "SetByResourcePublicIpAddress", + "Name": "SetByResourceId", "Parameters": [ { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "BackendAddressPoolId", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -297830,7 +309997,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -297886,12 +310053,11 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "AllocatedOutboundPort", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -297902,7 +310068,7 @@ }, { "ParameterMetadata": { - "Name": "GatewayLoadBalancerId", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -297910,11 +310076,57 @@ }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "FrontendIpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -297944,15 +310156,35 @@ ] }, { - "Name": "SetByResourceIdPublicIpAddressPrefix", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "PublicIpAddressPrefixId", + "Name": "BackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", + "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", + "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", + "ProvisioningState": "System.String", + "Name": "System.String", + "VirtualNetworkText": "System.String", + "SyncModeText": "System.String", + "TunnelInterfacesText": "System.String", + "BackendIpConfigurationsText": "System.String", + "LoadBalancerBackendAddressesText": "System.String", + "LoadBalancingRulesText": "System.String", + "Etag": "System.String", + "SyncMode": "System.String", + "OutboundRuleText": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, @@ -297967,7 +310199,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -298023,12 +310255,11 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "AllocatedOutboundPort", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -298039,7 +310270,7 @@ }, { "ParameterMetadata": { - "Name": "GatewayLoadBalancerId", + "Name": "Protocol", "Type": { "Namespace": "System", "Name": "System.String", @@ -298047,11 +310278,57 @@ }, "ValidateNotNullOrEmpty": false }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "IdleTimeoutInMinutes", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "FrontendIpConfiguration", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -298079,58 +310356,236 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzLoadBalancerProbeConfig", + "Name": "Set-AzLoadBalancerProbeConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerProbeConfigCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "SetByResourcePublicIpAddressPrefix", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "PublicIpAddressPrefix", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", - "CustomIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "CustomIpPrefixText": "System.String", - "IpTagsText": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "IPPrefix": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "SkuText": "System.String", - "Id": "System.String", - "PrefixLength": "System.UInt16" + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" } - }, - "ValidateNotNullOrEmpty": false + ], + "ReturnType": "System.Boolean" }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "LoadBalancer", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", + "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", + "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", + "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", + "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", + "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", + "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "Name": "System.String", + "ResourceGroupName": "System.String", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "LoadBalancingRulesText": "System.String", + "InboundNatPoolsText": "System.String", + "InboundNatRulesText": "System.String", + "ProbesText": "System.String", + "Etag": "System.String", + "BackendAddressPoolsText": "System.String", + "FrontendIpConfigurationsText": "System.String", + "SkuText": "System.String", + "OutboundRulesText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Port", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "IntervalInSeconds", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProbeCount", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProbeThreshold", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "RequestPath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "NoHealthyBackendsBehavior", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -298186,12 +310641,11 @@ }, { "ParameterMetadata": { - "Name": "Zone", + "Name": "Protocol", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -298202,7 +310656,85 @@ }, { "ParameterMetadata": { - "Name": "GatewayLoadBalancerId", + "Name": "Port", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IntervalInSeconds", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ProbeCount", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ProbeThreshold", + "Type": { + "Namespace": "System", + "Name": "System.Nullable`1[System.Int32]", + "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "System.Int32" + ] + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "RequestPath", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "NoHealthyBackendsBehavior", "Type": { "Namespace": "System", "Name": "System.String", @@ -298247,9 +310779,9 @@ }, { "VerbName": "Set", - "NounName": "AzLoadBalancerInboundNatPoolConfig", - "Name": "Set-AzLoadBalancerInboundNatPoolConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerInboundNatPoolConfigCommand", + "NounName": "AzLoadBalancerRuleConfig", + "Name": "Set-AzLoadBalancerRuleConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerRuleConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -298259,7 +310791,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -298331,7 +310863,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -298384,16 +310916,16 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "FrontendPortRangeStart", + "Name": "LoadDistribution", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "FrontendPortRangeEnd", + "Name": "FrontendPort", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -298437,6 +310969,15 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "DisableOutboundSNAT", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "FrontendIpConfigurationId", "Type": { @@ -298451,7 +310992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -298482,6 +311023,59 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "BackendAddressPoolId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ProbeId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Probe", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "IntervalInSeconds": "System.Int32", + "NumberOfProbes": "System.Int32", + "ProbeThreshold": "System.Nullable`1[System.Int32]", + "Protocol": "System.String", + "RequestPath": "System.String", + "NoHealthyBackendsBehavior": "System.String", + "ProvisioningState": "System.String", + "LoadBalancingRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -298513,7 +311107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -298577,29 +311171,29 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FrontendPortRangeStart", + "Name": "LoadDistribution", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", + "Name": "FrontendPort", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -298607,7 +311201,7 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -298622,7 +311216,7 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -298672,6 +311266,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DisableOutboundSNAT", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -298718,13 +311327,44 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "BackendAddressPoolId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ProbeId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -298788,29 +311428,29 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FrontendPortRangeStart", + "Name": "LoadDistribution", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", + "Name": "FrontendPort", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -298818,7 +311458,7 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -298833,7 +311473,7 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true @@ -298883,6 +311523,21 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DisableOutboundSNAT", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -298920,7 +311575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -298956,13 +311611,59 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, + { + "ParameterMetadata": { + "Name": "BackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Probe", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Port": "System.Int32", + "IntervalInSeconds": "System.Int32", + "NumberOfProbes": "System.Int32", + "ProbeThreshold": "System.Nullable`1[System.Int32]", + "Protocol": "System.String", + "RequestPath": "System.String", + "NoHealthyBackendsBehavior": "System.String", + "ProvisioningState": "System.String", + "LoadBalancingRulesText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "LoadBalancer", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", @@ -299026,14 +311727,29 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FrontendPortRangeStart", + "Name": "LoadDistribution", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "FrontendPort", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -299041,14 +311757,29 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", + "Name": "BackendPort", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", "Name": "System.Int32", @@ -299056,33 +311787,324 @@ }, "ValidateNotNullOrEmpty": false }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "EnableFloatingIP", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "EnableTcpReset", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DisableOutboundSNAT", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzLocalNetworkGateway", + "Name": "Set-AzLocalNetworkGateway", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "Tag": "System.Collections.Hashtable", + "GatewayIpAddress": "System.String", + "Fqdn": "System.String", + "ProvisioningState": "System.String", + "AddressSpaceText": "System.String", + "BgpSettingsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "LocalNetworkGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "Tag": "System.Collections.Hashtable", + "GatewayIpAddress": "System.String", + "Fqdn": "System.String", + "ProvisioningState": "System.String", + "AddressSpaceText": "System.String", + "BgpSettingsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Asn", + "Type": { + "Namespace": "System", + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "BgpPeeringAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "PeerWeight", + "Type": { + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "LocalNetworkGateway", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", + "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", + "Tag": "System.Collections.Hashtable", + "GatewayIpAddress": "System.String", + "Fqdn": "System.String", + "ProvisioningState": "System.String", + "AddressSpaceText": "System.String", + "BgpSettingsText": "System.String", + "ResourceGroupName": "System.String", + "Location": "System.String", + "ResourceGuid": "System.String", + "Type": "System.String", + "TagsTable": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, "Mandatory": true, "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AddressPrefix", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": false, + "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "BackendPort", + "Name": "Asn", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.UInt32", + "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "BgpPeeringAddress", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -299093,22 +312115,22 @@ }, { "ParameterMetadata": { - "Name": "EnableFloatingIP", + "Name": "PeerWeight", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -299153,47 +312175,37 @@ }, { "VerbName": "Set", - "NounName": "AzLoadBalancerInboundNatRuleConfig", - "Name": "Set-AzLoadBalancerInboundNatRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerInboundNatRuleConfigCommand", + "NounName": "AzNatGateway", + "Name": "Set-AzNatGateway", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureNatGatewayCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "SetByNameParameterSet", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ResourceGroupName": "System.String", "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "PublicIpPrefixesText": "System.String", + "ResourceGroupName": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "PublicIpAddressesText": "System.String", "SkuText": "System.String", - "OutboundRulesText": "System.String", + "ProvisioningState": "System.String", + "Location": "System.String", "Id": "System.String" }, "Methods": [ @@ -299233,211 +312245,102 @@ ], "Parameters": [ { - "Name": "LoadBalancer", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "Protocol", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FrontendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableFloatingIP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableTcpReset", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "FrontendIpConfigurationId", + "Name": "ResourceId", + "AliasList": [ + "NatGatewayId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "FrontendIpConfiguration", + "Name": "InputObject", + "AliasList": [ + "NatGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "PublicIpPrefixesText": "System.String", + "ResourceGroupName": "System.String", "Etag": "System.String", + "PublicIpAddressesText": "System.String", + "SkuText": "System.String", "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", + "Location": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "FrontendPortRangeStart", + "Name": "PublicIpAddress", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, { - "Name": "FrontendPortRangeEnd", + "Name": "PublicIpPrefix", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, { - "Name": "BackendAddressPoolId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, { - "Name": "BackendAddressPool", + "Name": "IdleTimeoutInMinutes", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -299464,62 +312367,17 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "SetByNameParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, @@ -299528,71 +312386,43 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "Name", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "PublicIpAddress", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableFloatingIP", + "Name": "PublicIpPrefix", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, @@ -299603,7 +312433,7 @@ }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -299618,39 +312448,18 @@ }, { "ParameterMetadata": { - "Name": "FrontendPortRangeStart", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -299681,165 +312490,50 @@ ] }, { - "Name": "SetByResourceId", + "Name": "SetByResourceIdParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "FrontendIpConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "LoadBalancer", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceId", + "AliasList": [ + "NatGatewayId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "PublicIpAddress", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableFloatingIP", + "Name": "PublicIpPrefix", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, @@ -299850,7 +312544,7 @@ }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -299865,39 +312559,18 @@ }, { "ParameterMetadata": { - "Name": "FrontendPortRangeStart", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -299928,208 +312601,174 @@ ] }, { - "Name": "SetByResource", + "Name": "SetByInputObjectParameterSet", "Parameters": [ { "ParameterMetadata": { - "Name": "FrontendIpConfiguration", + "Name": "InputObject", + "AliasList": [ + "NatGateway" + ], "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", + "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", + "TagsTable": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "PublicIpPrefixesText": "System.String", + "ResourceGroupName": "System.String", "Etag": "System.String", + "PublicIpAddressesText": "System.String", + "SkuText": "System.String", "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", + "Location": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendAddressPool", + "Name": "PublicIpAddress", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "PublicIpPrefix", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "IdleTimeoutInMinutes", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FrontendPort", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "BackendPort", + "Name": "PublicIpAddress", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "PublicIpPrefix", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableFloatingIP", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -300144,11 +312783,11 @@ }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "IdleTimeoutInMinutes", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.Int32", + "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -300159,39 +312798,274 @@ }, { "ParameterMetadata": { - "Name": "FrontendPortRangeStart", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzNetworkInterface", + "Name": "Set-AzNetworkInterface", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand", + "SupportsShouldProcess": false, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", + "Etag": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "ShouldSerializeIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeTapConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeHostedWorkloads", + "ReturnType": "System.Boolean" + }, + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "NetworkInterface", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", + "Etag": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "FrontendPortRangeEnd", + "Name": "NetworkInterface", "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", + "Etag": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -300225,10 +313099,10 @@ }, { "VerbName": "Set", - "NounName": "AzLoadBalancerOutboundRuleConfig", - "Name": "Set-AzLoadBalancerOutboundRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerOutboundRuleConfigCommand", - "SupportsShouldProcess": true, + "NounName": "AzNetworkInterfaceIpConfig", + "Name": "Set-AzNetworkInterfaceIpConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand", + "SupportsShouldProcess": false, "ConfirmImpact": 2, "SupportsPaging": false, "DefaultParameterSetName": "SetByResource", @@ -300236,39 +313110,56 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", "TagsTable": "System.String", "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeTapConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeHostedWorkloads", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -300305,64 +313196,73 @@ ], "Parameters": [ { - "Name": "LoadBalancer", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkInterface", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", "TagsTable": "System.String", "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AllocatedOutboundPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": true }, { - "Name": "Protocol", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -300371,7 +313271,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "EnableTcpReset", + "Name": "Primary", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -300380,26 +313280,58 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "IdleTimeoutInMinutes", + "Name": "SubnetId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "FrontendIpConfiguration", + "Name": "Subnet", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, { - "Name": "BackendAddressPoolId", + "Name": "PublicIpAddressId", "Type": { "Namespace": "System", "Name": "System.String", @@ -300408,34 +313340,134 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "BackendAddressPool", + "Name": "PublicIpAddress", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", + "Type": "System.String", "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "ExtendedLocationText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", + "SkuText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, + { + "Name": "LoadBalancerBackendAddressPoolId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "LoadBalancerBackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "LoadBalancerInboundNatRuleId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "LoadBalancerInboundNatRule", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ApplicationGatewayBackendAddressPoolId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ApplicationGatewayBackendAddressPool", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ApplicationSecurityGroupId", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ApplicationSecurityGroup", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "GatewayLoadBalancerId", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "DefaultProfile", "AliasList": [ @@ -300463,39 +313495,59 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "Name", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NetworkInterface", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", "TagsTable": "System.String", "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", "Id": "System.String" } }, @@ -300504,41 +313556,30 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AllocatedOutboundPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -300546,14 +313587,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "Primary", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -300566,37 +313607,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendIpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -300630,67 +313640,22 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "BackendAddressPoolId", + "Name": "SubnetId", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "LoadBalancer", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PublicIpAddressId", "Type": { "Namespace": "System", "Name": "System.String", @@ -300698,18 +313663,19 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AllocatedOutboundPort", + "Name": "LoadBalancerBackendAddressPoolId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -300720,41 +313686,44 @@ }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "LoadBalancerInboundNatRuleId", "Type": { "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "ApplicationGatewayBackendAddressPoolId", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "ApplicationSecurityGroupId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" }, "ValidateNotNullOrEmpty": false }, @@ -300765,121 +313734,59 @@ }, { "ParameterMetadata": { - "Name": "FrontendIpConfiguration", + "Name": "Name", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResource", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "BackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", - "LoadBalancerBackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "TunnelInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "ProvisioningState": "System.String", - "Name": "System.String", - "VirtualNetworkText": "System.String", - "SyncModeText": "System.String", - "TunnelInterfacesText": "System.String", - "BackendIpConfigurationsText": "System.String", - "LoadBalancerBackendAddressesText": "System.String", - "LoadBalancingRulesText": "System.String", - "Etag": "System.String", - "SyncMode": "System.String", - "OutboundRuleText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "NetworkInterface", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", "TagsTable": "System.String", "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", "Id": "System.String" } }, @@ -300888,41 +313795,30 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "AllocatedOutboundPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -300930,14 +313826,14 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "Primary", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -300950,37 +313846,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendIpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -301008,296 +313873,128 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzLoadBalancerProbeConfig", - "Name": "Set-AzLoadBalancerProbeConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerProbeConfigCommand", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "LoadBalancer", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", - "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Port", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IntervalInSeconds", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProbeCount", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProbeThreshold", - "Type": { - "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "RequestPath", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "NoHealthyBackendsBehavior", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "SetByResource", "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "Subnet", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", + "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", + "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", + "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", + "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", + "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", + "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", + "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", + "AddressPrefix": "System.Collections.Generic.List`1[System.String]", + "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", + "PrivateLinkServiceNetworkPolicies": "System.String", + "Name": "System.String", + "DefaultOutboundAccessText": "System.String", + "IpAllocationsText": "System.String", + "DelegationsText": "System.String", + "PrivateEndpointsText": "System.String", + "ServiceEndpointPoliciesText": "System.String", + "ServiceEndpointText": "System.String", + "NatGatewayText": "System.String", + "RouteTableText": "System.String", + "NetworkSecurityGroupText": "System.String", + "ResourceNavigationLinksText": "System.String", + "ServiceAssociationLinksText": "System.String", + "IpConfigurationsText": "System.String", + "Etag": "System.String", + "ProvisioningState": "System.String", + "PrivateEndpointNetworkPolicies": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PublicIpAddress", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { + "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", + "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", + "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", + "Zones": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", + "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", + "TagsTable": "System.String", "Type": "System.String", - "ProvisioningState": "System.String", "Name": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", "ResourceGroupName": "System.String", - "TagsTable": "System.String", "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "PublicIpPrefixText": "System.String", + "DdosSettingsText": "System.String", + "IpTagsText": "System.String", + "DnsSettingsText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", + "IpConfigurationText": "System.String", + "ProvisioningState": "System.String", + "PublicIpAddressVersion": "System.String", + "IpAddress": "System.String", + "PublicIpAllocationMethod": "System.String", "SkuText": "System.String", - "OutboundRulesText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Name", + "Name": "LoadBalancerBackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Protocol", + "Name": "LoadBalancerInboundNatRule", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" }, "ValidateNotNullOrEmpty": false }, @@ -301308,85 +314005,138 @@ }, { "ParameterMetadata": { - "Name": "Port", + "Name": "ApplicationGatewayBackendAddressPool", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IntervalInSeconds", + "Name": "ApplicationSecurityGroup", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ProbeCount", + "Name": "GatewayLoadBalancerId", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ProbeThreshold", + "Name": "Name", "Type": { "Namespace": "System", - "Name": "System.Nullable`1[System.Int32]", - "AssemblyQualifiedName": "System.Nullable`1[[System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "GenericTypeArguments": [ - "System.Int32" - ] + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "RequestPath", + "Name": "NetworkInterface", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", + "TagsTable": "System.String", + "ExtendedLocationText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", + "Etag": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "PrivateIpAddressVersion", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateSet": [ + "IPv4", + "IPv6" + ], + "ValidateNotNullOrEmpty": true }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NoHealthyBackendsBehavior", + "Name": "PrivateIpAddress", "Type": { "Namespace": "System", "Name": "System.String", @@ -301397,7 +314147,22 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Primary", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { @@ -301431,9 +314196,9 @@ }, { "VerbName": "Set", - "NounName": "AzLoadBalancerRuleConfig", - "Name": "Set-AzLoadBalancerRuleConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmLoadBalancerRuleConfigCommand", + "NounName": "AzNetworkInterfaceTapConfig", + "Name": "Set-AzNetworkInterfaceTapConfig", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmNetworkInterfaceTapConfigCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -301442,39 +314207,56 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", + "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", + "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", + "VnetEncryptionSupported": "System.Boolean", + "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", + "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", + "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", - "ResourceGroupName": "System.String", + "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", + "Primary": "System.Nullable`1[System.Boolean]", + "EnableIPForwarding": "System.Nullable`1[System.Boolean]", "TagsTable": "System.String", "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "Name": "System.String", + "Type": "System.String", + "ResourceGuid": "System.String", + "Location": "System.String", + "ResourceGroupName": "System.String", + "PrivateEndpointText": "System.String", + "AuxiliarySku": "System.String", + "DnsSettingsText": "System.String", + "TapConfigurationsText": "System.String", + "IpConfigurationsText": "System.String", + "VirtualMachineText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", + "AuxiliaryMode": "System.String", + "ProvisioningState": "System.String", + "DisableTcpStateTracking": "System.String", + "MacAddress": "System.String", + "NetworkSecurityGroupText": "System.String", "Id": "System.String" }, "Methods": [ + { + "Name": "ShouldSerializeIpConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeTapConfigurations", + "ReturnType": "System.Boolean" + }, + { + "Name": "ShouldSerializeHostedWorkloads", + "ReturnType": "System.Boolean" + }, { "Name": "GetType", "ReturnType": "System.Type" @@ -301511,109 +314293,25 @@ ], "Parameters": [ { - "Name": "LoadBalancer", + "Name": "NetworkInterfaceTapConfig", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", + "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "NetworkInterfaceName": "System.String", + "VirtualNetworkTapText": "System.String", + "Name": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LoadDistribution", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FrontendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableFloatingIP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "EnableTcpReset", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -301622,7 +314320,7 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "DisableOutboundSNAT", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -301630,104 +314328,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "FrontendIpConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "FrontendIpConfiguration", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "BackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ProbeId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Probe", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "IntervalInSeconds": "System.Int32", - "NumberOfProbes": "System.Int32", - "ProbeThreshold": "System.Nullable`1[System.Int32]", - "Protocol": "System.String", - "RequestPath": "System.String", - "NoHealthyBackendsBehavior": "System.String", - "ProvisioningState": "System.String", - "LoadBalancingRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -301755,39 +314355,18 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "NetworkInterfaceTapConfig", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "Name": "System.String", + "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", + "NetworkInterfaceName": "System.String", + "VirtualNetworkTapText": "System.String", + "Name": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", "Id": "System.String" } }, @@ -301796,116 +314375,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "LoadDistribution", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EnableFloatingIP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -301920,7 +314394,7 @@ }, { "ParameterMetadata": { - "Name": "DisableOutboundSNAT", + "Name": "Force", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -301960,91 +314434,162 @@ "ValueFromPipelineByPropertyName": false } ] - }, + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzNetworkManager", + "Name": "Set-AzNetworkManager", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerCommand", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "FrontendIpConfigurationId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerScopeAccesses": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "NetworkManagerScopeAccessesText": "System.String", + "NetworkManagerScopesText": "System.String", + "TagsTable": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "BackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ProbeId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerScopeAccesses": "System.Collections.Generic.List`1[System.String]", + "Tag": "System.Collections.Hashtable", + "Location": "System.String", + "NetworkManagerScopeAccessesText": "System.String", + "NetworkManagerScopesText": "System.String", + "TagsTable": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "InputObject", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", + "NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerScopeAccesses": "System.Collections.Generic.List`1[System.String]", "Tag": "System.Collections.Hashtable", "Location": "System.String", - "ResourceGuid": "System.String", + "NetworkManagerScopeAccessesText": "System.String", + "NetworkManagerScopesText": "System.String", + "TagsTable": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", "Type": "System.String", "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", "Id": "System.String" } }, @@ -302053,131 +314598,222 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "LoadDistribution", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "FrontendPort", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzNetworkManagerConnectivityConfiguration", + "Name": "Set-AzNetworkManagerConnectivityConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerConnectivityConfiguration", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", + "Hubs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]", + "NetworkManagerName": "System.String", + "Name": "System.String", + "SystemDataText": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Description": "System.String", + "ResourceGroupName": "System.String", + "HubsText": "System.String", + "AppliesToGroupsText": "System.String", + "IsGlobal": "System.String", + "DeleteExistingPeering": "System.String", + "ConnectivityTopology": "System.String", + "Etag": "System.String", + "Id": "System.String" }, - { - "ParameterMetadata": { - "Name": "BackendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "ToString", + "ReturnType": "System.String" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EnableFloatingIP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", + "Hubs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]", + "NetworkManagerName": "System.String", + "Name": "System.String", + "SystemDataText": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Description": "System.String", + "ResourceGroupName": "System.String", + "HubsText": "System.String", + "AppliesToGroupsText": "System.String", + "IsGlobal": "System.String", + "DeleteExistingPeering": "System.String", + "ConnectivityTopology": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "EnableTcpReset", + "Name": "InputObject", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", + "Hubs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]", + "NetworkManagerName": "System.String", + "Name": "System.String", + "SystemDataText": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Description": "System.String", + "ResourceGroupName": "System.String", + "HubsText": "System.String", + "AppliesToGroupsText": "System.String", + "IsGlobal": "System.String", + "DeleteExistingPeering": "System.String", + "ConnectivityTopology": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableOutboundSNAT", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -302217,89 +314853,189 @@ "ValueFromPipelineByPropertyName": false } ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzNetworkManagerGroup", + "Name": "Set-AzNetworkManagerGroup", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkGroup", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "MemberType": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "MemberType": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false }, { - "Name": "SetByResource", + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", "Parameters": [ { "ParameterMetadata": { - "Name": "FrontendIpConfiguration", + "Name": "InputObject", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PublicIPPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "MemberType": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", - "PublicIPPrefixText": "System.String", - "PublicIpAddressText": "System.String", - "SubnetText": "System.String", - "LoadBalancingRulesText": "System.String", - "OutboundRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "PrivateIpAddress": "System.String", - "InboundNatRulesText": "System.String", - "ZonesText": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateIpAddressVersion": "System.String", - "PrivateIpAllocationMethod": "System.String", - "GatewayLoadBalancerText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "BackendAddressPool", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Probe", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Port": "System.Int32", - "IntervalInSeconds": "System.Int32", - "NumberOfProbes": "System.Int32", - "ProbeThreshold": "System.Nullable`1[System.Int32]", - "Protocol": "System.String", - "RequestPath": "System.String", - "NoHealthyBackendsBehavior": "System.String", - "ProvisioningState": "System.String", - "LoadBalancingRulesText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false @@ -302307,43 +315043,153 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzNetworkManagerManagementGroupConnection", + "Name": "Set-AzNetworkManagerManagementGroupConnection", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerManagementGroupConnection", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "ScopeId": "System.String", + "NetworkManagerId": "System.String", + "ConnectionState": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "ScopeId": "System.String", + "NetworkManagerId": "System.String", + "ConnectionState": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancer", + "Name": "InputObject", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "BackendAddressPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "InboundNatPools": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "InboundNatRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "OutboundRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "Probes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "ResourceGuid": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "ScopeId": "System.String", + "NetworkManagerId": "System.String", + "ConnectionState": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", "Type": "System.String", "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", - "ResourceGroupName": "System.String", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "LoadBalancingRulesText": "System.String", - "InboundNatPoolsText": "System.String", - "InboundNatRulesText": "System.String", - "ProbesText": "System.String", "Etag": "System.String", - "BackendAddressPoolsText": "System.String", - "FrontendIpConfigurationsText": "System.String", - "SkuText": "System.String", - "OutboundRulesText": "System.String", "Id": "System.String" } }, @@ -302352,131 +315198,11 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Protocol", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "LoadDistribution", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "FrontendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "BackendPort", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", - "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "EnableFloatingIP", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "EnableTcpReset", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DisableOutboundSNAT", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -302521,33 +315247,27 @@ }, { "VerbName": "Set", - "NounName": "AzLocalNetworkGateway", - "Name": "Set-AzLocalNetworkGateway", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureLocalNetworkGatewayCommand", - "SupportsShouldProcess": false, + "NounName": "AzNetworkManagerRoutingConfiguration", + "Name": "Set-AzNetworkManagerRoutingConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerRoutingConfiguration", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByInputObject", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "Tag": "System.Collections.Hashtable", - "GatewayIpAddress": "System.String", - "Fqdn": "System.String", - "ProvisioningState": "System.String", - "AddressSpaceText": "System.String", - "BgpSettingsText": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "Description": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -302589,25 +315309,31 @@ ], "Parameters": [ { - "Name": "LocalNetworkGateway", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "Tag": "System.Collections.Hashtable", - "GatewayIpAddress": "System.String", - "Fqdn": "System.String", - "ProvisioningState": "System.String", - "AddressSpaceText": "System.String", - "BgpSettingsText": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "Description": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -302616,39 +315342,41 @@ "ValidateNotNullOrEmpty": false }, { - "Name": "AddressPrefix", + "Name": "ResourceId", + "AliasList": [ + "RoutingConfigurationId" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": true }, { - "Name": "Asn", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "BgpPeeringAddress", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "PeerWeight", + "Name": "Description", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -302684,29 +315412,132 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { - "Name": "LocalNetworkGateway", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "Tag": "System.Collections.Hashtable", - "GatewayIpAddress": "System.String", - "Fqdn": "System.String", - "ProvisioningState": "System.String", - "AddressSpaceText": "System.String", - "BgpSettingsText": "System.String", + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByInputObject", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", "ResourceGroupName": "System.String", - "Location": "System.String", - "ResourceGuid": "System.String", + "Description": "System.String", "Type": "System.String", - "TagsTable": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -302721,38 +315552,71 @@ }, { "ParameterMetadata": { - "Name": "AddressPrefix", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Asn", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.UInt32", - "AssemblyQualifiedName": "System.UInt32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [ + "RoutingConfigurationId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "BgpPeeringAddress", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -302767,19 +315631,50 @@ }, { "ParameterMetadata": { - "Name": "PeerWeight", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "AsJob", @@ -302827,37 +315722,33 @@ }, { "VerbName": "Set", - "NounName": "AzNatGateway", - "Name": "Set-AzNatGateway", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureNatGatewayCommand", + "NounName": "AzNetworkManagerRoutingRule", + "Name": "Set-AzNetworkManagerRoutingRule", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerRoutingRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByNameParameterSet", + "DefaultParameterSetName": "ByInputObject", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "PublicIpPrefixesText": "System.String", + "Destination": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination", + "NextHop": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "RuleCollectionName": "System.String", "ResourceGroupName": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "SkuText": "System.String", + "Description": "System.String", + "Type": "System.String", "ProvisioningState": "System.String", - "Location": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ @@ -302896,6 +315787,55 @@ } ], "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "Destination": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination", + "NextHop": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "RuleCollectionName": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "ResourceId", + "AliasList": [ + "RoutingRuleId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "ResourceGroupName", "Type": { @@ -302906,7 +315846,7 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Name", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -302915,9 +315855,9 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "ResourceId", + "Name": "RoutingConfigurationName", "AliasList": [ - "NatGatewayId" + "ConfigName" ], "Type": { "Namespace": "System", @@ -302927,72 +315867,65 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "InputObject", - "AliasList": [ - "NatGateway" - ], + "Name": "RuleCollectionName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "PublicIpPrefixesText": "System.String", - "ResourceGroupName": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "SkuText": "System.String", - "ProvisioningState": "System.String", - "Location": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "DestinationAddress", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpAddress", + "Name": "DestinationType", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "PublicIpPrefix", + "Name": "NextHopAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "AsJob", + "Name": "NextHopType", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "IdleTimeoutInMinutes", + "Name": "Description", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -303019,11 +315952,14 @@ ], "ParameterSets": [ { - "Name": "SetByNameParameterSet", + "Name": "ByNameParameters", "Parameters": [ { "ParameterMetadata": { - "Name": "ResourceGroupName", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -303034,128 +315970,95 @@ "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PublicIpAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PublicIpPrefix", + "Name": "NetworkManagerName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "RuleCollectionName", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DestinationAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceIdParameterSet", - "Parameters": [ + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "ResourceId", - "AliasList": [ - "NatGatewayId" - ], + "Name": "DestinationType", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, "Mandatory": true, "Position": -2147483648, @@ -303164,58 +316067,56 @@ }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "NextHopAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "PublicIpPrefix", + "Name": "NextHopType", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Description", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -303253,36 +316154,29 @@ ] }, { - "Name": "SetByInputObjectParameterSet", + "Name": "ByInputObject", "Parameters": [ { "ParameterMetadata": { "Name": "InputObject", - "AliasList": [ - "NatGateway" - ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", - "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "Name": "System.String", - "TagsTable": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "PublicIpPrefixesText": "System.String", + "Destination": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination", + "NextHop": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "RuleCollectionName": "System.String", "ResourceGroupName": "System.String", - "Etag": "System.String", - "PublicIpAddressesText": "System.String", - "SkuText": "System.String", + "Description": "System.String", + "Type": "System.String", "ProvisioningState": "System.String", - "Location": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" } }, @@ -303295,12 +316189,11 @@ }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -303311,12 +316204,22 @@ }, { "ParameterMetadata": { - "Name": "PublicIpPrefix", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, @@ -303324,76 +316227,67 @@ "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "AsJob", + "Name": "ResourceId", + "AliasList": [ + "RoutingRuleId" + ], "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "DestinationAddress", "Type": { "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], + "Name": "DestinationType", "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "__AllParameterSets", - "Parameters": [ + }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "NextHopAddress", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -303404,42 +316298,41 @@ }, { "ParameterMetadata": { - "Name": "PublicIpPrefix", + "Name": "NextHopType", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "AsJob", + "Name": "Description", "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "IdleTimeoutInMinutes", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.Int32", - "AssemblyQualifiedName": "System.Int32, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -303475,235 +316368,10 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzNetworkInterface", - "Name": "Set-AzNetworkInterface", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceCommand", - "SupportsShouldProcess": false, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", - "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "ShouldSerializeIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeTapConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeHostedWorkloads", - "ReturnType": "System.Boolean" - }, - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "NetworkInterface", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", - "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ { "Name": "__AllParameterSets", "Parameters": [ - { - "ParameterMetadata": { - "Name": "NetworkInterface", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", - "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "AsJob", @@ -303751,67 +316419,36 @@ }, { "VerbName": "Set", - "NounName": "AzNetworkInterfaceIpConfig", - "Name": "Set-AzNetworkInterfaceIpConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureNetworkInterfaceIpConfigCommand", - "SupportsShouldProcess": false, + "NounName": "AzNetworkManagerRoutingRuleCollection", + "Name": "Set-AzNetworkManagerRoutingRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerRoutingRuleCollection", + "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "ByInputObject", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesTo": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem]", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "DisableBgpRoutePropagation": "System.String", + "AppliesToText": "System.String", "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", + "Description": "System.String", + "Type": "System.String", "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeTapConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeHostedWorkloads", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -303849,6 +316486,9 @@ "Parameters": [ { "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", "Name": "System.String", @@ -303857,82 +316497,53 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "NetworkInterface", + "Name": "InputObject", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesTo": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem]", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "DisableBgpRoutePropagation": "System.String", + "AppliesToText": "System.String", "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", + "Description": "System.String", + "Type": "System.String", "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, { - "Name": "PrivateIpAddressVersion", + "Name": "ResourceId", + "AliasList": [ + "RoutingCollectionId" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": true }, { - "Name": "PrivateIpAddress", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "Primary", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "SubnetId", + "Name": "NetworkManagerName", "Type": { "Namespace": "System", "Name": "System.String", @@ -303941,182 +316552,32 @@ "ValidateNotNullOrEmpty": true }, { - "Name": "Subnet", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", - "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", - "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PublicIpAddressId", + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "PublicIpAddress", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LoadBalancerBackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LoadBalancerBackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LoadBalancerInboundNatRuleId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "LoadBalancerInboundNatRule", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationGatewayBackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationGatewayBackendAddressPool", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" - }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, { - "Name": "ApplicationSecurityGroupId", + "Name": "Description", "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "ApplicationSecurityGroup", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, { - "Name": "GatewayLoadBalancerId", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -304128,265 +316589,44 @@ "AzureCredential" ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "Name", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "NetworkInterface", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", - "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateIpAddress", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "Primary", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - } - ] - }, - { - "Name": "SetByResourceId", - "Parameters": [ - { - "ParameterMetadata": { - "Name": "SubnetId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": true - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PublicIpAddressId", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "LoadBalancerBackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "LoadBalancerInboundNatRuleId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, - { - "ParameterMetadata": { - "Name": "ApplicationGatewayBackendAddressPoolId", - "Type": { - "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "ByName", + "Parameters": [ { "ParameterMetadata": { - "Name": "ApplicationSecurityGroupId", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { "Namespace": "System", - "Name": "System.String[]", - "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", - "ElementType": "System.String" + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Name", + "Name": "ResourceGroupName", "Type": { "Namespace": "System", "Name": "System.String", @@ -304401,76 +316641,40 @@ }, { "ParameterMetadata": { - "Name": "NetworkInterface", + "Name": "NetworkManagerName", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", - "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", + "Name": "RoutingConfigurationName", + "AliasList": [ + "ConfigName" + ], "Type": { "Namespace": "System", "Name": "System.String", "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "Description", "Type": { "Namespace": "System", "Name": "System.String", @@ -304481,11 +316685,11 @@ "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false + "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "Primary", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -304527,94 +316731,46 @@ ] }, { - "Name": "SetByResource", + "Name": "ByInputObject", "Parameters": [ { "ParameterMetadata": { - "Name": "Subnet", + "Name": "InputObject", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "RouteTable": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "Delegations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "PrivateEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "IpAllocations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "ResourceNavigationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "ServiceAssociationLinks": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "ServiceEndpoints": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "ServiceEndpointPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AddressPrefix": "System.Collections.Generic.List`1[System.String]", - "DefaultOutboundAccess": "System.Nullable`1[System.Boolean]", - "PrivateLinkServiceNetworkPolicies": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesTo": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem]", + "NetworkManagerName": "System.String", + "RoutingConfigurationName": "System.String", + "DisableBgpRoutePropagation": "System.String", + "AppliesToText": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", - "DefaultOutboundAccessText": "System.String", - "IpAllocationsText": "System.String", - "DelegationsText": "System.String", - "PrivateEndpointsText": "System.String", - "ServiceEndpointPoliciesText": "System.String", - "ServiceEndpointText": "System.String", - "NatGatewayText": "System.String", - "RouteTableText": "System.String", - "NetworkSecurityGroupText": "System.String", - "ResourceNavigationLinksText": "System.String", - "ServiceAssociationLinksText": "System.String", - "IpConfigurationsText": "System.String", "Etag": "System.String", - "ProvisioningState": "System.String", - "PrivateEndpointNetworkPolicies": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "PublicIpAddress", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "PublicIpPrefix": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "IpTags": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "Zones": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "IdleTimeoutInMinutes": "System.Nullable`1[System.Int32]", - "TagsTable": "System.String", - "Type": "System.String", - "Name": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "ExtendedLocationText": "System.String", - "PublicIpPrefixText": "System.String", - "DdosSettingsText": "System.String", - "IpTagsText": "System.String", - "DnsSettingsText": "System.String", - "Etag": "System.String", - "IpConfigurationText": "System.String", - "ProvisioningState": "System.String", - "PublicIpAddressVersion": "System.String", - "IpAddress": "System.String", - "PublicIpAllocationMethod": "System.String", - "SkuText": "System.String", - "Id": "System.String" - } + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -304625,44 +316781,60 @@ }, { "ParameterMetadata": { - "Name": "LoadBalancerBackendAddressPool", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ { "ParameterMetadata": { - "Name": "LoadBalancerInboundNatRule", + "Name": "ResourceId", + "AliasList": [ + "RoutingCollectionId" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": true }, { "ParameterMetadata": { - "Name": "ApplicationGatewayBackendAddressPool", + "Name": "Description", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, "ValidateNotNullOrEmpty": false }, @@ -304673,137 +316845,252 @@ }, { "ParameterMetadata": { - "Name": "ApplicationSecurityGroup", + "Name": "AsJob", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true + "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "GatewayLoadBalancerId", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } }, "ValidateNotNullOrEmpty": false }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": true - }, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "Name", + "Name": "AsJob", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, - "ValidateNotNullOrEmpty": true + "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "NetworkInterface", + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", - "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", - "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, - "Position": -2147483648, - "ValueFromPipeline": true, - "ValueFromPipelineByPropertyName": false - }, - { - "ParameterMetadata": { - "Name": "PrivateIpAddressVersion", - "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" - }, - "ValidateSet": [ - "IPv4", - "IPv6" - ], - "ValidateNotNullOrEmpty": true - }, "Mandatory": false, "Position": -2147483648, "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false + } + ] + } + ] + }, + { + "VerbName": "Set", + "NounName": "AzNetworkManagerScopeConnection", + "Name": "Set-AzNetworkManagerScopeConnection", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerScopeConnection", + "SupportsShouldProcess": true, + "ConfirmImpact": 2, + "SupportsPaging": false, + "DefaultParameterSetName": "__AllParameterSets", + "OutputTypes": [ + { + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "TenantId": "System.String", + "ResourceId": "System.String", + "ConnectionState": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "ParameterSets": [ + "__AllParameterSets" + ] + } + ], + "Parameters": [ + { + "Name": "InputObject", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "TenantId": "System.String", + "ResourceId": "System.String", + "ConnectionState": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + } + ], + "ParameterSets": [ + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { - "Name": "PrivateIpAddress", + "Name": "InputObject", "Type": { - "Namespace": "System", - "Name": "System.String", - "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "NetworkManagerName": "System.String", + "TenantId": "System.String", + "ResourceId": "System.String", + "ConnectionState": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", + "Id": "System.String" + } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": false, + "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": false, + "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, { "ParameterMetadata": { - "Name": "Primary", + "Name": "AsJob", "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", @@ -304848,67 +317135,36 @@ }, { "VerbName": "Set", - "NounName": "AzNetworkInterfaceTapConfig", - "Name": "Set-AzNetworkInterfaceTapConfig", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzureRmNetworkInterfaceTapConfigCommand", + "NounName": "AzNetworkManagerSecurityAdminConfiguration", + "Name": "Set-AzNetworkManagerSecurityAdminConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerSecurityAdminConfiguration", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "SetByResource", + "DefaultParameterSetName": "__AllParameterSets", "OutputTypes": [ { "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "VirtualMachine": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "VnetEncryptionSupported": "System.Boolean", - "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "TapConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "HostedWorkloads": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "EnableAcceleratedNetworking": "System.Nullable`1[System.Boolean]", - "Primary": "System.Nullable`1[System.Boolean]", - "EnableIPForwarding": "System.Nullable`1[System.Boolean]", - "TagsTable": "System.String", - "ExtendedLocationText": "System.String", - "Name": "System.String", - "Type": "System.String", - "ResourceGuid": "System.String", - "Location": "System.String", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]", + "NetworkManagerName": "System.String", + "SecurityType": "System.String", + "ApplyOnNetworkIntentPolicyBasedServicesText": "System.String", + "DeleteExistingNSGs": "System.String", "ResourceGroupName": "System.String", - "PrivateEndpointText": "System.String", - "AuxiliarySku": "System.String", - "DnsSettingsText": "System.String", - "TapConfigurationsText": "System.String", - "IpConfigurationsText": "System.String", - "VirtualMachineText": "System.String", - "Etag": "System.String", - "AuxiliaryMode": "System.String", + "Description": "System.String", + "Type": "System.String", "ProvisioningState": "System.String", - "DisableTcpStateTracking": "System.String", - "MacAddress": "System.String", - "NetworkSecurityGroupText": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", + "Etag": "System.String", "Id": "System.String" }, "Methods": [ - { - "Name": "ShouldSerializeIpConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeTapConfigurations", - "ReturnType": "System.Boolean" - }, - { - "Name": "ShouldSerializeHostedWorkloads", - "ReturnType": "System.Boolean" - }, { "Name": "GetType", "ReturnType": "System.Type" @@ -304945,16 +317201,23 @@ ], "Parameters": [ { - "Name": "NetworkInterfaceTapConfig", + "Name": "InputObject", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]", + "NetworkManagerName": "System.String", + "SecurityType": "System.String", + "ApplyOnNetworkIntentPolicyBasedServicesText": "System.String", + "DeleteExistingNSGs": "System.String", "ResourceGroupName": "System.String", - "NetworkInterfaceName": "System.String", - "VirtualNetworkTapText": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -304971,15 +317234,6 @@ }, "ValidateNotNullOrEmpty": false }, - { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, { "Name": "DefaultProfile", "AliasList": [ @@ -305007,16 +317261,23 @@ "Parameters": [ { "ParameterMetadata": { - "Name": "NetworkInterfaceTapConfig", + "Name": "InputObject", "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models", - "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", + "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]", + "NetworkManagerName": "System.String", + "SecurityType": "System.String", + "ApplyOnNetworkIntentPolicyBasedServicesText": "System.String", + "DeleteExistingNSGs": "System.String", "ResourceGroupName": "System.String", - "NetworkInterfaceName": "System.String", - "VirtualNetworkTapText": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", "Name": "System.String", "Etag": "System.String", "Id": "System.String" @@ -305044,21 +317305,6 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, - { - "ParameterMetadata": { - "Name": "Force", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - "Mandatory": false, - "Position": -2147483648, - "ValueFromPipeline": false, - "ValueFromPipelineByPropertyName": false - }, { "ParameterMetadata": { "Name": "DefaultProfile", @@ -305091,9 +317337,9 @@ }, { "VerbName": "Set", - "NounName": "AzNetworkManager", - "Name": "Set-AzNetworkManager", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerCommand", + "NounName": "AzNetworkManagerSecurityAdminRule", + "Name": "Set-AzNetworkManagerSecurityAdminRule", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerSecurityAdminRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -305102,17 +317348,13 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "NetworkManagerScopeAccesses": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "NetworkManagerScopeAccessesText": "System.String", - "NetworkManagerScopesText": "System.String", - "TagsTable": "System.String", + "NetworkManagerName": "System.String", + "SecurityAdminConfigurationName": "System.String", + "RuleCollectionName": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -305162,17 +317404,13 @@ "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "NetworkManagerScopeAccesses": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "NetworkManagerScopeAccessesText": "System.String", - "NetworkManagerScopesText": "System.String", - "TagsTable": "System.String", + "NetworkManagerName": "System.String", + "SecurityAdminConfigurationName": "System.String", + "RuleCollectionName": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -305224,17 +317462,13 @@ "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManager, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "NetworkManagerScopes": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "NetworkManagerScopeAccesses": "System.Collections.Generic.List`1[System.String]", - "Tag": "System.Collections.Hashtable", - "Location": "System.String", - "NetworkManagerScopeAccessesText": "System.String", - "NetworkManagerScopesText": "System.String", - "TagsTable": "System.String", + "NetworkManagerName": "System.String", + "SecurityAdminConfigurationName": "System.String", + "RuleCollectionName": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -305299,9 +317533,9 @@ }, { "VerbName": "Set", - "NounName": "AzNetworkManagerConnectivityConfiguration", - "Name": "Set-AzNetworkManagerConnectivityConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerConnectivityConfiguration", + "NounName": "AzNetworkManagerSecurityAdminRuleCollection", + "Name": "Set-AzNetworkManagerSecurityAdminRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerSecurityAdminRuleCollection", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, @@ -305310,24 +317544,20 @@ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", - "Hubs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", "NetworkManagerName": "System.String", - "Name": "System.String", - "SystemDataText": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "Description": "System.String", - "ResourceGroupName": "System.String", - "HubsText": "System.String", + "SecurityAdminConfigurationName": "System.String", "AppliesToGroupsText": "System.String", - "IsGlobal": "System.String", - "DeleteExistingPeering": "System.String", - "ConnectivityTopology": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", "Etag": "System.String", "Id": "System.String" }, @@ -305371,24 +317601,20 @@ "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", - "Hubs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", "NetworkManagerName": "System.String", - "Name": "System.String", - "SystemDataText": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "Description": "System.String", - "ResourceGroupName": "System.String", - "HubsText": "System.String", + "SecurityAdminConfigurationName": "System.String", "AppliesToGroupsText": "System.String", - "IsGlobal": "System.String", - "DeleteExistingPeering": "System.String", - "ConnectivityTopology": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", "Etag": "System.String", "Id": "System.String" } @@ -305434,24 +317660,20 @@ "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", - "Hubs": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", "NetworkManagerName": "System.String", - "Name": "System.String", - "SystemDataText": "System.String", - "ProvisioningState": "System.String", - "Type": "System.String", - "Description": "System.String", - "ResourceGroupName": "System.String", - "HubsText": "System.String", + "SecurityAdminConfigurationName": "System.String", "AppliesToGroupsText": "System.String", - "IsGlobal": "System.String", - "DeleteExistingPeering": "System.String", - "ConnectivityTopology": "System.String", + "ResourceGroupName": "System.String", + "Description": "System.String", + "Type": "System.String", + "ProvisioningState": "System.String", + "SystemDataText": "System.String", + "Name": "System.String", "Etag": "System.String", "Id": "System.String" } @@ -305510,19 +317732,19 @@ }, { "VerbName": "Set", - "NounName": "AzNetworkManagerGroup", - "Name": "Set-AzNetworkManagerGroup", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkGroup", + "NounName": "AzNetworkManagerSecurityUserConfiguration", + "Name": "Set-AzNetworkManagerSecurityUserConfiguration", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerSecurityUserConfiguration", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByInputObject", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", "NetworkManagerName": "System.String", @@ -305571,12 +317793,24 @@ } ], "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", "NetworkManagerName": "System.String", @@ -305592,6 +317826,45 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "ResourceId", + "AliasList": [ + "SecurityUserConfigurationId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "Type": { @@ -305624,15 +317897,124 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByName", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByInputObject", "Parameters": [ { "ParameterMetadata": { "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", "NetworkManagerName": "System.String", @@ -305648,11 +318030,136 @@ }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": true, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [ + "SecurityUserConfigurationId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "AsJob", @@ -305700,31 +318207,41 @@ }, { "VerbName": "Set", - "NounName": "AzNetworkManagerManagementGroupConnection", - "Name": "Set-AzNetworkManagerManagementGroupConnection", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerManagementGroupConnection", + "NounName": "AzNetworkManagerSecurityUserRule", + "Name": "Set-AzNetworkManagerSecurityUserRule", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerSecurityUserRuleCommand", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByInputObject", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "ScopeId": "System.String", - "NetworkManagerId": "System.String", - "ConnectionState": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", + "Sources": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "Destinations": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "SourcePortRanges": "System.Collections.Generic.IList`1[System.String]", + "DestinationPortRanges": "System.Collections.Generic.IList`1[System.String]", + "Protocol": "System.String", "Name": "System.String", + "SystemDataText": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Description": "System.String", + "ResourceGroupName": "System.String", + "DestinationsText": "System.String", + "SourcePortRangesText": "System.String", "Etag": "System.String", + "SourcesText": "System.String", + "RuleCollectionName": "System.String", + "SecurityUserConfigurationName": "System.String", + "NetworkManagerName": "System.String", + "Direction": "System.String", + "DestinationPortRangesText": "System.String", "Id": "System.String" }, "Methods": [ @@ -305763,29 +318280,181 @@ } ], "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "ScopeId": "System.String", - "NetworkManagerId": "System.String", - "ConnectionState": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", + "Sources": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "Destinations": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "SourcePortRanges": "System.Collections.Generic.IList`1[System.String]", + "DestinationPortRanges": "System.Collections.Generic.IList`1[System.String]", + "Protocol": "System.String", "Name": "System.String", + "SystemDataText": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Description": "System.String", + "ResourceGroupName": "System.String", + "DestinationsText": "System.String", + "SourcePortRangesText": "System.String", "Etag": "System.String", + "SourcesText": "System.String", + "RuleCollectionName": "System.String", + "SecurityUserConfigurationName": "System.String", + "NetworkManagerName": "System.String", + "Direction": "System.String", + "DestinationPortRangesText": "System.String", "Id": "System.String" } }, "ValidateNotNullOrEmpty": false }, + { + "Name": "ResourceId", + "AliasList": [ + "SecurityUserRuleId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Tcp", + "Udp", + "Icmp", + "Esp", + "Any", + "Ah" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "Direction", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Inbound", + "Outbound" + ], + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SourceAddressPrefix", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationAddressPrefix", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "SourcePortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "DestinationPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "Type": { @@ -305818,37 +318487,210 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByNameParameters", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "ScopeId": "System.String", - "NetworkManagerId": "System.String", - "ConnectionState": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "RuleCollectionName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Tcp", + "Udp", + "Icmp", + "Esp", + "Any", + "Ah" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Direction", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Inbound", + "Outbound" + ], + "ValidateNotNullOrEmpty": false + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SourceAddressPrefix", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DestinationAddressPrefix", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SourcePortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DestinationPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "AsJob", @@ -305891,153 +318733,39 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzNetworkManagerScopeConnection", - "Name": "Set-AzNetworkManagerScopeConnection", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerScopeConnection", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "NetworkManagerName": "System.String", - "TenantId": "System.String", - "ResourceId": "System.String", - "ConnectionState": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "NetworkManagerName": "System.String", - "TenantId": "System.String", - "ResourceId": "System.String", - "ConnectionState": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByInputObject", "Parameters": [ { "ParameterMetadata": { "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopeConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "NetworkManagerName": "System.String", - "TenantId": "System.String", - "ResourceId": "System.String", - "ConnectionState": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", + "Sources": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "Destinations": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "SourcePortRanges": "System.Collections.Generic.IList`1[System.String]", + "DestinationPortRanges": "System.Collections.Generic.IList`1[System.String]", + "Protocol": "System.String", "Name": "System.String", + "SystemDataText": "System.String", + "ProvisioningState": "System.String", + "Type": "System.String", + "Description": "System.String", + "ResourceGroupName": "System.String", + "DestinationsText": "System.String", + "SourcePortRangesText": "System.String", "Etag": "System.String", + "SourcesText": "System.String", + "RuleCollectionName": "System.String", + "SecurityUserConfigurationName": "System.String", + "NetworkManagerName": "System.String", + "Direction": "System.String", + "DestinationPortRangesText": "System.String", "Id": "System.String" } }, @@ -306090,166 +318818,195 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzNetworkManagerSecurityAdminConfiguration", - "Name": "Set-AzNetworkManagerSecurityAdminConfiguration", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerSecurityAdminConfiguration", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ + }, { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]", - "NetworkManagerName": "System.String", - "SecurityType": "System.String", - "ApplyOnNetworkIntentPolicyBasedServicesText": "System.String", - "DeleteExistingNSGs": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [ + "SecurityUserRuleId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false }, - { - "Name": "ToString", - "ReturnType": "System.String" + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Protocol", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Tcp", + "Udp", + "Icmp", + "Esp", + "Any", + "Ah" + ], + "ValidateNotNullOrEmpty": false }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Direction", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateSet": [ + "Inbound", + "Outbound" ], - "ReturnType": "System.Boolean" + "ValidateNotNullOrEmpty": false }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]", - "NetworkManagerName": "System.String", - "SecurityType": "System.String", - "ApplyOnNetworkIntentPolicyBasedServicesText": "System.String", - "DeleteExistingNSGs": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", - "Parameters": [ + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { - "Name": "InputObject", + "Name": "SourceAddressPrefix", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DestinationAddressPrefix", + "Type": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[]", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "ElementType": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "SourcePortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "DestinationPortRange", + "Type": { + "Namespace": "System", + "Name": "System.String[]", + "AssemblyQualifiedName": "System.String[], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "ElementType": "System.String" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "ApplyOnNetworkIntentPolicyBasedServices": "System.Collections.Generic.List`1[System.String]", - "NetworkManagerName": "System.String", - "SecurityType": "System.String", - "ApplyOnNetworkIntentPolicyBasedServicesText": "System.String", - "DeleteExistingNSGs": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" } }, "ValidateNotNullOrEmpty": false }, - "Mandatory": true, + "Mandatory": false, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false - }, + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ { "ParameterMetadata": { "Name": "AsJob", @@ -306297,24 +319054,25 @@ }, { "VerbName": "Set", - "NounName": "AzNetworkManagerSecurityAdminRule", - "Name": "Set-AzNetworkManagerSecurityAdminRule", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerSecurityAdminRuleCommand", + "NounName": "AzNetworkManagerSecurityUserRuleCollection", + "Name": "Set-AzNetworkManagerSecurityUserRuleCollection", + "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerSecurityUserRuleCollection", "SupportsShouldProcess": true, "ConfirmImpact": 2, "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", + "DefaultParameterSetName": "ByInputObject", "OutputTypes": [ { "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem]", "NetworkManagerName": "System.String", - "SecurityAdminConfigurationName": "System.String", - "RuleCollectionName": "System.String", + "SecurityUserConfigurationName": "System.String", + "AppliesToGroupText": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -306360,17 +319118,30 @@ } ], "Parameters": [ + { + "Name": "Name", + "AliasList": [ + "ResourceName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, { "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem]", "NetworkManagerName": "System.String", - "SecurityAdminConfigurationName": "System.String", - "RuleCollectionName": "System.String", + "SecurityUserConfigurationName": "System.String", + "AppliesToGroupText": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -306383,6 +319154,57 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "ResourceId", + "AliasList": [ + "SecurityUserCollectionId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "AsJob", "Type": { @@ -306415,37 +319237,89 @@ ], "ParameterSets": [ { - "Name": "__AllParameterSets", + "Name": "ByName", "Parameters": [ { "ParameterMetadata": { - "Name": "InputObject", + "Name": "Name", + "AliasList": [ + "ResourceName" + ], "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityBaseAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "NetworkManagerName": "System.String", - "SecurityAdminConfigurationName": "System.String", - "RuleCollectionName": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" }, - "ValidateNotNullOrEmpty": false + "ValidateNotNullOrEmpty": true }, "Mandatory": true, "Position": -2147483648, - "ValueFromPipeline": true, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "ResourceGroupName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "NetworkManagerName", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "SecurityUserConfigurationName", + "AliasList": [ + "ConfigName" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, { "ParameterMetadata": { "Name": "AsJob", @@ -306488,146 +319362,23 @@ "ValueFromPipelineByPropertyName": false } ] - } - ] - }, - { - "VerbName": "Set", - "NounName": "AzNetworkManagerSecurityAdminRuleCollection", - "Name": "Set-AzNetworkManagerSecurityAdminRuleCollection", - "ClassName": "Microsoft.Azure.Commands.Network.SetAzNetworkManagerSecurityAdminRuleCollection", - "SupportsShouldProcess": true, - "ConfirmImpact": 2, - "SupportsPaging": false, - "DefaultParameterSetName": "__AllParameterSets", - "OutputTypes": [ - { - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", - "NetworkManagerName": "System.String", - "SecurityAdminConfigurationName": "System.String", - "AppliesToGroupsText": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, - "ParameterSets": [ - "__AllParameterSets" - ] - } - ], - "Parameters": [ - { - "Name": "InputObject", - "Type": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", - "NetworkManagerName": "System.String", - "SecurityAdminConfigurationName": "System.String", - "AppliesToGroupsText": "System.String", - "ResourceGroupName": "System.String", - "Description": "System.String", - "Type": "System.String", - "ProvisioningState": "System.String", - "SystemDataText": "System.String", - "Name": "System.String", - "Etag": "System.String", - "Id": "System.String" - } - }, - "ValidateNotNullOrEmpty": false - }, - { - "Name": "AsJob", - "Type": { - "Namespace": "System.Management.Automation", - "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" - }, - "ValidateNotNullOrEmpty": false }, { - "Name": "DefaultProfile", - "AliasList": [ - "AzContext", - "AzureRmContext", - "AzureCredential" - ], - "Type": { - "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", - "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", - "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", - "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", - "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" - } - }, - "ValidateNotNullOrEmpty": false - } - ], - "ParameterSets": [ - { - "Name": "__AllParameterSets", + "Name": "ByInputObject", "Parameters": [ { "ParameterMetadata": { "Name": "InputObject", "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityAdminRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", + "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem]", "NetworkManagerName": "System.String", - "SecurityAdminConfigurationName": "System.String", - "AppliesToGroupsText": "System.String", + "SecurityUserConfigurationName": "System.String", + "AppliesToGroupText": "System.String", "ResourceGroupName": "System.String", "Description": "System.String", "Type": "System.String", @@ -306687,6 +319438,131 @@ "ValueFromPipelineByPropertyName": false } ] + }, + { + "Name": "ByResourceId", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "ResourceId", + "AliasList": [ + "SecurityUserCollectionId" + ], + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": true + }, + "Mandatory": true, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "Description", + "Type": { + "Namespace": "System", + "Name": "System.String", + "AssemblyQualifiedName": "System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": true + }, + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] + }, + { + "Name": "__AllParameterSets", + "Parameters": [ + { + "ParameterMetadata": { + "Name": "AsJob", + "Type": { + "Namespace": "System.Management.Automation", + "Name": "System.Management.Automation.SwitchParameter", + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "DefaultProfile", + "AliasList": [ + "AzContext", + "AzureRmContext", + "AzureCredential" + ], + "Type": { + "Namespace": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core", + "Name": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer, Microsoft.Azure.PowerShell.Authentication.Abstractions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DefaultContext": "Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContext", + "Accounts": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureAccount]", + "Environments": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureEnvironment]", + "Subscriptions": "System.Collections.Generic.IEnumerable`1[Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureSubscription]" + } + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + } + ] } ] }, @@ -306704,7 +319580,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", "ScopeId": "System.String", @@ -306760,7 +319636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", "ScopeId": "System.String", @@ -306818,7 +319694,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemData": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", "ScopeId": "System.String", @@ -306900,7 +319776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -306958,7 +319834,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -307018,7 +319894,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "ContainerNetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", @@ -307102,7 +319978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -307182,7 +320058,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -307248,7 +320124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -307338,7 +320214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -307427,7 +320303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -307524,7 +320400,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false @@ -307534,7 +320410,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false @@ -307640,7 +320516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -307863,7 +320739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false @@ -307879,7 +320755,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" }, "ValidateNotNullOrEmpty": false @@ -307910,7 +320786,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -308180,7 +321056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -308410,7 +321286,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLog", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLog, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "RetentionPolicy": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", @@ -308463,7 +321339,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -308683,7 +321559,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -308923,7 +321799,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -309188,7 +322064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -310900,7 +323776,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV1, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Destination": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", "Source": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", @@ -310958,7 +323834,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResultV2, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "Outputs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", @@ -311017,7 +323893,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -311074,7 +323950,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -311168,7 +324044,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true @@ -311178,7 +324054,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, "ValidateNotNullOrEmpty": false @@ -311250,7 +324126,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -311468,7 +324344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -311513,7 +324389,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true @@ -311529,7 +324405,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, "ValidateNotNullOrEmpty": false @@ -311890,7 +324766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true @@ -311906,7 +324782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, "ValidateNotNullOrEmpty": false @@ -312237,7 +325113,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true @@ -312253,7 +325129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, "ValidateNotNullOrEmpty": false @@ -312548,7 +325424,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" }, "ValidateNotNullOrEmpty": true @@ -312564,7 +325440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" }, "ValidateNotNullOrEmpty": false @@ -312656,7 +325532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -312782,7 +325658,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", @@ -312849,7 +325725,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -312906,7 +325782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", @@ -313118,7 +325994,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -313368,7 +326244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -315240,7 +328116,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Format": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", @@ -315394,7 +328270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateDnsZoneConfigs": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", "ProvisioningState": "System.String", @@ -315474,7 +328350,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig" ] @@ -315569,7 +328445,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig" ] @@ -315640,7 +328516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -315723,7 +328599,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -315796,7 +328672,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -315893,7 +328769,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -316307,7 +329183,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -316379,7 +329255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -316453,7 +329329,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkService, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Visibility": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", @@ -316551,7 +329427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -316624,7 +329500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -316699,7 +329575,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -316798,7 +329674,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", @@ -316866,7 +329742,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", @@ -316936,7 +329812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Sku": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", @@ -317030,7 +329906,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -317097,7 +329973,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -317185,7 +330061,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -317315,7 +330191,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -317381,7 +330257,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -317450,7 +330326,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -317549,7 +330425,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -317615,7 +330491,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -317719,7 +330595,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -317871,7 +330747,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -317938,7 +330814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -317999,7 +330875,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -318084,7 +330960,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -318174,7 +331050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -318219,7 +331095,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -318248,7 +331124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" }, "ValidateNotNullOrEmpty": false @@ -318347,7 +331223,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" }, "ValidateNotNullOrEmpty": false @@ -318433,7 +331309,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -318481,7 +331357,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" }, "ValidateNotNullOrEmpty": false @@ -318546,7 +331422,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -318569,7 +331445,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" }, "ValidateNotNullOrEmpty": false @@ -318649,7 +331525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" }, "ValidateNotNullOrEmpty": false @@ -318711,7 +331587,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" }, "ValidateNotNullOrEmpty": false @@ -318780,7 +331656,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -318830,7 +331706,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -318901,7 +331777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingIntent, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingPolicies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", "ProvisioningState": "System.String", @@ -319008,7 +331884,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -319065,7 +331941,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -319124,7 +332000,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityPartnerProvider, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Management.Network.Models.SubResource", "Tag": "System.Collections.Hashtable", @@ -319207,7 +332083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -319273,7 +332149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -319324,7 +332200,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -319393,7 +332269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -319468,7 +332344,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -319562,7 +332438,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -319677,7 +332553,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -319790,7 +332666,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -319832,7 +332708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable" }, "ValidateNotNullOrEmpty": false @@ -319921,7 +332797,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable" }, "ValidateNotNullOrEmpty": false @@ -320016,7 +332892,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable" }, "ValidateNotNullOrEmpty": false @@ -320096,7 +332972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -320144,7 +333020,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable" }, "ValidateNotNullOrEmpty": false @@ -320221,7 +333097,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable" }, "ValidateNotNullOrEmpty": false @@ -320305,7 +333181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -320320,15 +333196,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -320336,8 +333212,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" }, "Methods": [ @@ -320381,7 +333258,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -320396,15 +333273,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -320412,8 +333289,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -320459,7 +333337,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -320474,15 +333352,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -320490,8 +333368,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -320561,7 +333440,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -320647,7 +333526,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -320729,7 +333608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -320796,7 +333675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate" }, "ValidateNotNullOrEmpty": false @@ -320806,7 +333685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate" }, "ValidateNotNullOrEmpty": false @@ -320816,7 +333695,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false @@ -320844,7 +333723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" }, "ValidateNotNullOrEmpty": true @@ -320902,7 +333781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" }, "ValidateNotNullOrEmpty": false @@ -320958,7 +333837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule" }, "ValidateNotNullOrEmpty": false @@ -320998,7 +333877,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" }, "ValidateNotNullOrEmpty": false @@ -321008,7 +333887,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -321099,7 +333978,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -321193,7 +334072,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -321284,7 +334163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate" }, "ValidateNotNullOrEmpty": false @@ -321300,7 +334179,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate" }, "ValidateNotNullOrEmpty": false @@ -321316,7 +334195,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false @@ -321362,7 +334241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" }, "ValidateNotNullOrEmpty": true @@ -321456,7 +334335,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" }, "ValidateNotNullOrEmpty": false @@ -321548,7 +334427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule" }, "ValidateNotNullOrEmpty": false @@ -321612,7 +334491,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" }, "ValidateNotNullOrEmpty": false @@ -321628,7 +334507,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -321760,7 +334639,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -321854,7 +334733,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -321945,7 +334824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate" }, "ValidateNotNullOrEmpty": false @@ -321961,7 +334840,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate" }, "ValidateNotNullOrEmpty": false @@ -321977,7 +334856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false @@ -322023,7 +334902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" }, "ValidateNotNullOrEmpty": true @@ -322117,7 +334996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" }, "ValidateNotNullOrEmpty": false @@ -322209,7 +335088,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule" }, "ValidateNotNullOrEmpty": false @@ -322273,7 +335152,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" }, "ValidateNotNullOrEmpty": false @@ -322289,7 +335168,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -322413,7 +335292,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -322500,7 +335379,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -322611,7 +335490,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false @@ -322621,7 +335500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false @@ -322631,7 +335510,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false @@ -322641,7 +335520,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false @@ -322651,7 +335530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" }, "ValidateNotNullOrEmpty": false @@ -322714,7 +335593,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -322861,7 +335740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false @@ -322877,7 +335756,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false @@ -322893,7 +335772,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false @@ -322909,7 +335788,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false @@ -322925,7 +335804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" }, "ValidateNotNullOrEmpty": false @@ -323017,7 +335896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -323164,7 +336043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false @@ -323180,7 +336059,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false @@ -323196,7 +336075,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false @@ -323212,7 +336091,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSResourceId" }, "ValidateNotNullOrEmpty": false @@ -323228,7 +336107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" }, "ValidateNotNullOrEmpty": false @@ -323491,7 +336370,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -323577,7 +336456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -323630,7 +336509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -323683,7 +336562,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -323773,7 +336652,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -323806,7 +336685,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -323903,7 +336782,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", @@ -323971,7 +336850,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", @@ -324041,7 +336920,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", @@ -324135,7 +337014,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -324150,15 +337029,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -324166,8 +337045,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" }, "Methods": [ @@ -324220,7 +337100,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -324235,15 +337115,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -324251,8 +337131,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -324282,7 +337163,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -324322,7 +337203,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -324363,7 +337244,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -324402,7 +337283,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" } @@ -324414,7 +337295,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false @@ -324424,7 +337305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false @@ -324434,7 +337315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false @@ -324462,7 +337343,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false @@ -324525,7 +337406,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -324540,15 +337421,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -324556,8 +337437,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -324606,7 +337488,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" } @@ -324624,7 +337506,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false @@ -324640,7 +337522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false @@ -324656,7 +337538,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false @@ -324702,7 +337584,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false @@ -324830,7 +337712,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -324845,15 +337727,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -324861,8 +337743,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -324911,7 +337794,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" } @@ -324929,7 +337812,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false @@ -324945,7 +337828,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false @@ -324961,7 +337844,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false @@ -325007,7 +337890,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false @@ -325072,7 +337955,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -325109,7 +337992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -325144,7 +338027,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", "PublicIpAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -325194,7 +338077,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -325209,15 +338092,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -325225,8 +338108,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -325275,7 +338159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" } @@ -325293,7 +338177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" }, "ValidateNotNullOrEmpty": false @@ -325309,7 +338193,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" }, "ValidateNotNullOrEmpty": false @@ -325325,7 +338209,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSDelegation" }, "ValidateNotNullOrEmpty": false @@ -325371,7 +338255,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation" }, "ValidateNotNullOrEmpty": false @@ -325443,7 +338327,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -325503,7 +338387,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -325565,7 +338449,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -325651,7 +338535,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -325721,7 +338605,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -325740,7 +338624,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -325858,7 +338742,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -325914,7 +338798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -326003,7 +338887,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -326104,7 +338988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientIPsecParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SaLifeTimeSeconds": "System.Int32", "SaDataSizeKilobytes": "System.Int32", @@ -326167,7 +339051,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -326280,7 +339164,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -326386,7 +339270,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -326523,7 +339407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -326580,7 +339464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -326657,7 +339541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -327042,7 +339926,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -327198,7 +340082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Results": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]", "Tag": "System.Collections.Hashtable", @@ -327260,7 +340144,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -327364,7 +340248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -327750,7 +340634,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -327833,7 +340717,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -328039,7 +340923,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -328304,7 +341188,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -328387,7 +341271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -328592,7 +341476,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -328856,7 +341740,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex", "Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -328953,7 +341837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -329179,7 +342063,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -329466,7 +342350,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex", "Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -329549,7 +342433,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -329730,7 +342614,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -329970,7 +342854,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -330083,7 +342967,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -330198,7 +343082,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AutoscaleConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", "GlobalConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", @@ -330350,7 +343234,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -330407,7 +343291,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -330484,7 +343368,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -330869,7 +343753,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tags": "System.Collections.Generic.Dictionary`2[System.String,System.String]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -331038,7 +343922,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -331142,7 +344026,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -331528,7 +344412,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -331610,7 +344494,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -331815,7 +344699,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkGateway2": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", "Peer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -332080,7 +344964,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -332163,7 +345047,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -332368,7 +345252,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -332632,7 +345516,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex", "Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnConnectionPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -332728,7 +345612,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -332953,7 +345837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -333240,7 +346124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex", "Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnGatewayPacketCaptureResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "EndTime": "System.DateTime", @@ -333323,7 +346207,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -333504,7 +346388,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -333744,7 +346628,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", @@ -333839,7 +346723,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", @@ -333976,7 +346860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", @@ -334217,7 +347101,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Hops": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", "AvgLatencyInMs": "System.Nullable`1[System.Int32]", @@ -334269,7 +347153,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -334369,7 +347253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -334419,7 +347303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -334525,7 +347409,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -334704,7 +347588,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -334865,7 +347749,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -335011,7 +347895,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Header": "System.Collections.IDictionary", "ValidStatusCode": "System.Int32[]", @@ -335085,7 +347969,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPFlowVerifyResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Access": "System.String", "RuleName": "System.String" @@ -335131,7 +348015,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -335297,7 +348181,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -336075,7 +348959,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPAddressAvailabilityResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Available": "System.Boolean", "AvailableIPAddresses": "System.Collections.Generic.List`1[System.String]", @@ -336122,7 +349006,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -336137,15 +349021,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -336153,8 +349037,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -336218,7 +349103,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -336233,15 +349118,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -336249,8 +349134,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" } }, @@ -336591,7 +349477,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -336679,7 +349565,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -337010,7 +349896,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSCustomIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomIpPrefixParent": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpPrefixes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -337522,7 +350408,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", @@ -337611,7 +350497,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Vendor": "System.String", "BundledScaleUnit": "System.String", @@ -337720,7 +350606,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Vendor": "System.String", "BundledScaleUnit": "System.String", @@ -337838,7 +350724,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", "PropagateStaticRoutes": "System.Boolean", @@ -337919,7 +350805,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", @@ -337980,7 +350866,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338086,7 +350972,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338160,7 +351046,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", @@ -338220,7 +351106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338328,7 +351214,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338417,7 +351303,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338494,7 +351380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338585,7 +351471,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338636,7 +351522,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -338646,7 +351532,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -338717,7 +351603,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -338848,7 +351734,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -338895,7 +351781,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -339045,7 +351931,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -339110,7 +351996,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -339157,7 +352043,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -339338,7 +352224,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -339385,7 +352271,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -339503,7 +352389,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -339557,7 +352443,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -339604,7 +352490,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -339722,7 +352608,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -339760,7 +352646,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -339825,7 +352711,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -339872,7 +352758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -339990,7 +352876,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnServerConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -340059,7 +352945,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -340106,7 +352992,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -340252,7 +353138,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -340299,7 +353185,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -340429,7 +353315,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -340494,7 +353380,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -340541,7 +353427,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -340702,7 +353588,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -340749,7 +353635,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -340880,7 +353766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" }, "ValidateNotNullOrEmpty": false @@ -340927,7 +353813,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -341049,7 +353935,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]", "AssociatedInboundConnections": "System.Collections.Generic.List`1[System.String]", @@ -341142,7 +354028,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -341187,7 +354073,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]", "AssociatedInboundConnections": "System.Collections.Generic.List`1[System.String]", @@ -341220,7 +354106,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" }, "ValidateNotNullOrEmpty": false @@ -341318,7 +354204,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" }, "ValidateNotNullOrEmpty": false @@ -341403,7 +354289,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -341451,7 +354337,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" }, "ValidateNotNullOrEmpty": false @@ -341516,7 +354402,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]", "AssociatedInboundConnections": "System.Collections.Generic.List`1[System.String]", @@ -341543,7 +354429,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" }, "ValidateNotNullOrEmpty": false @@ -341623,7 +354509,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" }, "ValidateNotNullOrEmpty": false @@ -341685,7 +354571,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" }, "ValidateNotNullOrEmpty": false @@ -341754,7 +354640,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]", @@ -342131,7 +355017,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]", @@ -342250,7 +355136,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -342550,7 +355436,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -342777,7 +355663,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -342872,7 +355758,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -342918,7 +355804,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -342953,7 +355839,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" }, "ValidateNotNullOrEmpty": false @@ -343062,7 +355948,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" }, "ValidateNotNullOrEmpty": false @@ -343164,7 +356050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -343212,7 +356098,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" }, "ValidateNotNullOrEmpty": false @@ -343294,7 +356180,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", "Labels": "System.Collections.Generic.List`1[System.String]", @@ -343322,7 +356208,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" }, "ValidateNotNullOrEmpty": false @@ -343419,7 +356305,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" }, "ValidateNotNullOrEmpty": false @@ -343497,7 +356383,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" }, "ValidateNotNullOrEmpty": false @@ -343582,7 +356468,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty]", "RuleType": "System.String", @@ -343659,7 +356545,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", @@ -343729,7 +356615,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty" ] @@ -343844,7 +356730,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty" ] @@ -343912,7 +356798,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualAppliance, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Identity": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", "Delegation": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", @@ -343987,7 +356873,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty" ] @@ -344104,7 +356990,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty" ] @@ -344202,7 +357088,7 @@ "Type": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty" ] @@ -344273,7 +357159,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "O365Policy": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", "AddressPrefix": "System.String", @@ -344362,7 +357248,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" } @@ -344490,7 +357376,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" } @@ -344614,7 +357500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" } @@ -344715,7 +357601,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -344827,7 +357713,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -344878,7 +357764,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" }, "ValidateNotNullOrEmpty": false @@ -344888,7 +357774,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -344959,7 +357845,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MinCapacity": "System.Int32" } @@ -345055,7 +357941,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" }, "ValidateNotNullOrEmpty": false @@ -345071,7 +357957,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -345178,7 +358064,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MinCapacity": "System.Int32" } @@ -345275,7 +358161,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" }, "ValidateNotNullOrEmpty": false @@ -345291,7 +358177,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -345398,7 +358284,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MinCapacity": "System.Int32" } @@ -345465,7 +358351,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -345528,7 +358414,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" }, "ValidateNotNullOrEmpty": false @@ -345544,7 +358430,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -345651,7 +358537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MinCapacity": "System.Int32" } @@ -345730,7 +358616,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" }, "ValidateNotNullOrEmpty": false @@ -345746,7 +358632,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -345853,7 +358739,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MinCapacity": "System.Int32" } @@ -345924,7 +358810,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerIp": "System.String", @@ -346028,7 +358914,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -346060,7 +358946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -346105,7 +358991,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerIp": "System.String", @@ -346253,7 +359139,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -346517,7 +359403,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -346546,7 +359432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -346708,7 +359594,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualWan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VpnGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -346832,7 +359718,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -347060,7 +359946,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -347088,7 +359974,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerIp": "System.String", @@ -347206,7 +360092,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerIp": "System.String", @@ -347306,7 +360192,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -347349,7 +360235,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerIp": "System.String", @@ -347472,7 +360358,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -347562,7 +360448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -347605,7 +360491,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -347729,7 +360615,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -347802,7 +360688,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -347845,7 +360731,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -347951,7 +360837,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -348039,7 +360925,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -348116,7 +361002,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", @@ -348221,7 +361107,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", @@ -348651,7 +361537,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", @@ -348936,7 +361822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -349248,7 +362134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowBranchToBranchTraffic": "System.Boolean", "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", @@ -349365,7 +362251,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -349665,7 +362551,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -349892,7 +362778,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -349974,7 +362860,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -350260,7 +363146,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -350696,7 +363582,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -350810,7 +363696,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -350859,7 +363745,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -350914,7 +363800,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" }, "ValidateNotNullOrEmpty": false @@ -350936,7 +363822,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -350963,7 +363849,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false @@ -351091,7 +363977,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -351170,7 +364056,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" }, "ValidateNotNullOrEmpty": false @@ -351204,7 +364090,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -351243,7 +364129,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false @@ -351353,7 +364239,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -351432,7 +364318,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" }, "ValidateNotNullOrEmpty": false @@ -351466,7 +364352,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -351505,7 +364391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false @@ -351570,7 +364456,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -351637,7 +364523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -351716,7 +364602,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" }, "ValidateNotNullOrEmpty": false @@ -351750,7 +364636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -351789,7 +364675,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false @@ -351881,7 +364767,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -351960,7 +364846,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" }, "ValidateNotNullOrEmpty": false @@ -351994,7 +364880,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -352033,7 +364919,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" }, "ValidateNotNullOrEmpty": false @@ -352102,7 +364988,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -352190,7 +365076,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -352228,7 +365114,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" }, "ValidateNotNullOrEmpty": false @@ -352238,7 +365124,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" }, "ValidateNotNullOrEmpty": false @@ -352257,7 +365143,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" }, "ValidateNotNullOrEmpty": false @@ -352367,7 +365253,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" }, "ValidateNotNullOrEmpty": false @@ -352383,7 +365269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" }, "ValidateNotNullOrEmpty": false @@ -352414,7 +365300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" }, "ValidateNotNullOrEmpty": false @@ -352527,7 +365413,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", "VirtualHub": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -352562,7 +365448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" }, "ValidateNotNullOrEmpty": false @@ -352578,7 +365464,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" }, "ValidateNotNullOrEmpty": false @@ -352609,7 +365495,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" }, "ValidateNotNullOrEmpty": false @@ -352734,7 +365620,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" }, "ValidateNotNullOrEmpty": false @@ -352750,7 +365636,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" }, "ValidateNotNullOrEmpty": false @@ -352781,7 +365667,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" }, "ValidateNotNullOrEmpty": false @@ -352891,7 +365777,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" }, "ValidateNotNullOrEmpty": false @@ -352907,7 +365793,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" }, "ValidateNotNullOrEmpty": false @@ -352938,7 +365824,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" }, "ValidateNotNullOrEmpty": false @@ -353055,7 +365941,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -353164,7 +366050,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -353700,7 +366586,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -354065,7 +366951,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -354166,7 +367052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -354288,7 +367174,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" }, "ValidateNotNullOrEmpty": false @@ -354345,7 +367231,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false @@ -354355,7 +367241,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup" }, "ValidateNotNullOrEmpty": false @@ -354505,7 +367391,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" }, "ValidateNotNullOrEmpty": false @@ -354639,7 +367525,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false @@ -354655,7 +367541,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup" }, "ValidateNotNullOrEmpty": false @@ -354735,7 +367621,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -354846,7 +367732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" }, "ValidateNotNullOrEmpty": false @@ -354980,7 +367866,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false @@ -354996,7 +367882,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup" }, "ValidateNotNullOrEmpty": false @@ -355153,7 +368039,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" }, "ValidateNotNullOrEmpty": false @@ -355287,7 +368173,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false @@ -355303,7 +368189,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup" }, "ValidateNotNullOrEmpty": false @@ -355421,7 +368307,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" }, "ValidateNotNullOrEmpty": false @@ -355437,7 +368323,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup" }, "ValidateNotNullOrEmpty": false @@ -355521,7 +368407,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsDefault": "System.Boolean", "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -355614,7 +368500,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -355691,7 +368577,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" }, "ValidateNotNullOrEmpty": false @@ -355822,7 +368708,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" }, "ValidateNotNullOrEmpty": false @@ -355888,7 +368774,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadAuthenticationParameters": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", "VpnClientRevokedCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", @@ -355970,7 +368856,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" }, "ValidateNotNullOrEmpty": false @@ -356084,7 +368970,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" }, "ValidateNotNullOrEmpty": false @@ -356179,7 +369065,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" }, "ValidateNotNullOrEmpty": false @@ -356248,7 +369134,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -356335,7 +369221,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -356394,7 +369280,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -356500,7 +369386,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -356510,7 +369396,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -356751,7 +369637,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -356767,7 +369653,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -357016,7 +369902,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -357032,7 +369918,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -357145,7 +370031,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -357296,7 +370182,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -357312,7 +370198,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -357546,7 +370432,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -357562,7 +370448,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -357644,7 +370530,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -357830,7 +370716,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -357846,7 +370732,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -357928,7 +370814,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -358099,7 +370985,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -358115,7 +371001,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -358197,7 +371083,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -358232,7 +371118,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -358383,7 +371269,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -358399,7 +371285,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -358481,7 +371367,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -358637,7 +371523,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -358653,7 +371539,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -358901,7 +371787,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -358917,7 +371803,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -359150,7 +372036,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -359166,7 +372052,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -359263,7 +372149,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualWan, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowVnetToVnetTraffic": "System.Boolean", "AllowBranchToBranchTraffic": "System.Boolean", @@ -359414,7 +372300,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -359430,7 +372316,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -359648,7 +372534,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -359664,7 +372550,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -359864,7 +372750,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" }, "ValidateNotNullOrEmpty": false @@ -359880,7 +372766,7 @@ "Type": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" } @@ -359999,7 +372885,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MinCapacity": "System.Int32", "MaxCapacity": "System.Nullable`1[System.Int32]" @@ -360050,7 +372936,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayGlobalConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableRequestBuffering": "System.Nullable`1[System.Boolean]", "EnableResponseBuffering": "System.Nullable`1[System.Boolean]" @@ -360096,7 +372982,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capacity": "System.Nullable`1[System.Int32]", "Name": "System.String", @@ -360136,7 +373022,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisabledSslProtocols": "System.Collections.Generic.List`1[System.String]", "CipherSuites": "System.Collections.Generic.List`1[System.String]", @@ -360187,7 +373073,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayWebApplicationFirewallConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "DisabledRuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", @@ -360234,7 +373120,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup" ] @@ -360242,7 +373128,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallDisabledRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.List`1[System.Int32]", "RuleGroupName": "System.String", @@ -360289,7 +373175,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion" ] @@ -360297,7 +373183,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExclusionManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]", "MatchVariable": "System.String", @@ -360337,7 +373223,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet" ] @@ -360345,7 +373231,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup]", "RuleSetVersion": "System.String", @@ -360384,7 +373270,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup" ] @@ -360392,7 +373278,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule]", "RuleGroupName": "System.String" @@ -360430,7 +373316,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule" ] @@ -360438,7 +373324,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleId": "System.String" }, @@ -360475,7 +373361,7 @@ "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UserAssignedIdentities": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", "Type": "System.Nullable`1[Microsoft.Azure.Management.Network.Models.ResourceIdentityType]", @@ -360515,7 +373401,7 @@ "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.Dictionary`2[System.String,Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue]", - "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.Dictionary`2[[System.String, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.String", "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue" @@ -360524,7 +373410,7 @@ "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSManagedServiceIdentityUserAssignedIdentitiesValue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrincipalId": "System.String", "ClientId": "System.String" @@ -360662,7 +373548,7 @@ "Microsoft.Azure.Commands.Network.Models.PSResourceId": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -360699,7 +373585,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate" ] @@ -360707,7 +373593,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayAuthenticationCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -360749,7 +373635,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool" ] @@ -360757,7 +373643,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", "BackendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", @@ -360810,7 +373696,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress" ] @@ -360818,7 +373704,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Fqdn": "System.String", "IpAddress": "System.String" @@ -360856,7 +373742,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration" ] @@ -360864,7 +373750,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateLinkConnectionProperties": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", @@ -360946,7 +373832,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationConnectivityInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Fqdns": "System.Collections.Generic.List`1[System.String]", "RequiredMemberName": "System.String", @@ -360985,7 +373871,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosSettings": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", @@ -361050,7 +373936,7 @@ "Microsoft.Azure.Commands.Network.Models.PSDdosSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDdosSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DdosProtectionPlan": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "ProtectionMode": "System.String" @@ -361088,7 +373974,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.String", "Name": "System.String", @@ -361137,7 +374023,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -361183,7 +374069,7 @@ "Microsoft.Azure.Commands.Network.Models.PSSubnet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSubnet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkSecurityGroup": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", "NatGateway": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -361278,7 +374164,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", "SecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -361350,7 +374236,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface" ] @@ -361358,7 +374244,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "DnsSettings": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", @@ -361439,7 +374325,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsServers": "System.Collections.Generic.List`1[System.String]", "AppliedDnsServers": "System.Collections.Generic.List`1[System.String]", @@ -361482,7 +374368,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration" ] @@ -361490,7 +374376,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceTapConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualNetworkTap": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", "ResourceGroupName": "System.String", @@ -361533,7 +374419,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DestinationLoadBalancerFrontEndIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", "DestinationNetworkInterfaceIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", @@ -361585,7 +374471,7 @@ "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "GatewayLoadBalancer": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -361670,7 +374556,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSResourceId" ] @@ -361683,7 +374569,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSSecurityRule" ] @@ -361691,7 +374577,7 @@ "Microsoft.Azure.Commands.Network.Models.PSSecurityRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", @@ -361752,7 +374638,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup" ] @@ -361760,7 +374646,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "ProvisioningState": "System.String", @@ -361806,7 +374692,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSubnet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSSubnet" ] @@ -361814,7 +374700,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteTable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DisableBgpRoutePropagation": "System.Boolean", "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", @@ -361873,7 +374759,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSRoute" ] @@ -361881,7 +374767,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressPrefix": "System.String", "NextHopType": "System.String", @@ -361924,7 +374810,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSDelegation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSDelegation" ] @@ -361932,7 +374818,7 @@ "Microsoft.Azure.Commands.Network.Models.PSDelegation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDelegation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDelegation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Actions": "System.Collections.Generic.List`1[System.String]", "ProvisioningState": "System.String", @@ -361974,7 +374860,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSIPConfiguration" ] @@ -361982,7 +374868,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint" ] @@ -361990,7 +374876,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExtendedLocation": "Microsoft.Azure.Commands.Network.Models.PSExtendedLocation", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -362065,7 +374951,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig" ] @@ -362073,7 +374959,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointCustomDnsConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpAddresses": "System.Collections.Generic.List`1[System.String]", "Fqdn": "System.String" @@ -362111,7 +374997,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration" ] @@ -362119,7 +375005,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "GroupId": "System.String", @@ -362161,7 +375047,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection" ] @@ -362169,7 +375055,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", "GroupIds": "System.Collections.Generic.List`1[System.String]", @@ -362215,7 +375101,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Status": "System.String", "Description": "System.String", @@ -362254,7 +375140,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink" ] @@ -362262,7 +375148,7 @@ "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSResourceNavigationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinkedResourceType": "System.String", "Link": "System.String", @@ -362304,7 +375190,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink" ] @@ -362312,7 +375198,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceAssocationLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinkedResourceType": "System.String", "Link": "System.String", @@ -362354,7 +375240,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint" ] @@ -362362,7 +375248,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpoint, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkIdentifier": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Locations": "System.Collections.Generic.List`1[System.String]", @@ -362402,7 +375288,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy" ] @@ -362410,7 +375296,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceEndpointPolicyDefinitions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", "Subnets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSubnet]", @@ -362468,7 +375354,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition" ] @@ -362476,7 +375362,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceEndpointPolicyDefinition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "serviceResources": "System.Collections.Generic.List`1[System.String]", "Description": "System.String", @@ -362519,7 +375405,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DomainNameLabelScope": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType]", "DomainNameLabel": "System.String", @@ -362559,7 +375445,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType" ] @@ -362567,7 +375453,7 @@ "Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDomainNameLabelScopeType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "Equals", @@ -362654,7 +375540,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddressSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Tier": "System.String" @@ -362692,7 +375578,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag" ] @@ -362700,7 +375586,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpTagType": "System.String", "Tag": "System.String" @@ -362738,7 +375624,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool" ] @@ -362746,7 +375632,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBackendAddressPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OutboundRule": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VirtualNetwork": "Microsoft.Azure.Management.Network.Models.SubResource", @@ -362866,7 +375752,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress" ] @@ -362874,7 +375760,7 @@ "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerBackendAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaceIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -362925,7 +375811,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping" ] @@ -362933,7 +375819,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatRulePortMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendPort": "System.Nullable`1[System.Int32]", "BackendPort": "System.Nullable`1[System.Int32]", @@ -362972,7 +375858,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface" ] @@ -362980,7 +375866,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "Identifier": "System.Int32", @@ -363020,7 +375906,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule" ] @@ -363028,7 +375914,7 @@ "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -363090,7 +375976,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkTap" ] @@ -363098,7 +375984,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings" ] @@ -363106,7 +375992,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConnectionDraining": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -363174,7 +376060,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayConnectionDraining, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "DrainTimeoutInSec": "System.Int32" @@ -363212,7 +376098,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings" ] @@ -363220,7 +376106,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Probe": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "TrustedRootCertificates": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -363281,7 +376167,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError" ] @@ -363289,7 +376175,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayCustomError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCode": "System.String", "CustomErrorPageUrl": "System.String" @@ -363327,7 +376213,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration" ] @@ -363335,7 +376221,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -363384,7 +376270,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort" ] @@ -363392,7 +376278,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFrontendPort, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "ProvisioningState": "System.String", @@ -363434,7 +376320,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener" ] @@ -363442,7 +376328,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHttpListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -363498,7 +376384,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration" ] @@ -363506,7 +376392,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "ProvisioningState": "System.String", @@ -363549,7 +376435,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener" ] @@ -363557,7 +376443,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayListener, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPort": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -363608,7 +376494,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection" ] @@ -363616,7 +376502,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -363661,7 +376547,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration" ] @@ -363669,7 +376555,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", "ProvisioningState": "System.String", @@ -363712,7 +376598,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration" ] @@ -363720,7 +376606,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPrivateLinkIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Primary": "System.Nullable`1[System.Boolean]", @@ -363766,7 +376652,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe" ] @@ -363774,7 +376660,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Match": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", "PickHostNameFromBackendHttpSettings": "System.Nullable`1[System.Boolean]", @@ -363826,7 +376712,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayProbeHealthResponseMatch, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StatusCodes": "System.Collections.Generic.List`1[System.String]", "Body": "System.String", @@ -363865,7 +376751,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration" ] @@ -363873,7 +376759,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRedirectConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TargetListener": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RequestRoutingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -363925,7 +376811,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule" ] @@ -363933,7 +376819,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRequestRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -363988,7 +376874,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet" ] @@ -363996,7 +376882,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RewriteRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", "ProvisioningState": "System.String", @@ -364043,7 +376929,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule" ] @@ -364051,7 +376937,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActionSet": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", "Conditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]", @@ -364094,7 +376980,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleActionSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "UrlConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", "RequestHeaderConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", @@ -364136,7 +377022,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Reroute": "System.Boolean", "ModifiedQueryString": "System.String", @@ -364175,7 +377061,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration" ] @@ -364183,7 +377069,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HeaderValueMatcher": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher", "HeaderValue": "System.String", @@ -364222,7 +377108,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayHeaderValueMatcher, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IgnoreCase": "System.Nullable`1[System.Boolean]", "Negate": "System.Nullable`1[System.Boolean]", @@ -364261,7 +377147,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition" ] @@ -364269,7 +377155,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRewriteRuleCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IgnoreCase": "System.Nullable`1[System.Boolean]", "Negate": "System.Nullable`1[System.Boolean]", @@ -364309,7 +377195,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule" ] @@ -364317,7 +377203,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayRoutingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -364366,7 +377252,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate" ] @@ -364374,7 +377260,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Password": "System.Security.SecureString", "Data": "System.String", @@ -364424,7 +377310,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile" ] @@ -364432,7 +377318,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ClientAuthConfiguration": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", "SslPolicy": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewaySslPolicy", @@ -364477,7 +377363,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayClientAuthConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VerifyClientCertIssuerDN": "System.Nullable`1[System.Boolean]", "VerifyClientRevocation": "System.String" @@ -364515,7 +377401,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate" ] @@ -364523,7 +377409,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Data": "System.String", "ValidatedCertData": "System.String", @@ -364567,7 +377453,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate" ] @@ -364575,7 +377461,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayTrustedRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Data": "System.String", "ProvisioningState": "System.String", @@ -364617,7 +377503,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap" ] @@ -364625,7 +377511,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayUrlPathMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultBackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "DefaultBackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -364675,7 +377561,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule" ] @@ -364683,7 +377569,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayPathRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -364865,7 +377751,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRules, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Exclusions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", "ManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]" @@ -364903,7 +377789,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion" ] @@ -364911,7 +377797,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExclusionManagedRuleSets": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyExclusionManagedRuleSet]", "MatchVariable": "System.String", @@ -364951,7 +377837,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet" ] @@ -364959,7 +377845,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleGroupOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]", "RuleSetVersion": "System.String", @@ -364998,7 +377884,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride" ] @@ -365006,7 +377892,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]", "RuleGroupName": "System.String" @@ -365044,7 +377930,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride" ] @@ -365052,7 +377938,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyManagedRuleOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleId": "System.String", "State": "System.String", @@ -365092,7 +377978,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicySettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogScrubbing": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", "RequestBodyCheck": "System.Boolean", @@ -365140,7 +378026,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScrubbingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule]", "State": "System.String" @@ -365178,7 +378064,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule" ] @@ -365186,7 +378072,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallPolicyLogScrubbingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "System.String", "MatchVariable": "System.String", @@ -365226,7 +378112,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule" ] @@ -365234,7 +378120,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchConditions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]", "GroupByUserSession": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession]", @@ -365280,7 +378166,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition" ] @@ -365288,7 +378174,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCondition, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]", "MatchValues": "System.Collections.Generic.List`1[System.String]", @@ -365332,7 +378218,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable" ] @@ -365340,7 +378226,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallMatchVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VariableName": "System.String", "Selector": "System.String" @@ -365378,7 +378264,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession" ] @@ -365386,7 +378272,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByUserSession, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "GroupByVariables": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable]" }, @@ -365423,7 +378309,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable" ] @@ -365431,7 +378317,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallCustomRuleGroupByVariable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VariableName": "System.String" }, @@ -365468,7 +378354,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Tier": "System.String", @@ -365507,7 +378393,7 @@ "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSServiceProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BandwidthInMbps": "System.Int32", "PeeringLocation": "System.String", @@ -365546,7 +378432,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization" ] @@ -365554,7 +378440,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitAuthorization, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AuthorizationKey": "System.String", "AuthorizationUseStatus": "System.String", @@ -365596,7 +378482,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPeering" ] @@ -365604,7 +378490,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPeering": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -365666,7 +378552,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", "RouteFilter": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", @@ -365712,7 +378598,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdvertisedPublicPrefixes": "System.Collections.Generic.List`1[System.String]", "AdvertisedCommunities": "System.Collections.Generic.List`1[System.String]", @@ -365756,7 +378642,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteFilter": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Peerings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeering]", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", @@ -365814,7 +378700,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule" ] @@ -365822,7 +378708,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteFilterRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Communities": "System.Collections.Generic.List`1[System.String]", "Access": "System.String", @@ -365864,7 +378750,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection" ] @@ -365872,7 +378758,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IPv6CircuitConnectionConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig", "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -365921,7 +378807,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitConnectionIPv6ConnectionConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressPrefix": "System.String", "CircuitConnectionStatus": "System.String" @@ -365959,7 +378845,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection" ] @@ -365967,7 +378853,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPeerExpressRouteCircuitConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -366023,7 +378909,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitReference, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -366060,7 +378946,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering" ] @@ -366068,7 +378954,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCrossConnectionPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ipv6PeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSIpv6PeeringConfig", "MicrosoftPeeringConfig": "Microsoft.Azure.Commands.Network.Models.PSPeeringConfig", @@ -366132,7 +379018,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink" ] @@ -366140,7 +379026,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MacSecConfig": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig", "RouterName": "System.String", @@ -366188,7 +379074,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteLinkMacSecConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CknSecretIdentifier": "System.String", "CakSecretIdentifier": "System.String", @@ -366228,7 +379114,7 @@ "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancerSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Tier": "System.String" @@ -366266,7 +379152,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSFrontendIPConfiguration" ] @@ -366274,7 +379160,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool" ] @@ -366282,7 +379168,7 @@ "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundNatPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendPortRangeStart": "System.Int32", @@ -366343,7 +379229,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule" ] @@ -366351,7 +379237,7 @@ "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLoadBalancingRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FrontendIPConfiguration": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -366415,7 +379301,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSOutboundRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSOutboundRule" ] @@ -366423,7 +379309,7 @@ "Microsoft.Azure.Commands.Network.Models.PSOutboundRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOutboundRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "FrontendIpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -366475,7 +379361,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSProbe]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSProbe" ] @@ -366483,7 +379369,7 @@ "Microsoft.Azure.Commands.Network.Models.PSProbe": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSProbe", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSProbe, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LoadBalancingRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Port": "System.Int32", @@ -366552,7 +379438,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Tier": "System.String" @@ -366590,7 +379476,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress" ] @@ -366598,7 +379484,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag" ] @@ -366606,7 +379492,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPublicIpPrefixTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpTagType": "System.String", "Tag": "System.String" @@ -366644,7 +379530,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer" ] @@ -366652,7 +379538,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteServerPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -366694,7 +379580,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy" ] @@ -366702,7 +379588,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Destinations": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", @@ -366743,7 +379629,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute" ] @@ -366751,7 +379637,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Destinations": "System.Collections.Generic.List`1[System.String]", @@ -366793,7 +379679,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAddressSpace": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "AddressPrefixesText": "System.String" @@ -366831,7 +379717,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBgpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpPeeringAddresses": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress]", "PeerWeight": "System.Nullable`1[System.Int32]", @@ -366871,7 +379757,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress" ] @@ -366879,7 +379765,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpConfigurationBgpPeeringAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Etag": "System.String", @@ -366918,7 +379804,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Bounds": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPropertiesAutoScaleConfigurationBounds", "ScaleUnit": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPropertiesAutoScaleConfigurationBounds", @@ -366957,7 +379843,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPropertiesAutoScaleConfigurationBounds": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPropertiesAutoScaleConfigurationBounds", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Min": "System.Int32", "Max": "System.Int32" @@ -366995,7 +379881,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Capacity": "System.Int32", "Name": "System.String", @@ -367034,7 +379920,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "ClientConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration]", @@ -367090,7 +379976,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration" ] @@ -367098,7 +379984,7 @@ "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "VirtualNetworkGatewayPolicyGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -367138,7 +380024,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy" ] @@ -367146,7 +380032,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpsecPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SALifeTimeSeconds": "System.Int32", "SADataSizeKilobytes": "System.Int32", @@ -367190,7 +380076,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRadiusServer]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSRadiusServer" ] @@ -367198,7 +380084,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRadiusServer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRadiusServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RadiusServerScore": "System.Int32", "RadiusServerSecret": "System.String", @@ -367237,7 +380123,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate" ] @@ -367245,7 +380131,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Thumbprint": "System.String", "ProvisioningState": "System.String", @@ -367286,7 +380172,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate" ] @@ -367294,7 +380180,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicCertData": "System.String", "ProvisioningState": "System.String", @@ -367335,7 +380221,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration" ] @@ -367343,7 +380229,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -367388,7 +380274,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule" ] @@ -367396,7 +380282,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", "ExternalMappings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", @@ -367443,7 +380329,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping" ] @@ -367451,7 +380337,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnNatRuleMapping, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "System.String", "PortRange": "System.String" @@ -367489,7 +380375,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup" ] @@ -367497,7 +380383,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsDefault": "System.Boolean", "ClientConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -367543,7 +380429,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember" ] @@ -367551,7 +380437,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "AttributeType": "System.String", @@ -367590,7 +380476,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkBgpCommunities, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VirtualNetworkCommunity": "System.String", "RegionalCommunity": "System.String" @@ -367632,7 +380518,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkEncryption, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.String", "Enforcement": "System.String" @@ -367670,7 +380556,7 @@ "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DnsServers": "System.Collections.Generic.List`1[System.String]", "DnsServersText": "System.String" @@ -367708,7 +380594,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering" ] @@ -367716,7 +380602,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkPeering, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "PeeredRemoteAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", @@ -367776,7 +380662,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNatGatewaySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String" }, @@ -367813,7 +380699,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpAllocation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpAllocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "VirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", @@ -367868,7 +380754,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetwork, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "DhcpOptions": "Microsoft.Azure.Commands.Network.Models.PSDhcpOptions", @@ -367883,15 +380769,15 @@ "EnableDdosProtection": "System.Nullable`1[System.Boolean]", "FlowTimeoutInMinutes": "System.Nullable`1[System.Int32]", "Name": "System.String", - "ExtendedLocationText": "System.String", + "IpAllocationsText": "System.String", "TagsTable": "System.String", "Type": "System.String", "ResourceGuid": "System.String", "Location": "System.String", "ResourceGroupName": "System.String", - "IpAllocationsText": "System.String", + "ExtendedLocationText": "System.String", + "DdosProtectionPlanText": "System.String", "SubnetsText": "System.String", - "EnableDdosProtectionText": "System.String", "VirtualNetworkPeeringsText": "System.String", "EncryptionText": "System.String", "BgpCommunitiesText": "System.String", @@ -367899,8 +380785,9 @@ "FlowTimeoutInMinutesText": "System.String", "DhcpOptionsText": "System.String", "AddressSpaceText": "System.String", + "PrivateEndpointVNetPolicies": "System.String", "ProvisioningState": "System.String", - "DdosProtectionPlanText": "System.String", + "EnableDdosProtectionText": "System.String", "Id": "System.String" }, "Methods": [ @@ -367936,7 +380823,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer" ] @@ -367944,7 +380831,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterPeer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PeerIp": "System.String", "ProvisioningState": "System.String", @@ -367986,7 +380873,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Int32", "Address": "System.String", @@ -368025,7 +380912,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorSource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Port": "System.Nullable`1[System.Int32]", "ResourceId": "System.String" @@ -368085,7 +380972,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject" ] @@ -368093,7 +380980,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorOutputObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "WorkspaceSettings": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings", "Type": "System.String", @@ -368132,7 +381019,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionMonitorWorkspaceSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "WorkspaceResourceId": "System.String" }, @@ -368169,7 +381056,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject" ] @@ -368177,7 +381064,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestGroupObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sources": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", "Destinations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", @@ -368221,7 +381108,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject" ] @@ -368229,7 +381116,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Scope": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope", "Name": "System.String", @@ -368272,7 +381159,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Include": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem]", "Exclude": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem]", @@ -368312,7 +381199,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem" ] @@ -368320,7 +381207,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorEndpointScopeItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Address": "System.String" }, @@ -368357,7 +381244,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject" ] @@ -368365,7 +381252,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorTestConfigurationObject, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProtocolConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", "SuccessThreshold": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold", @@ -368408,7 +381295,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorProtocolConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "GetType", @@ -368442,7 +381329,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkWatcherConnectionMonitorSuccessThreshold, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoundTripTimeMs": "System.Nullable`1[System.Double]", "ChecksFailedPercent": "System.Nullable`1[System.Int32]" @@ -368480,7 +381367,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyDnsSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Servers": "System.Collections.Generic.IList`1[System.String]", "EnableProxy": "System.Nullable`1[System.Boolean]" @@ -368518,7 +381405,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyExplicitProxy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EnableExplicitProxy": "System.Nullable`1[System.Boolean]", "EnablePacFile": "System.Nullable`1[System.Boolean]", @@ -368560,7 +381447,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Configuration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", "Profile": "System.String", @@ -368599,7 +381486,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BypassTrafficSettings": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting]", "SignatureOverrides": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride]", @@ -368638,7 +381525,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting" ] @@ -368646,7 +381533,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionBypassTrafficSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourceAddresses": "System.Collections.Generic.List`1[System.String]", "DestinationAddresses": "System.Collections.Generic.List`1[System.String]", @@ -368690,7 +381577,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride" ] @@ -368698,7 +381585,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyIntrusionDetectionSignatureOverride, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "Mode": "System.String" @@ -368736,7 +381623,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tier": "System.String" }, @@ -368773,7 +381660,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySNAT, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateRanges": "System.Collections.Generic.IList`1[System.String]", "AutoLearnPrivateRanges": "System.String" @@ -368815,7 +381702,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicySqlSetting, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllowSqlRedirect": "System.Nullable`1[System.Boolean]" }, @@ -368852,7 +381739,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -368896,7 +381783,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CertificateAuthority": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurityCertificateAuthority" }, @@ -368933,7 +381820,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurityCertificateAuthority": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurityCertificateAuthority", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurityCertificateAuthority, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyTransportSecurityCertificateAuthority, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "KeyVaultSecretId": "System.String" @@ -368979,7 +381866,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnClientConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AllocatedIpAddresses": "System.Collections.Generic.List`1[System.String]", "VpnClientConnectionsCount": "System.Int32", @@ -369020,7 +381907,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration" ] @@ -369028,7 +381915,7 @@ "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSP2SConnectionConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VpnClientAddressPool": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -369077,7 +381964,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagatedRouteTables": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", "AssociatedRouteTable": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -369120,7 +382007,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPropagatedRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ids": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "Labels": "System.Collections.Generic.List`1[System.String]" @@ -369158,7 +382045,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVnetRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVnetRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StaticRoutesConfig": "Microsoft.Azure.Commands.Network.Models.PSStaticRoutesConfig", "StaticRoutes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSStaticRoute]" @@ -369196,7 +382083,7 @@ "Microsoft.Azure.Commands.Network.Models.PSStaticRoutesConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoutesConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoutesConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoutesConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PropagateStaticRoutes": "System.Boolean", "VnetLocalRouteOverrideCriteria": "System.String" @@ -369234,7 +382121,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSStaticRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSStaticRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSStaticRoute" ] @@ -369242,7 +382129,7 @@ "Microsoft.Azure.Commands.Network.Models.PSStaticRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStaticRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", @@ -369281,7 +382168,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup" ] @@ -369289,7 +382176,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsDefault": "System.Boolean", "P2SConnectionConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -369335,7 +382222,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember" ] @@ -369343,7 +382230,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnServerConfigurationPolicyGroupMember, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "AttributeType": "System.String", @@ -369382,7 +382269,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet" ] @@ -369390,7 +382277,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]", "Tag": "System.Collections.Hashtable", @@ -369440,7 +382327,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup" ] @@ -369448,7 +382335,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]", "RuleGroupName": "System.String", @@ -369488,7 +382375,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule" ] @@ -369496,7 +382383,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleId": "System.Int32", "Description": "System.String", @@ -369537,7 +382424,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool" ] @@ -369545,7 +382432,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthPool, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendAddressPool": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendAddressPool", "BackendHttpSettingsCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]", @@ -369585,7 +382472,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings" ] @@ -369593,7 +382480,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthHttpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BackendHttpSettings": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHttpSettings", "Servers": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]", @@ -369633,7 +382520,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer" ] @@ -369641,7 +382528,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayBackendHealthServer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSNetworkInterfaceIPConfiguration", "Address": "System.String", @@ -369681,7 +382568,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet" ] @@ -369689,7 +382576,7 @@ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallManifestRuleSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]", "Tiers": "System.Collections.Generic.IList`1[System.String]", @@ -369729,7 +382616,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSApplicationGatewayFirewallRuleGroup" ] @@ -369737,7 +382624,7 @@ "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models.Bastion", "Name": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String" }, @@ -369806,7 +382693,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration" ] @@ -369814,7 +382701,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -369857,7 +382744,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBastion": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBastion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBastion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sku": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionSku", "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBastionIPConfiguration]", @@ -369954,7 +382841,7 @@ "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models.Bastion", "Name": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Bastion.PSBastionShareableLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VmId": "System.String", "Bsl": "System.String", @@ -370168,7 +383055,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity" ] @@ -370176,7 +383063,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpCommunity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IsAuthorizedToUse": "System.Boolean", "CommunityPrefixes": "System.Collections.Generic.List`1[System.String]", @@ -370219,7 +383106,7 @@ "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveNetworkSecurityGroupAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterface": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -370268,7 +383155,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule" ] @@ -370276,7 +383163,7 @@ "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SourcePortRange": "System.Collections.Generic.IList`1[System.String]", "DestinationPortRange": "System.Collections.Generic.IList`1[System.String]", @@ -370323,7 +383210,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -370360,7 +383247,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayAutoscaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Bounds": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds", "BoundsText": "System.String" @@ -370398,7 +383285,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteGatewayPropertiesAutoScaleConfigurationBounds, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Min": "System.Int32", "Max": "System.Int32" @@ -370436,7 +383323,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -370473,7 +383360,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection" ] @@ -370481,7 +383368,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ExpressRouteCircuitPeering": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteCircuitPeeringId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -370528,7 +383415,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths" ] @@ -370536,7 +383423,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRoutePortsLocationBandwidths, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ValueInGbps": "System.Nullable`1[System.Int32]", "OfferName": "System.String" @@ -370574,7 +383461,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered" ] @@ -370582,7 +383469,7 @@ "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSExpressRouteServiceProviderBandwidthsOffered, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ValueInMbps": "System.Int32", "OfferName": "System.String" @@ -370620,7 +383507,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIPs": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", "PrivateIPAddress": "System.String" @@ -370658,7 +383545,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubPublicIpAddresses, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Addresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", "Count": "System.Int32" @@ -370696,13 +383583,13 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[]", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress[], Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress" }, "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPublicIpAddress, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Address": "System.String" }, @@ -370739,7 +383626,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSResourceId", @@ -370783,7 +383670,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpPrefix, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpPrefixes": "System.Collections.Generic.IList`1[System.String]" }, @@ -370820,7 +383707,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallSku, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Tier": "System.String" @@ -370858,7 +383745,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallThreatIntelWhitelist, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "FQDNs": "System.String[]", "IpAddresses": "System.String[]" @@ -370896,7 +383783,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection" ] @@ -370904,7 +383791,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]", @@ -370978,7 +383865,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.String" }, @@ -371015,7 +383902,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule" ] @@ -371023,7 +383910,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Protocols": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -371085,7 +383972,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol" ] @@ -371093,7 +383980,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProtocolType": "System.String", "Port": "System.UInt32" @@ -371145,7 +384032,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration" ] @@ -371153,7 +384040,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection" ] @@ -371161,7 +384048,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]", @@ -371235,7 +384122,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRCAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.String" }, @@ -371272,7 +384159,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule" ] @@ -371280,7 +384167,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -371341,7 +384228,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection" ] @@ -371349,7 +384236,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Action": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallRCAction", "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", @@ -371423,7 +384310,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule" ] @@ -371431,7 +384318,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallNetworkRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -371493,7 +384380,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewall, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HubIPAddresses": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallHubIpAddresses", "ManagementIpConfiguration": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallIpConfiguration", @@ -371815,7 +384702,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallFqdnTag, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Tag": "System.Collections.Hashtable", "FqdnTagName": "System.String", @@ -371861,7 +384748,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", "Size": "System.String", @@ -371913,7 +384800,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection" ] @@ -371921,7 +384808,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "RuleCollectionType": "System.String", @@ -371960,7 +384847,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRuleCollectionGroupDraft, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleCollection": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyBaseRuleCollection]", "Size": "System.String", @@ -372012,7 +384899,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIpGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIpGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIpGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Firewalls": "System.Collections.Generic.List`1[Microsoft.Azure.Management.Network.Models.SubResource]", "IpAddresses": "System.Collections.Generic.List`1[System.String]", @@ -372060,7 +384947,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CrossTenantScopes": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]", "ManagementGroups": "System.Collections.Generic.List`1[System.String]", @@ -372102,7 +384989,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes" ] @@ -372110,7 +384997,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerCrossTenantScopes, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ManagementGroups": "System.Collections.Generic.List`1[System.String]", "Subscriptions": "System.Collections.Generic.List`1[System.String]", @@ -372151,7 +385038,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSSystemData, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreatedAt": "System.Nullable`1[System.DateTime]", "LastModifiedAt": "System.Nullable`1[System.DateTime]", @@ -372193,7 +385080,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration" ] @@ -372201,7 +385088,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConfigurationGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]", "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", @@ -372252,7 +385139,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup" ] @@ -372260,7 +385147,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "MemberType": "System.String" @@ -372298,7 +385185,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem" ] @@ -372306,7 +385193,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkGroupId": "System.String", "UseHubGateway": "System.String", @@ -372346,7 +385233,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub" ] @@ -372354,7 +385241,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerHub, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ResourceId": "System.String", "ResourceType": "System.String" @@ -372392,7 +385279,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule" ] @@ -372400,7 +385287,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerActiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]", "RuleCollectionAppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", @@ -372449,7 +385336,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem" ] @@ -372457,7 +385344,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkGroupId": "System.String" }, @@ -372494,7 +385381,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus" ] @@ -372502,7 +385389,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerDeploymentStatus, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConfigurationIds": "System.Collections.Generic.IList`1[System.String]", "CommitTime": "System.Nullable`1[System.DateTime]", @@ -372545,7 +385432,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration" ] @@ -372553,7 +385440,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveConnectivityConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConfigurationGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]", "AppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConnectivityGroupItem]", @@ -372602,7 +385489,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule" ] @@ -372610,7 +385497,7 @@ "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerEffectiveBaseSecurityAdminRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerConfigurationGroup]", "RuleCollectionAppliesToGroups": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityGroupItem]", @@ -372654,10 +385541,222 @@ } ] }, + "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleDestination, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "DestinationAddress": "System.String", + "Type": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingRuleNextHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NextHopAddress": "System.String", + "NextHopType": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem" + ] + }, + "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerRoutingGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkGroupId": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem" + ] + }, + "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "AddressPrefix": "System.String", + "AddressPrefixType": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, + "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem]": { + "Namespace": "System.Collections.Generic", + "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem]", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "GenericTypeArguments": [ + "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem" + ] + }, + "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem": { + "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", + "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerSecurityUserGroupItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "Properties": { + "NetworkGroupId": "System.String" + }, + "Methods": [ + { + "Name": "GetType", + "ReturnType": "System.Type" + }, + { + "Name": "ToString", + "ReturnType": "System.String" + }, + { + "Name": "Equals", + "Parameters": [ + { + "Name": "obj", + "Type": "System.Object" + } + ], + "ReturnType": "System.Boolean" + }, + { + "Name": "GetHashCode", + "ReturnType": "System.Int32" + } + ], + "Constructors": [ + { + "Name": "" + } + ] + }, "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface" ] @@ -372665,7 +385764,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Container": "Microsoft.Azure.Commands.Network.Models.PSContainer", "ContainerNetworkInterfaceConfiguration": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", @@ -372711,7 +385810,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainer": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainer", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainer, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -372748,7 +385847,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ContainerNetworkInterfaces": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterface]", "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", @@ -372792,7 +385891,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile" ] @@ -372800,7 +385899,7 @@ "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSIPConfigurationProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", "ProvisioningState": "System.String", @@ -372842,7 +385941,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration" ] @@ -372850,7 +385949,7 @@ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceIPConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIpAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -372896,7 +385995,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSContainerNetworkInterfaceConfiguration" ] @@ -372904,7 +386003,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation" ] @@ -372912,7 +386011,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties", "Id": "System.String", @@ -372951,7 +386050,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkServiceTagInformationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "Region": "System.String", @@ -372991,7 +386090,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceDelegationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ServiceName": "System.String", "ProvisioningState": "System.String" @@ -373038,7 +386137,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkInterfaceConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]" }, @@ -373075,7 +386174,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration" ] @@ -373083,7 +386182,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfigurationProperties", "NicType": "System.String" @@ -373121,7 +386220,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfigurationProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfigurationProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNetworkInterfaceConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpConfigurations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration]" }, @@ -373158,7 +386257,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration" ] @@ -373166,7 +386265,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Properties": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfigurationProperties", "Name": "System.String" @@ -373204,7 +386303,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfigurationProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfigurationProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceIpConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Primary": "System.Boolean" }, @@ -373241,7 +386340,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceSkuProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Vendor": "System.String", "BundledScaleUnit": "System.String", @@ -373280,7 +386379,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSResourceId, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSResourceId" ] @@ -373288,7 +386387,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties" ] @@ -373296,7 +386395,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceAdditionalNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HasPublicIP": "System.Boolean", "Name": "System.String", @@ -373335,7 +386434,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties" ] @@ -373343,7 +386442,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceInternetIngressIpsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String" }, @@ -373380,7 +386479,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties" ] @@ -373388,7 +386487,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualApplianceNicProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "PublicIpAddress": "System.String", @@ -373428,7 +386527,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances" ] @@ -373436,7 +386535,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkVirtualApplianceSkuInstances, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "InstanceCount": "System.Nullable`1[System.Int32]", "ScaleUnit": "System.String" @@ -373474,7 +386573,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot" ] @@ -373482,7 +386581,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectionStateSnapshot, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Hops": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", "StartTime": "System.Nullable`1[System.DateTime]", @@ -373524,7 +386623,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop" ] @@ -373532,7 +386631,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Issues": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]", "NextHopIds": "System.Collections.Generic.List`1[System.String]", @@ -373575,7 +386674,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue" ] @@ -373583,7 +386682,7 @@ "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSConnectivityIssue, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Context": "System.Collections.Generic.List`1[System.Collections.Generic.Dictionary`2[System.String,System.String]]", "Origin": "System.String", @@ -373631,7 +386730,7 @@ "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSFlowLogFormatParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Version": "System.Nullable`1[System.Int32]", "Type": "System.String" @@ -373669,7 +386768,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRetentionPolicyParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Nullable`1[System.Boolean]", "Days": "System.Nullable`1[System.Int32]" @@ -373707,7 +386806,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NetworkWatcherFlowAnalyticsConfiguration": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties" }, @@ -373748,7 +386847,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficAnalyticsConfigurationProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Enabled": "System.Boolean", "TrafficAnalyticsInterval": "System.Nullable`1[System.Int32]", @@ -373793,7 +386892,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureMachineScope, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Include": "System.Collections.Generic.List`1[System.String]", "Exclude": "System.Collections.Generic.List`1[System.String]" @@ -373831,7 +386930,7 @@ "Microsoft.Azure.Commands.Network.Models.PSStorageLocation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSStorageLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageId": "System.String", "StoragePath": "System.String", @@ -373870,7 +386969,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter" ] @@ -373878,7 +386977,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureFilter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Protocol": "System.String", "RemoteIPAddress": "System.String", @@ -373919,7 +387018,7 @@ "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType" ] @@ -373927,7 +387026,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPacketCaptureTargetType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "Equals", @@ -374022,7 +387121,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry" ] @@ -374030,7 +387129,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCountry, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Providers": "System.Collections.Generic.IList`1[System.String]", "States": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]", @@ -374070,7 +387169,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState" ] @@ -374078,7 +387177,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListState, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Providers": "System.Collections.Generic.IList`1[System.String]", "Cities": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]", @@ -374118,7 +387217,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity" ] @@ -374126,7 +387225,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAvailableProvidersListCity, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Providers": "System.Collections.Generic.IList`1[System.String]", "CityName": "System.String" @@ -374164,7 +387263,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLocation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Country": "System.String", "State": "System.String", @@ -374203,7 +387302,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem" ] @@ -374211,7 +387310,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Latencies": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]", "Provider": "System.String", @@ -374251,7 +387350,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo" ] @@ -374259,7 +387358,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureReachabilityReportLatencyInfo, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "TimeStamp": "System.Nullable`1[System.DateTime]", "Score": "System.Nullable`1[System.Int32]" @@ -374297,7 +387396,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView" ] @@ -374305,7 +387404,7 @@ "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSSecurityGroupView, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EffectiveSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEffectiveSecurityRule]", "NetworkInterfaceSecurityRules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSSecurityRule]", @@ -374350,7 +387449,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyResource]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSTopologyResource" ] @@ -374358,7 +387457,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTopologyResource": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyResource, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Associations": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]", "Name": "System.String", @@ -374399,7 +387498,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation" ] @@ -374407,7 +387506,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTopologyAssociation, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AssociationType": "System.String", "Name": "System.String", @@ -374446,7 +387545,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails" ] @@ -374454,7 +387553,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingDetails, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecommendedActions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]", "Id": "System.String", @@ -374496,7 +387595,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions" ] @@ -374504,7 +387603,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTroubleshootingRecommendedActions, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ActionId": "System.String", "ActionText": "System.String", @@ -374544,7 +387643,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig" ] @@ -374552,7 +387651,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfig, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RecordSets": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]", "Name": "System.String", @@ -374593,7 +387692,7 @@ "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IList`1[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet]", - "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IList`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet" ] @@ -374601,7 +387700,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateDnsZoneConfigRecordSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IpAddresses": "System.Collections.Generic.IList`1[System.String]", "Ttl": "System.Int32", @@ -374644,7 +387743,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceResourceSet, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Subscriptions": "System.Collections.Generic.List`1[System.String]", "SubscriptionsText": "System.String" @@ -374682,7 +387781,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection" ] @@ -374690,7 +387789,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpointConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpoint": "Microsoft.Azure.Commands.Network.Models.PSPrivateEndpoint", "PrivateLinkServiceConnectionState": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceConnectionState", @@ -374736,7 +387835,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration" ] @@ -374744,7 +387843,7 @@ "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSPrivateLinkServiceIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -374792,7 +387891,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule" ] @@ -374800,7 +387899,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Actions": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction]", "MatchCriteria": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion]", @@ -374844,7 +387943,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction" ] @@ -374852,7 +387951,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleAction, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Parameters": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter]", "Type": "System.String", @@ -374894,7 +387993,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter" ] @@ -374902,7 +388001,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleActionParameter, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutePrefix": "System.Collections.Generic.List`1[System.String]", "Community": "System.Collections.Generic.List`1[System.String]", @@ -374944,7 +388043,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion" ] @@ -374952,7 +388051,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMapRuleCriterion, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RoutePrefix": "System.Collections.Generic.List`1[System.String]", "Community": "System.Collections.Generic.List`1[System.String]", @@ -374995,7 +388094,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Routes": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRoute]", "Connections": "System.Collections.Generic.List`1[System.String]", @@ -375037,7 +388136,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualRouterAutoScaleConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MinCapacity": "System.Int32" }, @@ -375074,7 +388173,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSBgpConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSBgpConnection" ] @@ -375082,7 +388181,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBgpConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBgpConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HubVirtualNetworkConnection": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "PeerIp": "System.String", @@ -375125,7 +388224,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration" ] @@ -375133,7 +388232,7 @@ "Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PublicIPAddress": "Microsoft.Azure.Commands.Network.Models.PSPublicIpAddress", "Subnet": "Microsoft.Azure.Commands.Network.Models.PSSubnet", @@ -375175,7 +388274,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection" ] @@ -375183,7 +388282,7 @@ "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHubVirtualNetworkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVirtualNetwork": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -375227,7 +388326,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMap]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSRouteMap" ] @@ -375235,7 +388334,7 @@ "Microsoft.Azure.Commands.Network.Models.PSRouteMap": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSRouteMap", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSRouteMap, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Rules": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSRouteMapRule]", "AssociatedInboundConnections": "System.Collections.Generic.List`1[System.String]", @@ -375281,7 +388380,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubRouteTable" ] @@ -375294,7 +388393,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRoute" ] @@ -375302,7 +388401,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressPrefixes": "System.Collections.Generic.List`1[System.String]", "NextHops": "System.Collections.Generic.List`1[System.String]", @@ -375343,7 +388442,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute" ] @@ -375351,7 +388450,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualHubEffectiveRouteMapRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Prefix": "System.String", "BgpCommunities": "System.String", @@ -375390,7 +388489,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVHubRoute]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVHubRoute" ] @@ -375398,7 +388497,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVHubRoute": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVHubRoute, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Destinations": "System.Collections.Generic.List`1[System.String]", "Name": "System.String", @@ -375439,7 +388538,7 @@ "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSOffice365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies" }, @@ -375476,7 +388575,7 @@ "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSBreakOutCategoryPolicies, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Allow": "System.Nullable`1[System.Boolean]", "Optimize": "System.Nullable`1[System.Boolean]", @@ -375515,7 +388614,7 @@ "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSLocalNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalNetworkAddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -375567,7 +388666,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGateway, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CustomRoutes": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -375645,7 +388744,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration" ] @@ -375653,7 +388752,7 @@ "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSGatewayCustomBgpIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Etag": "System.String", @@ -375692,7 +388791,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy" ] @@ -375700,7 +388799,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTrafficSelectorPolicy, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LocalAddressRanges": "System.String[]", "RemoteAddressRanges": "System.String[]" @@ -375738,7 +388837,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth" ] @@ -375746,7 +388845,7 @@ "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSTunnelConnectionHealth, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IngressBytesTransferred": "System.Nullable`1[System.Int64]", "EgressBytesTransferred": "System.Nullable`1[System.Int64]", @@ -375787,7 +388886,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "isSaInitiator": "System.Boolean", "quickModeSa": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa]", @@ -375836,7 +388935,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa" ] @@ -375844,7 +388943,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVirtualNetworkGatewayConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "isSaInitiator": "System.Boolean", "localTrafficSelectors": "System.Collections.Generic.List`1[System.String]", @@ -375893,7 +388992,7 @@ "Microsoft.Azure.Commands.Network.Models.PSUsageName": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSUsageName", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsageName, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSUsageName, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Value": "System.String", "LocalizedValue": "System.String" @@ -375931,7 +389030,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSite": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSite", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSite, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AddressSpace": "Microsoft.Azure.Commands.Network.Models.PSAddressSpace", "BgpSettings": "Microsoft.Azure.Commands.Network.Models.PSBgpSettings", @@ -375985,7 +389084,7 @@ "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365PolicyProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BreakOutCategories": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies" }, @@ -376022,7 +389121,7 @@ "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSO365BreakOutCategoryPolicies, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Allow": "System.Nullable`1[System.Boolean]", "Optimize": "System.Nullable`1[System.Boolean]", @@ -376061,7 +389160,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteDeviceProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinkSpeedInMbps": "System.Int32", "DeviceVendor": "System.String", @@ -376100,7 +389199,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink" ] @@ -376108,7 +389207,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLink, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "BgpProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", "LinkProperties": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", @@ -376153,7 +389252,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkBgpSettings, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Asn": "System.Nullable`1[System.Int64]", "BgpPeeringAddress": "System.String" @@ -376191,7 +389290,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnLinkProviderProperties, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinkSpeedInMbps": "System.Int32", "LinkProviderName": "System.String" @@ -376229,7 +389328,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAadAuthenticationParameters, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AadTenant": "System.String", "AadAudience": "System.String", @@ -376268,7 +389367,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSClientCertificate" ] @@ -376276,7 +389375,7 @@ "Microsoft.Azure.Commands.Network.Models.PSClientCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Thumbprint": "System.String" @@ -376314,7 +389413,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate" ] @@ -376322,7 +389421,7 @@ "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSClientRootCertificate, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "PublicCertData": "System.String" @@ -376360,7 +389459,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection" ] @@ -376368,7 +389467,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnSiteLinkConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "VpnSiteLink": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "UsePolicyBasedTrafficSelectors": "System.Boolean", @@ -376427,7 +389526,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnConnection]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVpnConnection" ] @@ -376435,7 +389534,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnConnection": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnConnection, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RemoteVpnSite": "Microsoft.Azure.Commands.Network.Models.PSResourceId", "RoutingConfiguration": "Microsoft.Azure.Commands.Network.Models.PSRoutingConfiguration", @@ -376491,7 +389590,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration" ] @@ -376499,7 +389598,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayIpConfiguration, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String", "PublicIpAddress": "System.String", @@ -376538,7 +389637,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule" ] @@ -376546,7 +389645,7 @@ "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSVpnGatewayNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IngressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", "EgressVpnSiteLinkConnections": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSResourceId]", @@ -376597,7 +389696,7 @@ "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa": { "Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex", "Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaMainModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "isSaInitiator": "System.Boolean", "quickModeSa": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa]", @@ -376646,7 +389745,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa" ] @@ -376654,7 +389753,7 @@ "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa": { "Namespace": "Microsoft.Azure.Commands.Network.Models.Cortex", "Name": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.Cortex.PSVpnSiteLinkConnectionIkeSaQuickModeSa, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "isSaInitiator": "System.Boolean", "localTrafficSelectors": "System.Collections.Generic.List`1[System.String]", @@ -376703,7 +389802,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags" ] @@ -376711,7 +389810,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureFlags, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Type": "System.String" }, @@ -376762,7 +389861,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule" ] @@ -376770,7 +389869,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPacketCaptureRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Sources": "System.Collections.Generic.List`1[System.String]", "Destinations": "System.Collections.Generic.List`1[System.String]", @@ -376812,7 +389911,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult" ] @@ -376820,7 +389919,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Profile": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile", "NetworkSecurityGroupResult": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult" @@ -376858,7 +389957,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkConfigurationDiagnosticProfile, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Direction": "System.String", "Protocol": "System.String", @@ -376899,7 +389998,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityGroupResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EvaluatedNetworkSecurityGroups": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]", "SecurityRuleAccessResult": "System.String", @@ -376938,7 +390037,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup" ] @@ -376946,7 +390045,7 @@ "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSEvaluatedNetworkSecurityGroup, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "MatchedRule": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule", "RulesEvaluationResult": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]", @@ -376987,7 +390086,7 @@ "Microsoft.Azure.Commands.Network.Models.PSMatchedRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSMatchedRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RuleName": "System.String", "Action": "System.String" @@ -377025,7 +390124,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult" ] @@ -377033,7 +390132,7 @@ "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSNetworkSecurityRulesEvaluationResult, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProtocolMatched": "System.Boolean", "SourceMatched": "System.Boolean", @@ -377075,7 +390174,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader" ] @@ -377083,7 +390182,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleCustomHttpHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HeaderName": "System.String", "HeaderValue": "System.String" @@ -377121,7 +390220,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol" ] @@ -377129,7 +390228,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyApplicationRuleProtocol, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProtocolType": "System.String", "Port": "System.UInt32" @@ -377177,7 +390276,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "RuleType": "System.String" @@ -377215,7 +390314,7 @@ "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSAzureFirewallPolicyNatRule, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Protocols": "System.Collections.Generic.List`1[System.String]", "SourceAddresses": "System.Collections.Generic.List`1[System.String]", @@ -377277,7 +390376,7 @@ "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerCommand+NetworkManagerScopeAccessType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "Equals", @@ -377364,7 +390463,7 @@ "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType": { "Namespace": "Microsoft.Azure.Commands.Network", "Name": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.NewAzNetworkManagerSecurityAdminConfigurationCommand+NetworkIntentPolicyBasedServiceType, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "Equals", @@ -377448,48 +390547,10 @@ } ] }, - "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem": { - "Namespace": "Microsoft.Azure.Commands.Network.Models.NetworkManager", - "Name": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.NetworkManager.PSNetworkManagerAddressPrefixItem, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", - "Properties": { - "AddressPrefix": "System.String", - "AddressPrefixType": "System.String" - }, - "Methods": [ - { - "Name": "GetType", - "ReturnType": "System.Type" - }, - { - "Name": "ToString", - "ReturnType": "System.String" - }, - { - "Name": "Equals", - "Parameters": [ - { - "Name": "obj", - "Type": "System.Object" - } - ], - "ReturnType": "System.Boolean" - }, - { - "Name": "GetHashCode", - "ReturnType": "System.Int32" - } - ], - "Constructors": [ - { - "Name": "" - } - ] - }, "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader" ] @@ -377497,7 +390558,7 @@ "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSHTTPHeader, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Value": "System.String" @@ -377546,7 +390607,7 @@ "Microsoft.Azure.Commands.Network.Models.ApiError": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.ApiError", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.ApiError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.ApiError, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Code": "System.String", "Message": "System.String", @@ -377599,7 +390660,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSConnectivityHop, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSConnectivityHop" ] @@ -377607,7 +390668,7 @@ "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.List`1[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty]", - "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.List`1[[Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty" ] @@ -377615,7 +390676,7 @@ "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty": { "Namespace": "Microsoft.Azure.Commands.Network.Models", "Name": "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty", - "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.8.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.Commands.Network.Models.PSInboundSecurityRulesProperty, Microsoft.Azure.PowerShell.Cmdlets.Network, Version=7.9.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DestinationPortRanges": "System.Collections.Generic.List`1[System.String]", "AppliesOn": "System.Collections.Generic.List`1[System.String]", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.RedisEnterpriseCache.json b/tools/Tools.Common/SerializedCmdlets/Az.RedisEnterpriseCache.json index f9105f4c17af..39e0b0a9f3af 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.RedisEnterpriseCache.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.RedisEnterpriseCache.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.RedisEnterpriseCache", - "ModuleVersion": "1.3.0", + "ModuleVersion": "1.4.0", "Cmdlets": [ { "VerbName": "Export", @@ -99,7 +99,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -109,7 +109,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -282,7 +282,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -298,7 +298,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -404,7 +404,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ICluster", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ICluster, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ICluster, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection[]", "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api40.IUserAssignedIdentities", @@ -490,7 +490,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -500,7 +500,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -593,7 +593,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -609,7 +609,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -758,7 +758,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -774,7 +774,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -905,7 +905,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -921,7 +921,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -994,7 +994,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState]", "AccessPolicyName": "System.String", @@ -1083,7 +1083,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1093,7 +1093,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1231,7 +1231,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1247,7 +1247,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1426,7 +1426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1442,7 +1442,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1515,7 +1515,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IDatabase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IDatabase, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IDatabase, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "GeoReplicationLinkedDatabase": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", "Module": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[]", @@ -1599,7 +1599,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1609,7 +1609,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1735,7 +1735,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1751,7 +1751,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1824,7 +1824,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessKeys", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessKeys, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessKeys, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrimaryKey": "System.String", "SecondaryKey": "System.String" @@ -1894,7 +1894,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1904,7 +1904,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2030,7 +2030,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2046,7 +2046,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2123,7 +2123,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IOperationStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IOperationStatus, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IOperationStatus, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorAdditionalInfo[]", "Detail": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorDetail[]", @@ -2198,7 +2198,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2208,7 +2208,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2331,7 +2331,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2347,7 +2347,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2504,7 +2504,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2514,7 +2514,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2688,7 +2688,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2704,7 +2704,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2850,7 +2850,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -2870,7 +2870,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IFlushParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IFlushParameters, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IFlushParameters, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String[]" } @@ -2923,7 +2923,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2933,7 +2933,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3104,7 +3104,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3120,7 +3120,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3261,7 +3261,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IFlushParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IFlushParameters, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IFlushParameters, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String[]" } @@ -3328,7 +3328,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3344,7 +3344,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3440,7 +3440,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -3531,7 +3531,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3547,7 +3547,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3643,7 +3643,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -3669,7 +3669,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IFlushParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IFlushParameters, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IFlushParameters, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String[]" } @@ -3736,7 +3736,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3752,7 +3752,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3897,7 +3897,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3913,7 +3913,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4065,7 +4065,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -4085,7 +4085,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceLinkParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceLinkParameters, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceLinkParameters, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinkedDatabase": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", "GroupNickname": "System.String" @@ -4107,7 +4107,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase" }, "ValidateNotNullOrEmpty": false @@ -4148,7 +4148,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4158,7 +4158,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4285,7 +4285,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase" }, "ValidateNotNullOrEmpty": false @@ -4350,7 +4350,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4366,7 +4366,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4507,7 +4507,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceLinkParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceLinkParameters, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceLinkParameters, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinkedDatabase": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", "GroupNickname": "System.String" @@ -4575,7 +4575,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4591,7 +4591,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4672,7 +4672,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -4713,7 +4713,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase" }, "ValidateNotNullOrEmpty": false @@ -4778,7 +4778,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4794,7 +4794,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4875,7 +4875,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -4901,7 +4901,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceLinkParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceLinkParameters, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceLinkParameters, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LinkedDatabase": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", "GroupNickname": "System.String" @@ -4969,7 +4969,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4985,7 +4985,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5115,7 +5115,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5131,7 +5131,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5259,7 +5259,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -5279,7 +5279,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceUnlinkParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceUnlinkParameters, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceUnlinkParameters, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String[]" } @@ -5332,7 +5332,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5342,7 +5342,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5513,7 +5513,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5529,7 +5529,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5670,7 +5670,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceUnlinkParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceUnlinkParameters, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceUnlinkParameters, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String[]" } @@ -5737,7 +5737,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5753,7 +5753,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5849,7 +5849,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -5940,7 +5940,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5956,7 +5956,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6052,7 +6052,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -6078,7 +6078,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceUnlinkParameters", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceUnlinkParameters, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IForceUnlinkParameters, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Id": "System.String[]" } @@ -6145,7 +6145,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6161,7 +6161,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6306,7 +6306,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6322,7 +6322,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6425,7 +6425,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ICluster", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ICluster, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ICluster, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection[]", "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api40.IUserAssignedIdentities", @@ -6500,7 +6500,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6521,7 +6521,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6549,7 +6549,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule" }, "ValidateNotNullOrEmpty": false @@ -6559,7 +6559,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6577,7 +6577,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6595,7 +6595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase" }, "ValidateNotNullOrEmpty": false @@ -6605,7 +6605,16 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AccessKeysAuthentication", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6618,12 +6627,21 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "HighAvailability", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "IdentityType", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6641,7 +6659,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6668,7 +6686,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6686,7 +6704,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6726,7 +6744,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6736,7 +6754,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6863,7 +6881,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6896,7 +6914,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6951,13 +6969,28 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "HighAvailability", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "IdentityType", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6987,7 +7020,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7066,7 +7099,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7082,7 +7115,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7163,7 +7196,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule" }, "ValidateNotNullOrEmpty": false @@ -7179,7 +7212,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7209,7 +7242,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7239,7 +7272,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase" }, "ValidateNotNullOrEmpty": false @@ -7255,7 +7288,22 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AccessKeysAuthentication", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7285,7 +7333,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7315,7 +7363,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7396,7 +7444,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7429,7 +7477,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7484,13 +7532,28 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "HighAvailability", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "IdentityType", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7520,7 +7583,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7599,7 +7662,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7615,7 +7678,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7777,7 +7840,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7810,7 +7873,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7865,13 +7928,28 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "HighAvailability", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "IdentityType", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7901,7 +7979,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7980,7 +8058,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7996,7 +8074,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8084,7 +8162,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState]", "AccessPolicyName": "System.String", @@ -8147,7 +8225,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -8167,7 +8245,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState]", "AccessPolicyName": "System.String", @@ -8230,7 +8308,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8240,7 +8318,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8446,7 +8524,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8462,7 +8540,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8618,7 +8696,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState]", "AccessPolicyName": "System.String", @@ -8687,7 +8765,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8703,7 +8781,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8784,7 +8862,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -8889,7 +8967,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8905,7 +8983,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8986,7 +9064,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -9012,7 +9090,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessPolicyAssignment, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState]", "AccessPolicyName": "System.String", @@ -9081,7 +9159,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9097,7 +9175,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9227,7 +9305,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9243,7 +9321,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9331,7 +9409,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IDatabase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IDatabase, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IDatabase, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "GeoReplicationLinkedDatabase": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", "Module": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[]", @@ -9392,7 +9470,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule" }, "ValidateNotNullOrEmpty": false @@ -9402,7 +9480,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9420,7 +9498,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9438,7 +9516,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase" }, "ValidateNotNullOrEmpty": false @@ -9448,7 +9526,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9466,7 +9544,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9484,7 +9562,16 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + { + "Name": "AccessKeysAuthentication", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9524,7 +9611,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9534,7 +9621,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9634,7 +9721,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule" }, "ValidateNotNullOrEmpty": false @@ -9650,7 +9737,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9680,7 +9767,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9710,7 +9797,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase" }, "ValidateNotNullOrEmpty": false @@ -9726,7 +9813,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9756,7 +9843,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9786,7 +9873,22 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, + { + "ParameterMetadata": { + "Name": "AccessKeysAuthentication", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9850,7 +9952,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9866,7 +9968,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9954,7 +10056,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessKeys", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessKeys, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IAccessKeys, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrimaryKey": "System.String", "SecondaryKey": "System.String" @@ -10001,7 +10103,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeyType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeyType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10041,7 +10143,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10051,7 +10153,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10151,7 +10253,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeyType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeyType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeyType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10215,7 +10317,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10231,7 +10333,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10366,7 +10468,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -10417,7 +10519,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10427,7 +10529,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10585,7 +10687,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10601,7 +10703,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10697,7 +10799,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -10772,7 +10874,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10788,7 +10890,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10933,7 +11035,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10949,7 +11051,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11113,7 +11215,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -11164,7 +11266,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11174,7 +11276,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11362,7 +11464,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11378,7 +11480,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11474,7 +11576,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -11549,7 +11651,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11565,7 +11667,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11710,7 +11812,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11726,7 +11828,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11872,7 +11974,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -11923,7 +12025,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11933,7 +12035,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12091,7 +12193,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12107,7 +12209,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12203,7 +12305,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -12278,7 +12380,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12294,7 +12396,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12439,7 +12541,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12455,7 +12557,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12558,7 +12660,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ICluster", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ICluster, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ICluster, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection[]", "IdentityUserAssignedIdentity": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api40.IUserAssignedIdentities", @@ -12621,7 +12723,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -12662,7 +12764,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12671,7 +12773,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12689,7 +12791,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12707,7 +12809,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12719,7 +12821,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12768,7 +12870,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12778,7 +12880,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12911,7 +13013,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12926,7 +13028,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12956,7 +13058,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12986,7 +13088,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13004,7 +13106,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13083,7 +13185,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13099,7 +13201,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13180,7 +13282,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -13239,7 +13341,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13254,7 +13356,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13284,7 +13386,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13314,7 +13416,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13332,7 +13434,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13411,7 +13513,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13427,7 +13529,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13541,7 +13643,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13556,7 +13658,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13586,7 +13688,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13616,7 +13718,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13634,7 +13736,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13713,7 +13815,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13729,7 +13831,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13817,7 +13919,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IDatabase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IDatabase, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IDatabase, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "GeoReplicationLinkedDatabase": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", "Module": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[]", @@ -13878,7 +13980,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -13893,12 +13995,21 @@ }, "ValidateNotNullOrEmpty": false }, + { + "Name": "AccessKeysAuthentication", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, { "Name": "ClientProtocol", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13907,7 +14018,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13925,7 +14036,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13943,7 +14054,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13983,7 +14094,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13993,7 +14104,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14087,13 +14198,28 @@ "ValueFromPipeline": false, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AccessKeysAuthentication", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ClientProtocol", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14108,7 +14234,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14138,7 +14264,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14168,7 +14294,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14232,7 +14358,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14248,7 +14374,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14329,7 +14455,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IRedisEnterpriseCacheIdentity, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessPolicyAssignmentName": "System.String", "ClusterName": "System.String", @@ -14349,13 +14475,28 @@ "ValueFromPipeline": true, "ValueFromPipelineByPropertyName": false }, + { + "ParameterMetadata": { + "Name": "AccessKeysAuthentication", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ClientProtocol", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14370,7 +14511,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14400,7 +14541,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14430,7 +14571,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14494,7 +14635,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14510,7 +14651,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14585,13 +14726,28 @@ { "Name": "__AllParameterSets", "Parameters": [ + { + "ParameterMetadata": { + "Name": "AccessKeysAuthentication", + "Type": { + "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", + "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + }, + "ValidateNotNullOrEmpty": false + }, + "Mandatory": false, + "Position": -2147483648, + "ValueFromPipeline": false, + "ValueFromPipelineByPropertyName": false + }, { "ParameterMetadata": { "Name": "ClientProtocol", "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14606,7 +14762,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14636,7 +14792,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14666,7 +14822,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14730,7 +14886,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14746,7 +14902,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14914,7 +15070,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14924,7 +15080,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15085,7 +15241,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15101,7 +15257,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15222,7 +15378,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Runtime.SendAsyncStep, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -15405,13 +15561,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection" }, "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IPrivateEndpointConnection, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointConnectionProvisioningState]", "PrivateLinkServiceConnectionStateStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointServiceConnectionStatus]", @@ -15423,7 +15579,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointConnectionProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointConnectionProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointConnectionProvisioningState, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointConnectionProvisioningState, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointConnectionProvisioningState" ] @@ -15431,7 +15587,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointConnectionProvisioningState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointConnectionProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointConnectionProvisioningState, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointConnectionProvisioningState, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -15509,7 +15665,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointServiceConnectionStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointServiceConnectionStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointServiceConnectionStatus, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointServiceConnectionStatus, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointServiceConnectionStatus" ] @@ -15517,7 +15673,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointServiceConnectionStatus": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointServiceConnectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointServiceConnectionStatus, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.PrivateEndpointServiceConnectionStatus, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -15582,12 +15738,12 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api40.IUserAssignedIdentities": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api40", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api40.IUserAssignedIdentities", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api40.IUserAssignedIdentities, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api40.IUserAssignedIdentities, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.SkuName, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -15652,7 +15808,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType" ] @@ -15660,7 +15816,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.CmkIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -15725,7 +15881,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability" ] @@ -15733,7 +15889,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.HighAvailability, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -15798,7 +15954,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType" ] @@ -15806,7 +15962,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ManagedServiceIdentityType, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -15871,7 +16027,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState" ] @@ -15879,7 +16035,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ProvisioningState, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -15944,7 +16100,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RedundancyMode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RedundancyMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RedundancyMode, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RedundancyMode, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RedundancyMode" ] @@ -15952,7 +16108,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RedundancyMode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RedundancyMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RedundancyMode, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RedundancyMode, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -16017,7 +16173,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ResourceState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ResourceState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ResourceState, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ResourceState, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ResourceState" ] @@ -16025,7 +16181,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ResourceState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ResourceState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ResourceState, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ResourceState, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -16090,7 +16246,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion" ] @@ -16098,7 +16254,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.TlsVersion, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -16177,13 +16333,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase" }, "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.ILinkedDatabase, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.LinkState]", "Id": "System.String" @@ -16192,7 +16348,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.LinkState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.LinkState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.LinkState, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.LinkState, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.LinkState" ] @@ -16200,7 +16356,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.LinkState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.LinkState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.LinkState, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.LinkState, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -16265,13 +16421,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule" }, "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20240901Preview.IModule, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Arg": "System.String", "Name": "System.String", @@ -16281,7 +16437,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication" ] @@ -16289,7 +16445,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AccessKeysAuthentication, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -16354,7 +16510,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency" ] @@ -16362,7 +16518,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.AofFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -16427,7 +16583,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy" ] @@ -16435,7 +16591,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.ClusteringPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -16500,7 +16656,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.DeferUpgradeSetting]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.DeferUpgradeSetting]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.DeferUpgradeSetting, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.DeferUpgradeSetting, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.DeferUpgradeSetting" ] @@ -16508,7 +16664,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.DeferUpgradeSetting": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.DeferUpgradeSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.DeferUpgradeSetting, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.DeferUpgradeSetting, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -16573,7 +16729,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy" ] @@ -16581,7 +16737,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.EvictionPolicy, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -16646,7 +16802,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol" ] @@ -16654,7 +16810,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.Protocol, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -16719,7 +16875,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency" ] @@ -16727,7 +16883,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Support.RdbFrequency, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -16800,13 +16956,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorAdditionalInfo[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorAdditionalInfo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorAdditionalInfo[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorAdditionalInfo[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorAdditionalInfo" }, "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorAdditionalInfo": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorAdditionalInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorAdditionalInfo, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorAdditionalInfo, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Info": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IAny", "Type": "System.String" @@ -16815,18 +16971,18 @@ "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IAny": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IAny", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IAny, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.IAny, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorDetail[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorDetail[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorDetail[], Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorDetail[], Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorDetail" }, "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorDetail": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20", "Name": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorDetail", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorDetail, Az.RedisEnterpriseCache.private, Version=1.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorDetail, Az.RedisEnterpriseCache.private, Version=1.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalInfo": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorAdditionalInfo[]", "Detail": "Microsoft.Azure.PowerShell.Cmdlets.RedisEnterpriseCache.Models.Api20.IErrorDetail[]", diff --git a/tools/Tools.Common/SerializedCmdlets/Az.StackHCI.json b/tools/Tools.Common/SerializedCmdlets/Az.StackHCI.json index f7ae6f050bf6..4110afc85d57 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.StackHCI.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.StackHCI.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.StackHCI", - "ModuleVersion": "2.4.0", + "ModuleVersion": "2.4.1", "Cmdlets": [ { "VerbName": "Add", @@ -610,7 +610,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IArcSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IArcSetting, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IArcSetting, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultExtension": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails[]", "PerNodeDetail": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState[]", @@ -675,7 +675,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -720,7 +720,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -730,7 +730,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -853,7 +853,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -869,7 +869,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1033,7 +1033,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1049,7 +1049,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1115,7 +1115,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -1178,7 +1178,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1194,7 +1194,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1294,7 +1294,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1310,7 +1310,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1383,7 +1383,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReportedPropertyNode": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode[]", "LogCollectionPropertyLogCollectionSessionDetail": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession[]", @@ -1477,7 +1477,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -1522,7 +1522,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1532,7 +1532,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1658,7 +1658,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1674,7 +1674,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1805,7 +1805,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1821,7 +1821,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1937,7 +1937,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1953,7 +1953,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2019,7 +2019,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -2082,7 +2082,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2098,7 +2098,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2198,7 +2198,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2214,7 +2214,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2287,7 +2287,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentSetting, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentSetting, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeploymentStatusStep": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep[]", "ValidationStatusStep": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep[]", @@ -2352,7 +2352,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -2397,7 +2397,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2407,7 +2407,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2530,7 +2530,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2546,7 +2546,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2710,7 +2710,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2726,7 +2726,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2792,7 +2792,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -2855,7 +2855,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2871,7 +2871,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2971,7 +2971,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2987,7 +2987,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3060,7 +3060,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEdgeDevice", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEdgeDevice, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEdgeDevice, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Kind": "System.String" } @@ -3097,7 +3097,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -3142,7 +3142,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3152,7 +3152,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3262,7 +3262,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3278,7 +3278,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3393,7 +3393,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3409,7 +3409,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3475,7 +3475,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -3538,7 +3538,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3554,7 +3554,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3654,7 +3654,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3670,7 +3670,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3743,7 +3743,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtension", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtension, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtension, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ParameterProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersProtectedSettings", "ParameterSetting": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersSettings", @@ -3819,7 +3819,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -3864,7 +3864,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3874,7 +3874,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4012,7 +4012,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4028,7 +4028,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4207,7 +4207,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4223,7 +4223,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4289,7 +4289,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -4352,7 +4352,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4368,7 +4368,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4468,7 +4468,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4484,7 +4484,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4818,7 +4818,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISecuritySetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISecuritySetting, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISecuritySetting, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecuredCoreComplianceAssignment": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType]", "SmbEncryptionForIntraClusterTrafficComplianceAssignment": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType]", @@ -4882,7 +4882,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -4927,7 +4927,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4937,7 +4937,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5060,7 +5060,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5076,7 +5076,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5240,7 +5240,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5256,7 +5256,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5322,7 +5322,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -5385,7 +5385,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5401,7 +5401,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5501,7 +5501,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5517,7 +5517,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5590,7 +5590,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ComponentVersion": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", "HealthCheckResult": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", @@ -5668,7 +5668,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -5713,7 +5713,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5723,7 +5723,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5846,7 +5846,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5862,7 +5862,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6026,7 +6026,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6042,7 +6042,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6108,7 +6108,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -6171,7 +6171,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6187,7 +6187,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6287,7 +6287,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6303,7 +6303,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6376,7 +6376,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProgressStep": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState]", @@ -6454,7 +6454,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -6499,7 +6499,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6509,7 +6509,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6647,7 +6647,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6663,7 +6663,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6842,7 +6842,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6858,7 +6858,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6924,7 +6924,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -6987,7 +6987,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7003,7 +7003,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7103,7 +7103,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7119,7 +7119,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7192,7 +7192,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PackageVersion": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", "HealthCheckResult": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", @@ -7248,7 +7248,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -7293,7 +7293,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7303,7 +7303,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7426,7 +7426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7442,7 +7442,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7588,7 +7588,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7604,7 +7604,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7670,7 +7670,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -7733,7 +7733,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7749,7 +7749,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7849,7 +7849,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7865,7 +7865,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8015,7 +8015,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IArcSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IArcSetting, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IArcSetting, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultExtension": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails[]", "PerNodeDetail": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState[]", @@ -8067,7 +8067,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -8112,7 +8112,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8122,7 +8122,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8244,7 +8244,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8260,7 +8260,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8326,7 +8326,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -8389,7 +8389,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8405,7 +8405,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8505,7 +8505,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8521,7 +8521,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8594,7 +8594,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReportedPropertyNode": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode[]", "LogCollectionPropertyLogCollectionSessionDetail": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession[]", @@ -8684,7 +8684,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -8707,7 +8707,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISoftwareAssuranceChangeRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISoftwareAssuranceChangeRequest, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISoftwareAssuranceChangeRequest, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SoftwareAssuranceIntent": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent]" } @@ -8719,7 +8719,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8759,7 +8759,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8769,7 +8769,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8866,7 +8866,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8930,7 +8930,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8946,7 +8946,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9072,7 +9072,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISoftwareAssuranceChangeRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISoftwareAssuranceChangeRequest, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISoftwareAssuranceChangeRequest, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SoftwareAssuranceIntent": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent]" } @@ -9139,7 +9139,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9155,7 +9155,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9236,7 +9236,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -9265,7 +9265,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9329,7 +9329,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9345,7 +9345,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9426,7 +9426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -9455,7 +9455,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISoftwareAssuranceChangeRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISoftwareAssuranceChangeRequest, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISoftwareAssuranceChangeRequest, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SoftwareAssuranceIntent": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent]" } @@ -9522,7 +9522,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9538,7 +9538,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9668,7 +9668,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9684,7 +9684,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9824,7 +9824,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -9878,7 +9878,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9888,7 +9888,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10061,7 +10061,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10077,7 +10077,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10173,7 +10173,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -10251,7 +10251,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10267,7 +10267,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10412,7 +10412,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10428,7 +10428,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10531,7 +10531,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IArcSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IArcSetting, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IArcSetting, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DefaultExtension": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails[]", "PerNodeDetail": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState[]", @@ -10628,7 +10628,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IAny", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IAny, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IAny, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10659,7 +10659,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10669,7 +10669,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10832,7 +10832,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IAny", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IAny, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IAny, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10881,7 +10881,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10897,7 +10897,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10970,7 +10970,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReportedPropertyNode": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode[]", "LogCollectionPropertyLogCollectionSessionDetail": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession[]", @@ -11117,7 +11117,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11126,7 +11126,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11135,7 +11135,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11153,7 +11153,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11193,7 +11193,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11203,7 +11203,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11384,7 +11384,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11399,7 +11399,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11414,7 +11414,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11444,7 +11444,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11508,7 +11508,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11524,7 +11524,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11597,7 +11597,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentSetting, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentSetting, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeploymentStatusStep": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep[]", "ValidationStatusStep": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep[]", @@ -11671,7 +11671,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits" }, "ValidateNotNullOrEmpty": false @@ -11690,7 +11690,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11699,7 +11699,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11739,7 +11739,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11749,7 +11749,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11880,7 +11880,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits" }, "ValidateNotNullOrEmpty": false @@ -11911,7 +11911,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11926,7 +11926,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11990,7 +11990,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12006,7 +12006,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12094,7 +12094,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEdgeDevice", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEdgeDevice, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEdgeDevice, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Kind": "System.String" } @@ -12150,7 +12150,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12160,7 +12160,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12276,7 +12276,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12292,7 +12292,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12380,7 +12380,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtension", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtension, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtension, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ParameterProtectedSetting": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersProtectedSettings", "ParameterSetting": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersSettings", @@ -12558,7 +12558,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12568,7 +12568,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12867,7 +12867,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12883,7 +12883,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12971,7 +12971,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISecuritySetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISecuritySetting, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISecuritySetting, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecuredCoreComplianceAssignment": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType]", "SmbEncryptionForIntraClusterTrafficComplianceAssignment": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType]", @@ -13022,7 +13022,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13031,7 +13031,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13040,7 +13040,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13049,7 +13049,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13089,7 +13089,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13099,7 +13099,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13196,7 +13196,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13211,7 +13211,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13226,7 +13226,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13241,7 +13241,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13305,7 +13305,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13321,7 +13321,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13912,7 +13912,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -13966,7 +13966,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13976,7 +13976,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14149,7 +14149,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14165,7 +14165,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14261,7 +14261,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -14339,7 +14339,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14355,7 +14355,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14500,7 +14500,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14516,7 +14516,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14662,7 +14662,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -14716,7 +14716,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14726,7 +14726,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14884,7 +14884,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14900,7 +14900,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14996,7 +14996,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -15074,7 +15074,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15090,7 +15090,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15235,7 +15235,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15251,7 +15251,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15406,7 +15406,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -15460,7 +15460,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15470,7 +15470,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15643,7 +15643,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15659,7 +15659,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15755,7 +15755,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -15833,7 +15833,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15849,7 +15849,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15994,7 +15994,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16010,7 +16010,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16147,7 +16147,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -16201,7 +16201,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16211,7 +16211,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16354,7 +16354,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16370,7 +16370,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16466,7 +16466,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -16544,7 +16544,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16560,7 +16560,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16705,7 +16705,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16721,7 +16721,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16885,7 +16885,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -16939,7 +16939,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16949,7 +16949,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17137,7 +17137,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17153,7 +17153,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17249,7 +17249,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -17327,7 +17327,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17343,7 +17343,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17488,7 +17488,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17504,7 +17504,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17681,7 +17681,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -17735,7 +17735,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17745,7 +17745,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17918,7 +17918,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17934,7 +17934,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18030,7 +18030,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -18108,7 +18108,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18124,7 +18124,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18269,7 +18269,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18285,7 +18285,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18440,7 +18440,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -18494,7 +18494,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18504,7 +18504,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18677,7 +18677,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18693,7 +18693,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18789,7 +18789,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -18867,7 +18867,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18883,7 +18883,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19028,7 +19028,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19044,7 +19044,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19208,7 +19208,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -19262,7 +19262,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19272,7 +19272,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19460,7 +19460,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19476,7 +19476,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19572,7 +19572,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -19650,7 +19650,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19666,7 +19666,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19811,7 +19811,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19827,7 +19827,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19970,7 +19970,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -20024,7 +20024,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20034,7 +20034,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20189,7 +20189,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20205,7 +20205,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20301,7 +20301,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -20379,7 +20379,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20395,7 +20395,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20540,7 +20540,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20556,7 +20556,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20899,7 +20899,7 @@ "Type": { "Namespace": "", "Name": "DiagnosticLevel", - "AssemblyQualifiedName": "DiagnosticLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "DiagnosticLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21028,7 +21028,7 @@ "Type": { "Namespace": "", "Name": "DiagnosticLevel", - "AssemblyQualifiedName": "DiagnosticLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "DiagnosticLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21145,7 +21145,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentSetting, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentSetting, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeploymentStatusStep": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep[]", "ValidationStatusStep": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep[]", @@ -21219,7 +21219,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits" }, "ValidateNotNullOrEmpty": false @@ -21238,7 +21238,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21247,7 +21247,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21287,7 +21287,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21297,7 +21297,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21428,7 +21428,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits" }, "ValidateNotNullOrEmpty": false @@ -21459,7 +21459,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21474,7 +21474,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21538,7 +21538,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21554,7 +21554,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21642,7 +21642,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEdgeDevice", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEdgeDevice, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEdgeDevice, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Kind": "System.String" } @@ -21710,7 +21710,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21720,7 +21720,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21854,7 +21854,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21870,7 +21870,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21958,7 +21958,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISecuritySetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISecuritySetting, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISecuritySetting, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SecuredCoreComplianceAssignment": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType]", "SmbEncryptionForIntraClusterTrafficComplianceAssignment": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType]", @@ -22021,7 +22021,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22030,7 +22030,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22039,7 +22039,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22048,7 +22048,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22088,7 +22088,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22098,7 +22098,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22213,7 +22213,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22228,7 +22228,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22243,7 +22243,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22258,7 +22258,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22322,7 +22322,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22338,7 +22338,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22426,7 +22426,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ComponentVersion": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", "HealthCheckResult": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", @@ -22503,7 +22503,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ComponentVersion": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", "HealthCheckResult": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", @@ -22546,7 +22546,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22555,7 +22555,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo" }, "ValidateNotNullOrEmpty": false @@ -22592,7 +22592,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult" }, "ValidateNotNullOrEmpty": false @@ -22602,7 +22602,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22665,7 +22665,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite" }, "ValidateNotNullOrEmpty": false @@ -22684,7 +22684,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22702,7 +22702,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22760,7 +22760,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22770,7 +22770,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22910,7 +22910,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22926,7 +22926,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22992,7 +22992,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdate, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ComponentVersion": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", "HealthCheckResult": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", @@ -23129,7 +23129,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23145,7 +23145,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23226,7 +23226,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23241,7 +23241,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo" }, "ValidateNotNullOrEmpty": false @@ -23302,7 +23302,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult" }, "ValidateNotNullOrEmpty": false @@ -23318,7 +23318,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23423,7 +23423,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite" }, "ValidateNotNullOrEmpty": false @@ -23454,7 +23454,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23484,7 +23484,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23641,7 +23641,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23657,7 +23657,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23730,7 +23730,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProgressStep": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState]", @@ -23807,7 +23807,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProgressStep": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState]", @@ -23922,7 +23922,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep" }, "ValidateNotNullOrEmpty": false @@ -23932,7 +23932,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23972,7 +23972,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23982,7 +23982,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24137,7 +24137,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24153,7 +24153,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24219,7 +24219,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateRun, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProgressStep": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[]", "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState]", @@ -24362,7 +24362,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24378,7 +24378,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24594,7 +24594,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep" }, "ValidateNotNullOrEmpty": false @@ -24610,7 +24610,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24752,7 +24752,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24768,7 +24768,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24841,7 +24841,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PackageVersion": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", "HealthCheckResult": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", @@ -24896,7 +24896,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PackageVersion": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", "HealthCheckResult": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", @@ -24956,7 +24956,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult" }, "ValidateNotNullOrEmpty": false @@ -24966,7 +24966,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25011,7 +25011,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo" }, "ValidateNotNullOrEmpty": false @@ -25021,7 +25021,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25052,7 +25052,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25062,7 +25062,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25184,7 +25184,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25200,7 +25200,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25266,7 +25266,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdateSummaries, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PackageVersion": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", "HealthCheckResult": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", @@ -25375,7 +25375,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25391,7 +25391,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25517,7 +25517,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult" }, "ValidateNotNullOrEmpty": false @@ -25533,7 +25533,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25608,7 +25608,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo" }, "ValidateNotNullOrEmpty": false @@ -25624,7 +25624,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25718,7 +25718,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25734,7 +25734,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25841,7 +25841,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -25864,7 +25864,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IValidateRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IValidateRequest, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IValidateRequest, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalInfo": "System.String", "EdgeDeviceId": "System.String[]" @@ -25927,7 +25927,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25937,7 +25937,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26102,7 +26102,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26118,7 +26118,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26232,7 +26232,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IValidateRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IValidateRequest, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IValidateRequest, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalInfo": "System.String", "EdgeDeviceId": "System.String[]" @@ -26300,7 +26300,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26316,7 +26316,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26397,7 +26397,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -26506,7 +26506,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26522,7 +26522,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26603,7 +26603,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -26632,7 +26632,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IValidateRequest", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IValidateRequest, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IValidateRequest, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AdditionalInfo": "System.String", "EdgeDeviceId": "System.String[]" @@ -26700,7 +26700,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26716,7 +26716,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26846,7 +26846,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26862,7 +26862,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27305,7 +27305,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ICluster, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ReportedPropertyNode": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode[]", "LogCollectionPropertyLogCollectionSessionDetail": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession[]", @@ -27398,7 +27398,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -27439,7 +27439,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27448,7 +27448,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27457,7 +27457,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27506,7 +27506,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27516,7 +27516,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27637,7 +27637,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27652,7 +27652,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27667,7 +27667,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27746,7 +27746,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27762,7 +27762,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27828,7 +27828,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IStackHciIdentity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ArcSettingName": "System.String", "ClusterName": "System.String", @@ -27887,7 +27887,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27902,7 +27902,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27917,7 +27917,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27996,7 +27996,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28012,7 +28012,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28108,7 +28108,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28123,7 +28123,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28138,7 +28138,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28217,7 +28217,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28233,7 +28233,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28344,13 +28344,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDefaultExtensionDetails, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ConsentTime": "System.Nullable`1[System.DateTime]", "Category": "System.String" @@ -28372,13 +28372,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeArcState]", "ArcInstance": "System.String", @@ -28389,7 +28389,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeArcState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeArcState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeArcState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeArcState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeArcState" ] @@ -28397,7 +28397,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeArcState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeArcState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeArcState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeArcState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -28480,12 +28480,12 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IAny": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IAny", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IAny, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.IAny, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ArcSettingAggregateState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ArcSettingAggregateState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ArcSettingAggregateState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ArcSettingAggregateState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ArcSettingAggregateState" ] @@ -28493,7 +28493,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ArcSettingAggregateState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ArcSettingAggregateState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ArcSettingAggregateState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ArcSettingAggregateState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -28558,7 +28558,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState" ] @@ -28566,7 +28566,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ProvisioningState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -28631,7 +28631,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Runtime.SendAsyncStep, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -28804,13 +28804,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IClusterNode, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "NodeType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ClusterNodeType]", "OemActivation": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OemActivation]", @@ -28832,7 +28832,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ClusterNodeType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ClusterNodeType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ClusterNodeType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ClusterNodeType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ClusterNodeType" ] @@ -28840,7 +28840,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ClusterNodeType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ClusterNodeType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ClusterNodeType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ClusterNodeType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -28905,7 +28905,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OemActivation]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OemActivation]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OemActivation, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OemActivation, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OemActivation" ] @@ -28913,7 +28913,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OemActivation": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OemActivation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OemActivation, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OemActivation, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -28978,7 +28978,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription" ] @@ -28986,7 +28986,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.WindowsServerSubscription, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -29059,13 +29059,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ILogCollectionSession, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LogCollectionStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.LogCollectionStatus]", "EndTimeCollected": "System.Nullable`1[System.DateTime]", @@ -29081,7 +29081,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.LogCollectionStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.LogCollectionStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.LogCollectionStatus, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.LogCollectionStatus, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.LogCollectionStatus" ] @@ -29089,7 +29089,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.LogCollectionStatus": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.LogCollectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.LogCollectionStatus, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.LogCollectionStatus, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -29162,13 +29162,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeRemoteSupportSession[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeRemoteSupportSession[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeRemoteSupportSession[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeRemoteSupportSession[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeRemoteSupportSession" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeRemoteSupportSession": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeRemoteSupportSession", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeRemoteSupportSession, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeRemoteSupportSession, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "AccessLevel": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AccessLevel]", "SessionEndTime": "System.Nullable`1[System.DateTime]", @@ -29180,7 +29180,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AccessLevel]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AccessLevel]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AccessLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AccessLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AccessLevel" ] @@ -29188,7 +29188,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AccessLevel": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AccessLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AccessLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AccessLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -29253,13 +29253,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IRemoteSupportNodeSettings[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IRemoteSupportNodeSettings[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IRemoteSupportNodeSettings[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IRemoteSupportNodeSettings[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IRemoteSupportNodeSettings" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IRemoteSupportNodeSettings": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IRemoteSupportNodeSettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IRemoteSupportNodeSettings, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IRemoteSupportNodeSettings, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CreatedAt": "System.Nullable`1[System.DateTime]", "UpdatedAt": "System.Nullable`1[System.DateTime]", @@ -29273,12 +29273,12 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api40.IUserAssignedIdentities": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api40", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api40.IUserAssignedIdentities", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api40.IUserAssignedIdentities, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api40.IUserAssignedIdentities, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ConnectivityStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ConnectivityStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ConnectivityStatus, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ConnectivityStatus, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ConnectivityStatus" ] @@ -29286,7 +29286,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ConnectivityStatus": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ConnectivityStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ConnectivityStatus, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ConnectivityStatus, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -29351,7 +29351,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel" ] @@ -29359,7 +29359,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DiagnosticLevel, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -29424,7 +29424,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ImdsAttestation]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ImdsAttestation]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ImdsAttestation, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ImdsAttestation, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ImdsAttestation" ] @@ -29432,7 +29432,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ImdsAttestation": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ImdsAttestation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ImdsAttestation, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ImdsAttestation, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -29497,7 +29497,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType" ] @@ -29505,7 +29505,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ManagedServiceIdentityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -29570,7 +29570,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RemoteSupportType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RemoteSupportType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RemoteSupportType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RemoteSupportType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RemoteSupportType" ] @@ -29578,7 +29578,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RemoteSupportType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RemoteSupportType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RemoteSupportType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RemoteSupportType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -29643,7 +29643,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent" ] @@ -29651,7 +29651,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceIntent, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -29716,7 +29716,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceStatus, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceStatus, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceStatus" ] @@ -29724,7 +29724,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceStatus": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceStatus, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.SoftwareAssuranceStatus, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -29789,7 +29789,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Status]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Status]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Status, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Status, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Status" ] @@ -29797,7 +29797,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Status": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Status", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Status, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Status, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -29868,13 +29868,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Step": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IDeploymentStep[]", "Description": "System.String", @@ -29889,13 +29889,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IScaleUnits, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DeploymentDataSecret": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEceDeploymentSecrets[]", "DeploymentDataInfrastructureNetwork": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IInfrastructureNetwork[]", @@ -29943,13 +29943,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEceDeploymentSecrets[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEceDeploymentSecrets[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEceDeploymentSecrets[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEceDeploymentSecrets[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEceDeploymentSecrets" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEceDeploymentSecrets": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEceDeploymentSecrets", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEceDeploymentSecrets, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IEceDeploymentSecrets, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EceSecretName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.EceSecrets]", "SecretLocation": "System.String", @@ -29959,7 +29959,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.EceSecrets]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.EceSecrets]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.EceSecrets, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.EceSecrets, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.EceSecrets" ] @@ -29967,7 +29967,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.EceSecrets": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.EceSecrets", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.EceSecrets, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.EceSecrets, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -30032,13 +30032,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IInfrastructureNetwork[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IInfrastructureNetwork[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IInfrastructureNetwork[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IInfrastructureNetwork[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IInfrastructureNetwork" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IInfrastructureNetwork": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IInfrastructureNetwork", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IInfrastructureNetwork, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IInfrastructureNetwork, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IPPool": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIPPools[]", "UseDhcp": "System.Nullable`1[System.Boolean]", @@ -30050,13 +30050,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIPPools[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIPPools[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIPPools[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIPPools[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIPPools" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIPPools": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIPPools", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIPPools, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIPPools, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EndingAddress": "System.String", "StartingAddress": "System.String" @@ -30073,13 +30073,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIntents[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIntents[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIntents[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIntents[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIntents" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIntents": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIntents", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIntents, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IIntents, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "OverrideAdapterProperty": "System.Nullable`1[System.Boolean]", "OverrideQosPolicy": "System.Nullable`1[System.Boolean]", @@ -30100,13 +30100,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPhysicalNodes[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPhysicalNodes[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPhysicalNodes[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPhysicalNodes[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPhysicalNodes" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPhysicalNodes": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPhysicalNodes", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPhysicalNodes, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPhysicalNodes, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ipv4Address": "System.String", "Name": "System.String" @@ -30115,13 +30115,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbeCredentials[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbeCredentials[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbeCredentials[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbeCredentials[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbeCredentials" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbeCredentials": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbeCredentials", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbeCredentials, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbeCredentials, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "EceSecretName": "System.String", "SecretLocation": "System.String", @@ -30131,13 +30131,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbePartnerProperties[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbePartnerProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbePartnerProperties[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbePartnerProperties[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbePartnerProperties" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbePartnerProperties": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbePartnerProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbePartnerProperties, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.ISbePartnerProperties, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Name": "System.String", "Value": "System.String" @@ -30146,13 +30146,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageNetworks[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageNetworks[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageNetworks[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageNetworks[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageNetworks" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageNetworks": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageNetworks", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageNetworks, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageNetworks, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "StorageAdapterIPInfo": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageAdapterIPInfo[]", "Name": "System.String", @@ -30163,13 +30163,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageAdapterIPInfo[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageAdapterIPInfo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageAdapterIPInfo[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageAdapterIPInfo[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageAdapterIPInfo" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageAdapterIPInfo": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageAdapterIPInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageAdapterIPInfo, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStorageAdapterIPInfo, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Ipv4Address": "System.String", "PhysicalNode": "System.String", @@ -30179,7 +30179,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode" ] @@ -30187,7 +30187,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.DeploymentMode, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -30252,7 +30252,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType" ] @@ -30260,7 +30260,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.OperationType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -30325,23 +30325,23 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersProtectedSettings": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersProtectedSettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersProtectedSettings, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersProtectedSettings, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersSettings": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersSettings", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersSettings, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IExtensionParametersSettings, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeExtensionState[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeExtensionState[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeExtensionState[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeExtensionState[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeExtensionState" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeExtensionState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeExtensionState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeExtensionState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPerNodeExtensionState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "State": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeExtensionState]", "StatusLevel": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.StatusLevelTypes]", @@ -30360,7 +30360,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeExtensionState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeExtensionState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeExtensionState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeExtensionState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeExtensionState" ] @@ -30368,7 +30368,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeExtensionState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeExtensionState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeExtensionState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.NodeExtensionState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -30433,7 +30433,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.StatusLevelTypes]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.StatusLevelTypes]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.StatusLevelTypes, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.StatusLevelTypes, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.StatusLevelTypes" ] @@ -30441,7 +30441,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.StatusLevelTypes": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.StatusLevelTypes", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.StatusLevelTypes, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.StatusLevelTypes, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -30506,7 +30506,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionAggregateState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionAggregateState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionAggregateState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionAggregateState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionAggregateState" ] @@ -30514,7 +30514,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionAggregateState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionAggregateState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionAggregateState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionAggregateState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -30579,7 +30579,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionManagedBy]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionManagedBy]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionManagedBy, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionManagedBy, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionManagedBy" ] @@ -30587,7 +30587,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionManagedBy": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionManagedBy", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionManagedBy, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ExtensionManagedBy, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -30652,7 +30652,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType" ] @@ -30660,7 +30660,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceAssignmentType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -30725,7 +30725,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceStatus, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceStatus, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceStatus" ] @@ -30733,7 +30733,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceStatus": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceStatus, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.ComplianceStatus, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -30798,13 +30798,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPackageVersionInfo, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "LastUpdated": "System.Nullable`1[System.DateTime]", "PackageType": "System.String", @@ -30814,13 +30814,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IPrecheckResult, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Severity": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Severity]", "Status": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Status]", @@ -30841,7 +30841,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Severity]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Severity]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Severity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Severity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Severity" ] @@ -30849,7 +30849,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Severity": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Severity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Severity, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.Severity, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -30914,13 +30914,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IUpdatePrerequisite, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PackageName": "System.String", "UpdateType": "System.String", @@ -30930,7 +30930,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType" ] @@ -30938,7 +30938,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.AvailabilityType, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -31003,7 +31003,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState" ] @@ -31011,7 +31011,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.HealthState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -31076,7 +31076,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement" ] @@ -31084,7 +31084,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.RebootRequirement, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -31149,7 +31149,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State" ] @@ -31157,7 +31157,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.State, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -31222,13 +31222,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[], Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[], Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep" }, "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Steps": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Models.Api20240401.IStep[]", "EndTimeUtc": "System.Nullable`1[System.DateTime]", @@ -31243,7 +31243,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState" ] @@ -31251,7 +31251,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateRunPropertiesState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -31316,7 +31316,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState" ] @@ -31324,7 +31324,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState, Az.StackHCI.private, Version=2.3.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.StackHCI.Support.UpdateSummariesPropertiesState, Az.StackHCI.private, Version=2.4.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", diff --git a/tools/VersionController/MinimalVersion.csv b/tools/VersionController/MinimalVersion.csv index 641a197edc22..08e78ea58eb4 100644 --- a/tools/VersionController/MinimalVersion.csv +++ b/tools/VersionController/MinimalVersion.csv @@ -1 +1,2 @@ "Module","Minimal Version" +"Az.ConnectedMachine","1.0.0" \ No newline at end of file From c883d309d3c9752caaa85bf97a5e25414357e7da Mon Sep 17 00:00:00 2001 From: xw-zhang24 <118264732+xw-zhang24@users.noreply.github.com> Date: Mon, 28 Oct 2024 08:04:36 +0000 Subject: [PATCH 13/16] AZConnectedKubernetes fixes (#26379) * read value of env:KUBECONFIG * read value of env:HELMCHART * other misuages on Env: * revert path read on string values * read string value of en vars * Use Get-AzEnvironment not Get-AzureEnvironment (which doesn't work on Linux). * Trace the name of the current cloud if in Debug mode. * Trace the parameters passed to the internal function. * fix test * fix test * remove unrelated test files * Moving DEVELOP.md to custom so that autorest does not delete it. * Prefix Env with dollar. * Pass through debug and verbose flags. * Revert "Prefix Env with dollar." This reverts commit e4651f4a4d35794ed783abb7b4eff2be692b8e76. * Ensure correct path to helm. * Adding dependencies? * invoke-ScriptAnalyzer improvements. * Add dependencies for required modules. * PSD file is autogenerated. * Small improvements. * Small improvements. * ScriptAnalyzer bugs Rework code for Powershell 5.1 compatibility. * Disable dependencies until can solve build-module issues. * Compatability script in utils. * Compatibility script in here gets run! * Delete as autorest does this each run anyway :-( * remove hardcoded --debug in helm commands * add WIF disable flag and read value from inputObject * add psd1 back * update description and add examples * update examples * read properties from InputObject * remove comments in README * sset value of wif later * eid psbounderparameters * fix tests * fix typos and comments * remote disable gateway * update examples * remove incorrect header comments * update examples * one line change for path making * parameter set for gw * parameter value first * fix syntax and add more examples * move set back to input block and update inputobject comments * correct typo --------- Co-authored-by: Paul D.Smith --- .../Az.ConnectedKubernetes.psd1 | 2 +- .../custom/DEVELOP.md | 87 +++++- .../custom/New-AzConnectedKubernetes.ps1 | 22 +- .../custom/Remove-AzConnectedKubernetes.ps1 | 252 +++++++++--------- .../custom/Set-AzConnectedKubernetes.ps1 | 127 +++++---- .../custom/Update-AzConnectedKubernetes.ps1 | 32 ++- .../custom/helpers/AzCloudMetadataHelper.ps1 | 2 +- .../custom/helpers/ConfigDPHelper.ps1 | 49 ++-- .../custom/helpers/HelmHelper.ps1 | 30 ++- .../custom/helpers/RSAHelper.ps1 | 40 +-- .../custom/helpers/UtilsHelper.ps1 | 49 +++- .../docs/Az.ConnectedKubernetes.md | 2 +- .../docs/Set-AzConnectedKubernetes.md | 159 ++++++++--- .../examples/Set-AzConnectedKubernetes.md | 76 +++++- .../test/New-AzConnectedKubernetes.Tests.ps1 | 46 +--- .../Set-HelmModulesAndRepository.Tests.ps1 | 21 ++ 16 files changed, 644 insertions(+), 352 deletions(-) create mode 100644 src/ConnectedKubernetes/ConnectedKubernetes.Autorest/test/Set-HelmModulesAndRepository.Tests.ps1 diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/Az.ConnectedKubernetes.psd1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/Az.ConnectedKubernetes.psd1 index 639e92376889..99fc4deda480 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/Az.ConnectedKubernetes.psd1 +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/Az.ConnectedKubernetes.psd1 @@ -1,5 +1,5 @@ @{ - GUID = 'd3467834-8989-4142-8c05-ab93c4bfa6eb' + GUID = 'efbb1325-5081-4947-8508-ab47abbf6e76' RootModule = './Az.ConnectedKubernetes.psm1' ModuleVersion = '0.1.0' CompatiblePSEditions = 'Core', 'Desktop' diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/DEVELOP.md b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/DEVELOP.md index f9974023d076..c09ab184b9b3 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/DEVELOP.md +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/DEVELOP.md @@ -1,42 +1,99 @@ -# Develpoing ConnectedKubernetes Powershell Cmdlets -> These notes are intended to compliment and extend the common instructions for this process. If you spot a sensible common location where part of this document could live, please do move the information out of here. +# Developing ConnectedKubernetes Powershell Cmdlets +> These notes are intended to complement and extend the common instructions for this process. If you spot a sensible common location where part of this document could live, please do move the information out of here. # Overview ## Why Custom Cmdlets? -Powerhsll cmdlets can be created almost totally automatically for many products but ConnectedKubernetes is special. The standard cmdlet interations are one or more ([Swagger]) REST API exchanges with Azure but ConnectedKubernetes also has to install Azure Arc support into a Kubernetes cluster and this requires work to be performed using [helm]. +Powershell cmdlets can be created almost totally automatically for many products but ConnectedKubernetes is special. The standard cmdlet interactions are one or more ([Swagger]) REST API exchanges with Azure but ConnectedKubernetes also has to install Azure Arc support into a Kubernetes cluster and this requires work to be performed using [helm]. For this reason, the ConnectedKubernetes cmdlets have two or more steps such as: - Interact with Azure using the REST APIs; this often involves just calling the autogenerated cmdlets - Now interact with Kubernetes using [helm]. ## (Part) Autogeneration Process -The autogeneration process uses [autorest.powershell], an [autorest] extension for creating Powershell cmdlets based on a (Swagger) REST API definition. this is typically as follows: +The autogeneration process uses [autorest.powershell], an [autorest] extension for creating Powershell cmdlets based on a (Swagger) REST API definition. This tool is run via an [autorest] [Docker] image (you will need something like [Docker Desktop] installed). The typical cmdlet development process is this: 1. Carefully craft your [Swagger] definition of the REST API 1. Read the [Quickstart for Azure PowerShell development using code generator] 1. Clone the [azure-powershell] repo -1. Create a develpoment branch based on the `generate` branch **and not based on `main`**! -1. Run the [autorest] Docker image; if you have no local image for [autorest], refer to -1. Run [autorest] to generate configuration and files that will result in the autogenerated cmdlets -1. Run the build process (`pwsh build-module.ps1`) which completes the build process. +1. Create a development branch based on the `generate` branch **and not based on `main`**! +1. Run the [autorest] [Docker] image; see below if you do not already have a local image for [autorest], +1. Inside the [autorest] environment... + 1. Run `autorest` to generate configuration and files that will result in the autogenerated cmdlets + 1. Run the build process, `pwsh build-module.ps1`, which completes the build process + 1. Optionally create a local package `pwsh pack-module.ps1`. + +--- +Note that many of the intermediate steps rely on output from a previous step. For example `build-module.ps1` is an output from the `autorest` step. + +--- ### Building the [autorest] Docker image -> Do **NOT** build an [autorest] image based on the Dockerfile contained in the `tools/autorest` directory below the [azure-powershell] repo as this does not produce a working image! +If you do not already have an [autorest] image, do **NOT** build one using the Dockerfile contained in the `tools/autorest` directory in the [azure-powershell] - repo as this does not produce a working image! Instead, build the image like this: - Clone the [autorest.powershell] repo - Navigate to the `tools/docker` directory -- Follow the instructions in the README file in that directory +- Follow the instructions in the README file in that directory. ## Special Aspects for ConnectedKubernetes The autogenerated cmdlets are created in C# with Powershell wrappers that are placed into the `internal` folder. This is because we are **NOT** exposing the autogenerated functions to the user, rather er export our custom versions. > As described earlier, the custom versions often call-through to the autogenerated version to perform the ARM REST API portion of their work. -### Gotchas -#### You Want a New Cmdlet? +The custom cmdlets can be found in the `custom` directory. They are written in Powershell and do some manuipulation of input parameters before interacting with Azure and then Kubernetes via [helm]. + +## Gotchas +### Desktop Powershell (v5.1) Back-Compatibility +The `Az` packages are all written to work with the preinstalled Windows Desktop version of Powershell, which is obsolete! + +We have to maintain this compatibility and the way to prove this is to use `PSScriptAnalyzer` (invoked as `Invoke-ScriptAnalyzer`) to confirm this. The process is below and the following references contain useful information: +- https://devblogs.microsoft.com/powershell/using-psscriptanalyzer-to-check-powershell-version-compatibility/ +- https://learn.microsoft.com/en-gb/powershell/utility-modules/psscriptanalyzer/rules/usecompatiblecommands?view=ps-modules + +```Powershell +# Run this from within the "custom" directory. +Write-Host -ForegroundColor Green 'Linting and checking Powershell back-compatibility...' +Install-Module PSScriptAnalyzer -Scope CurrentUser -Force +$settings = @{ + # Ref: https://devblogs.microsoft.com/powershell/using-psscriptanalyzer-to-check-powershell-version-compatibility/ + Rules = @{ + PSUseCompatibleSyntax = @{ + # This turns the rule on (setting it to false will turn it off) + Enable = $true + + # List the targeted versions of PowerShell here + TargetVersions = @( + '5.1', + '7.0' + ) + } + PSUseCompatibleCommands = @{ + # Turns the rule on + Enable = $true + + # Lists the PowerShell platforms we want to check compatibility with + # Ref: https://learn.microsoft.com/en-gb/powershell/utility-modules/psscriptanalyzer/rules/usecompatiblecommands?view=ps-modules + TargetProfiles = @( + 'win-8_x64_10.0.17763.0_5.1.17763.316_x64_4.0.30319.42000_framework', + 'win-8_x64_10.0.14393.0_7.0.0_x64_3.1.2_core' + ) + } +} + +# Recursively find all *.ps1 files and run Invoke-ScriptAnalyzer against them. +Get-ChildItem -Path . -Recurse -Include '*.ps1' | Invoke-ScriptAnalyzer -Settings $settings +if ($LastExitCode -ne 0) { + Write-Error 'ScriptAnalyzer found (possibly back-compatibility) issues.' +} +``` + + +### Dependencies +We have thus far been unable to make the `Az.ConnectedKubernetes` module install its dependencies (`Az.Resources` and `Az.Accounts`). This is possible for powershell but the issue is that the configuration to do this has to somehow be passed through the [autorest] process and attempts to do this have thus far failed. + +### You Want a New Cmdlet? If you are creating a whole new command, then you need to get the [autorest] process and the build process to work together to create the underlying `internal` command for you and this is not trivial. When we tried to add the `Set-` cmdlet, we found it never appeared but eventually we discovered these nuggets of knowledge. -- [autorest] will look at the `operationId` field in the [Swagger] for each REST API method and determine what commands to create. So in our case `ConnectedCluster_Create` only causes `New-` cmdlets to be created and we had to update the [Swagger] to say `ConnectedCluster_CreateOrUpdate` before any `Set-` cmdlets were created +- [autorest] will look at the `operationId` field in the [Swagger] for each REST API method and determine what commands to create. So in our case `ConnectedCluster_Create` only causes `New-` cmdlets to be created and we had to update the [Swagger] to say `ConnectedCluster_CreateOrUpdate` before any `Set-` cmdlets were created. Note that there are other options possible and the Swagger teams preferred `ConnectedCluster_CreateOrReplace` which works just as well for what we need and introduces no external API differences. - The `internal` cmdlets are really just Powershell wrappers but these are not created until the `pwsh build-module-ps1` step - Between the steps above sits the [autorest] configuration found in the XML at the end of [README.md]. This does stuff like: - Stops the generation of various versions of cmdlets that are not required @@ -48,4 +105,6 @@ When we tried to add the `Set-` cmdlet, we found it never appeared but eventuall [Swagger]: https://swagger.io/ [README.md]: ./README.md [Quickstart for Azure PowerShell development using code generator]: https://eng.ms/docs/cloud-ai-platform/azure-core/azure-management-and-platforms/control-plane-bburns/azure-cli-tools-azure-cli-powershell-and-terraform/azure-cli-tools/onboarding/azurepowershell/quickstart_codegen -[azure-powershell]: https://github.com/azure/azure-powershell \ No newline at end of file +[azure-powershell]: https://github.com/azure/azure-powershell +[Docker]: https://www.docker.com +[Docker Desktop]: https://www.docker.com/products/docker-desktop/ diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/New-AzConnectedKubernetes.ps1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/New-AzConnectedKubernetes.ps1 index 55b709814174..b770a2121d4c 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/New-AzConnectedKubernetes.ps1 +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/New-AzConnectedKubernetes.ps1 @@ -10,8 +10,6 @@ # 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. # ---------------------------------------------------------------------------------- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseSingularNouns', '', @@ -374,7 +372,7 @@ function New-AzConnectedKubernetes { $helmClientLocation = 'helm' #Region get release namespace - $ReleaseNamespaces = Get-HelmReleaseNamespaces -KubeConfig $KubeConfig -KubeContext $KubeContext + $ReleaseNamespaces = Get-HelmReleaseNamespace -KubeConfig $KubeConfig -KubeContext $KubeContext $ReleaseNamespace = $ReleaseNamespaces['ReleaseNamespace'] $ReleaseInstallNamespace = $ReleaseNamespaces['ReleaseInstallNamespace'] @@ -417,7 +415,7 @@ function New-AzConnectedKubernetes { } } - $RegistryPath = Set-HelmRepositoryAndModules -KubeConfig $KubeConfig -KubeContext $KubeContext -Location $Location -ProxyCert $ProxyCert -DisableAutoUpgrade $DisableAutoUpgrade -ContainerLogPath $ContainerLogPath -CustomLocationsOid $CustomLocationsOid + $RegistryPath = Set-HelmModulesAndRepository -KubeConfig $KubeConfig -KubeContext $KubeContext -Location $Location # Region create RSA keys Write-Debug "Generating RSA keys for secure communication." @@ -641,9 +639,9 @@ function New-AzConnectedKubernetes { -Debug:($PSCmdlet.MyInvocation.BoundParameters["Debug"].IsPresent -eq $true) # Convert the $Response object into a nested hashtable. - Write-Debug "PUT response: $Response" - $Response = ConvertFrom-Json "$Response" -AsHashTable -Depth 10 + $Response = ConvertFrom-Json "$Response" + $Response = ConvertTo-Hashtable $Response # What-If processing does not create a full response so we might have # to create a minimal one. @@ -660,7 +658,7 @@ function New-AzConnectedKubernetes { Write-Debug "PUT response: $Response" $ResponseStr = $Response | ConvertTo-Json -Depth 10 Write-Debug "PUT response: $ResponseStr" - + if ($PSCmdlet.ShouldProcess("configDP", "request Helm values")) { $helmValuesDp = Get-HelmValuesFromConfigDP ` -configDPEndpoint $configDPEndpoint ` @@ -736,8 +734,6 @@ function New-AzConnectedKubernetes { --set systemDefaultValues.clusterconnect-agent.enabled=true ` --set global.kubernetesDistro=$Distribution ` --set global.kubernetesInfra=$Infrastructure (-split $options) - - # $helmDebug } catch { throw "Unable to install helm chart at $ChartPath" @@ -747,15 +743,15 @@ function New-AzConnectedKubernetes { if ($PSCmdlet.ShouldProcess($ClusterName, "Check agent state of the connected cluster")) { if ($PSBoundParameters.ContainsKey('OidcIssuerProfileEnabled') -or $PSBoundParameters.ContainsKey('WorkloadIdentityEnabled') ) { $ExistConnectedKubernetes = Get-AzConnectedKubernetes -ResourceGroupName $ResourceGroupName -ClusterName $ClusterName @CommonPSBoundParameters - + Write-Output "Cluster configuration is in progress..." $timeout = [datetime]::Now.AddMinutes(60) - + while (($ExistConnectedKubernetes.ArcAgentProfileAgentState -ne "Succeeded") -and ($ExistConnectedKubernetes.ArcAgentProfileAgentState -ne "Failed") -and ([datetime]::Now -lt $timeout)) { Start-Sleep -Seconds 30 $ExistConnectedKubernetes = Get-AzConnectedKubernetes -ResourceGroupName $ResourceGroupName -ClusterName $ClusterName @CommonPSBoundParameters } - + if ($ExistConnectedKubernetes.ArcAgentProfileAgentState -eq "Succeeded") { Write-Output "Cluster configuration succeeded." } @@ -764,7 +760,7 @@ function New-AzConnectedKubernetes { } else { Write-Error "Cluster configuration timed out after 60 minutes." - } + } } } Return $Response diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Remove-AzConnectedKubernetes.ps1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Remove-AzConnectedKubernetes.ps1 index f41edf4a37e6..d77604ce0eec 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Remove-AzConnectedKubernetes.ps1 +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Remove-AzConnectedKubernetes.ps1 @@ -10,9 +10,10 @@ # 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. # ---------------------------------------------------------------------------------- +[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseSingularNouns', '', + Justification = 'Kubernetes is a recognised term', Scope = 'Function', Target = 'Remove-AzConnectedKubernetes')] +param() <# .Synopsis @@ -42,124 +43,127 @@ INPUTOBJECT : Identity Parameter https://learn.microsoft.com/powershell/module/az.connectedkubernetes/remove-azconnectedkubernetes #> function Remove-AzConnectedKubernetes { -[OutputType([System.Boolean])] -[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] -param( - [Parameter(ParameterSetName='Delete', Mandatory)] - [Alias('Name')] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] - [System.String] - # The name of the Kubernetes cluster on which get is called. - ${ClusterName}, - - [Parameter(ParameterSetName='Delete', Mandatory)] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] - [System.String] - # The name of the resource group. - # The name is case insensitive. - ${ResourceGroupName}, - - [Parameter(HelpMessage="Path to the kube config file")] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')] - [System.String] - # Path to the kube config file - ${KubeConfig}, - - [Parameter(HelpMessage="Kubconfig context from current machine")] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')] - [System.String] - # Kubconfig context from current machine - ${KubeContext}, - - [Parameter(ParameterSetName='Delete')] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] - [System.String] - # The ID of the target subscription. - ${SubscriptionId}, - - [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.IConnectedKubernetesIdentity] - # Identity Parameter - # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. - ${InputObject}, - - [Parameter()] - [Alias('AzureRMContext', 'AzureCredential')] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Azure')] - [System.Management.Automation.PSObject] - # The credentials, account, tenant, and subscription used for communication with Azure. - ${DefaultProfile}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command as a job - ${AsJob}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Wait for .NET debugger to attach - ${Break}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be appended to the front of the pipeline - ${HttpPipelineAppend}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Runtime.SendAsyncStep[]] - # SendAsync Pipeline Steps to be prepended to the front of the pipeline - ${HttpPipelinePrepend}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Run the command asynchronously - ${NoWait}, - - [Parameter()] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Returns true when the command succeeds - ${PassThru}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] - [System.Uri] - # The URI for the proxy server to use - ${Proxy}, - - [Parameter(DontShow)] - [ValidateNotNull()] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] - [System.Management.Automation.PSCredential] - # Credentials for a proxy server to use for the remote call - ${ProxyCredential}, - - [Parameter(DontShow)] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] - [System.Management.Automation.SwitchParameter] - # Use the default credentials for the proxy - ${ProxyUseDefaultCredentials} -) + [OutputType([System.Boolean])] + [CmdletBinding(DefaultParameterSetName = 'Delete', PositionalBinding = $false, ConfirmImpact = 'Medium', SupportsShouldProcess = $true)] + param( + [Parameter(ParameterSetName = 'Delete', Mandatory)] + [Alias('Name')] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] + [System.String] + # The name of the Kubernetes cluster on which get is called. + ${ClusterName}, + + [Parameter(ParameterSetName = 'Delete', Mandatory)] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] + [System.String] + # The name of the resource group. + # The name is case insensitive. + ${ResourceGroupName}, + + [Parameter(HelpMessage = "Path to the kube config file")] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')] + [System.String] + # Path to the kube config file + ${KubeConfig}, + + [Parameter(HelpMessage = "Kubconfig context from current machine")] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')] + [System.String] + # Kubconfig context from current machine + ${KubeContext}, + + [Parameter(ParameterSetName = 'Delete')] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Runtime.DefaultInfo(Script = '(Get-AzContext).Subscription.Id')] + [System.String] + # The ID of the target subscription. + ${SubscriptionId}, + + [Parameter(ParameterSetName = 'DeleteViaIdentity', Mandatory, ValueFromPipeline)] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.IConnectedKubernetesIdentity] + # Identity Parameter + # To construct, see NOTES section for INPUTOBJECT properties and create a hash table. + ${InputObject}, + + [Parameter()] + [Alias('AzureRMContext', 'AzureCredential')] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Azure')] + [System.Management.Automation.PSObject] + # The credentials, account, tenant, and subscription used for communication with Azure. + ${DefaultProfile}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command as a job + ${AsJob}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Wait for .NET debugger to attach + ${Break}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be appended to the front of the pipeline + ${HttpPipelineAppend}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Runtime.SendAsyncStep[]] + # SendAsync Pipeline Steps to be prepended to the front of the pipeline + ${HttpPipelinePrepend}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Run the command asynchronously + ${NoWait}, + + [Parameter()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Returns true when the command succeeds + ${PassThru}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] + [System.Uri] + # The URI for the proxy server to use + ${Proxy}, + + [Parameter(DontShow)] + [ValidateNotNull()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] + [System.Management.Automation.PSCredential] + # Credentials for a proxy server to use for the remote call + ${ProxyCredential}, + + [Parameter(DontShow)] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Runtime')] + [System.Management.Automation.SwitchParameter] + # Use the default credentials for the proxy + ${ProxyUseDefaultCredentials} + ) process { . "$PSScriptRoot/helpers/HelmHelper.ps1" if ($PSBoundParameters.ContainsKey('KubeConfig')) { $Null = $PSBoundParameters.Remove('KubeConfig') - } elseif (Test-Path Env:KUBECONFIG) { + } + elseif (Test-Path Env:KUBECONFIG) { $KubeConfig = Get-ChildItem -Path $Env:KUBECONFIG - } elseif (Test-Path Env:Home) { + } + elseif (Test-Path Env:Home) { $KubeConfig = Join-Path -Path $Env:Home -ChildPath '.kube' | Join-Path -ChildPath 'config' - } else { + } + else { $KubeConfig = Join-Path -Path $Home -ChildPath '.kube' | Join-Path -ChildPath 'config' } if (-not (Test-Path $KubeConfig)) { @@ -184,7 +188,8 @@ param( Write-Error "Helm version 3+ is required. Ensure that you have installed the latest version of Helm. Learn more at https://aka.ms/arc/k8s/onboarding-helm-install" return } - } catch { + } + catch { throw "Helm version 3+ is required. Ensure that you have installed the latest version of Helm. Learn more at https://aka.ms/arc/k8s/onboarding-helm-install" } #Endregion @@ -197,13 +202,16 @@ param( $ReleaseNamespace = $null try { $ReleaseNamespace = (helm status azure-arc -o json --kubeconfig $KubeConfig --kube-context $KubeContext -n $ReleaseInstallNamespace | ConvertFrom-Json).namespace - } catch { + } + catch { Write-Error "Fail to find the namespace for azure-arc." } #Endregion if ($null -eq $ReleaseNamespace) { - Az.ConnectedKubernetes.internal\Remove-AzConnectedKubernetes @PSBoundParameters + if ($PSCmdlet.ShouldProcess($PSBoundParameters)) { + Az.ConnectedKubernetes.internal\Remove-AzConnectedKubernetes @PSBoundParameters + } return } @@ -218,15 +226,19 @@ param( $PSBoundParameters.Add('ClusterName') } if (($ResourceGroupName -eq $ConfigmapRgName) -and ($ClusterName -eq $ConfigmapClusterName)) { - Az.ConnectedKubernetes.internal\Remove-AzConnectedKubernetes @PSBoundParameters - helm delete azure-arc --namespace $ReleaseInstallNamespace --kubeconfig $KubeConfig --kube-context $KubeContext - } else { + if ($PSCmdlet.ShouldProcess($PSBoundParameters)) { + Az.ConnectedKubernetes.internal\Remove-AzConnectedKubernetes @PSBoundParameters + helm delete azure-arc --namespace $ReleaseInstallNamespace --kubeconfig $KubeConfig --kube-context $KubeContext + } + } + else { Write-Error "The current context in the kubeconfig file does not correspond to the connected cluster resource specified. Agents installed on this cluster correspond to the resource group name '$ConfigmapRgName' and resource name '$ConfigmapClusterName'." } if ($ReleaseNamespace -eq $ReleaseInstallNamespace) { try { kubectl delete namespace $ReleaseInstallNamespace - } catch { + } + catch { throw "Unable to clean-up kubernetes namespace: $ReleaseInstallNamespace" } } diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Set-AzConnectedKubernetes.ps1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Set-AzConnectedKubernetes.ps1 index 513793adf1cd..02a4f0f8de6a 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Set-AzConnectedKubernetes.ps1 +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Set-AzConnectedKubernetes.ps1 @@ -10,8 +10,6 @@ # 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. # ---------------------------------------------------------------------------------- [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseSingularNouns', '', @@ -23,7 +21,7 @@ param() .Synopsis API to set properties of the connected cluster resource .Description -API to set properties of the connected cluster resource +API to set properties of the connected cluster resource. Replaces all configuration of an existing connected cluster; any properties not specified will be reset to their default values. .Example Set-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -GatewayResourceId $gatewayResourceId .Example @@ -36,7 +34,7 @@ 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. -INPUTOBJECT : +INPUTOBJECT : Location : The geo-location where the resource lives AgentPublicKeyCertificate : Base64 encoded public certificate used by the agent to do the initial handshake to the backend services in Azure. IdentityType : The type of identity used for the connected cluster. The type 'SystemAssigned, includes a system created identity. The type 'None' means no identity is assigned to the connected cluster. @@ -88,6 +86,7 @@ function Set-AzConnectedKubernetes { param( [Parameter(ParameterSetName = 'SetExpanded', Mandatory)] [Parameter(ParameterSetName = 'SetExpandedDisableGateway', Mandatory)] + [Parameter(ParameterSetName = 'SetExpandedEnableGateway', Mandatory)] [Alias('Name')] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] [System.String] @@ -96,6 +95,7 @@ function Set-AzConnectedKubernetes { [Parameter(ParameterSetName = 'SetExpanded', Mandatory)] [Parameter(ParameterSetName = 'SetExpandedDisableGateway', Mandatory)] + [Parameter(ParameterSetName = 'SetExpandedEnableGateway', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] [System.String] # The name of the resource group. @@ -104,13 +104,15 @@ function Set-AzConnectedKubernetes { [Parameter(ParameterSetName = 'SetExpanded', Mandatory)] [Parameter(ParameterSetName = 'SetExpandedDisableGateway', Mandatory)] + [Parameter(ParameterSetName = 'SetExpandedEnableGateway', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')] [System.String] # The geo-location where the resource lives ${Location}, - [Parameter(ParameterSetName = 'Set', Mandatory)] - [Parameter(ParameterSetName = 'SetDisableGateway', Mandatory)] + [Parameter(ParameterSetName = 'Set', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName = 'SetDisableGateway', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName = 'SetEnableGateway', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20240715Preview.IConnectedCluster] ${InputObject}, @@ -243,7 +245,7 @@ function Set-AzConnectedKubernetes { [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')] [System.Management.Automation.SwitchParameter] - # Whether to enable or disable the workload identity Webhook + # Enable the workload identity Webhook ${WorkloadIdentityEnabled}, [Parameter()] @@ -328,7 +330,8 @@ function Set-AzConnectedKubernetes { [System.Management.Automation.SwitchParameter] ${DisableGateway}, - [Parameter()] + [Parameter(ParameterSetName = 'SetEnableGateway', Mandatory)] + [Parameter(ParameterSetName = 'SetExpandedEnableGateway', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('body')] [System.String] # Arc Gateway resource Id, providing this will enable the gateway @@ -394,7 +397,9 @@ function Set-AzConnectedKubernetes { $KubeContext = kubectl config current-context } - # Parse value from inputObject + # The internal Set command does not support inputObject probably due to current implementation of swagger + # So we do it hard way and parse value from inputObject + # ArcAgentryConfiguration is handled in a separate block if ($null -ne $InputObject) { $Location = $InputObject.Location $PSBoundParameters.Add('Location', $Location) @@ -405,30 +410,61 @@ function Set-AzConnectedKubernetes { $ResourceGroupName = $InputObject.ResourceGroupName $PSBoundParameters.Add('ResourceGroupName', $ResourceGroupName) - if (-not $PSBoundParameters.ContainsKey('DisableGateway')) { - if (-not $InputObject.GatewayEnabled) { - $DisableGateway = -not $InputObject.GatewayEnabled - } + if (-not $PSBoundParameters.ContainsKey('DisableGateway') -and $InputObject.PSObject.Properties['GatewayEnabled']) { + $DisableGateway = -not $InputObject.GatewayEnabled } if ((-not $PSBoundParameters.ContainsKey('GatewayResourceId')) -and (-not [String]::IsNullOrEmpty($InputObject.GatewayResourceId))) { $GatewayResourceId = $InputObject.GatewayResourceId - $PSBoundParameters.Add('GatewayResourceId', $GatewayResourceId) } if (-not $PSBoundParameters.ContainsKey('DisableAutoUpgrade')) { $DisableAutoUpgrade = ($InputObject.ArcAgentProfileAgentAutoUpgrade -eq 'Disabled') } + + if ((-not $PSBoundParameters.ContainsKey('WorkloadIdentityEnabled')) -and $InputObject.PSObject.Properties['WorkloadIdentityEnabled']) { + $WorkloadIdentityEnabled = $InputObject.WorkloadIdentityEnabled + $PSBoundParameters.Add('WorkloadIdentityEnabled', $WorkloadIdentityEnabled) + } + + if ((-not $PSBoundParameters.ContainsKey('OidcIssuerProfileEnabled')) -and $InputObject.OidcIssuerProfileEnabled) { + $OidcIssuerProfileEnabled = $true + $PSBoundParameters.Add('OidcIssuerProfileEnabled', $OidcIssuerProfileEnabled) + } + + if ((-not $PSBoundParameters.ContainsKey('OidcIssuerProfileSelfHostedIssuerUrl')) -and $InputObject.OidcIssuerProfileSelfHostedIssuerUrl) { + $OidcIssuerProfileEnabled = $true + $PSBoundParameters.Add('OidcIssuerProfileSelfHostedIssuerUrl', $InputObject.OidcIssuerProfileSelfHostedIssuerUrl) + } + + if ((-not $PSBoundParameters.ContainsKey('Distribution')) -and $InputObject.PSObject.Properties['Distribution']) { + $PSBoundParameters.Add('Distribution', $InputObject.Distribution) + } + + if ((-not $PSBoundParameters.ContainsKey('DistributionVersion')) -and $InputObject.PSObject.Properties['DistributionVersion']) { + $PSBoundParameters.Add('DistributionVersion', $InputObject.DistributionVersion) + } + + if ((-not $PSBoundParameters.ContainsKey('Infrastructure')) -and $InputObject.PSObject.Properties['Infrastructure']) { + $PSBoundParameters.Add('Infrastructure', $InputObject.Infrastructure) + } + + if ((-not $PSBoundParameters.ContainsKey('PrivateLinkState')) -and $InputObject.PSObject.Properties['PrivateLinkState']) { + $PSBoundParameters.Add('PrivateLinkState', $InputObject.PrivateLinkState) + } } - if (-not [String]::IsNullOrEmpty($GatewayResourceId) -and -not $DisableGateway) { + if ($PSBoundParameters.ContainsKey('GatewayResourceId')) { Write-Debug "Gateway enabled" $PSBoundParameters.Add('GatewayEnabled', $true) - } - # If DisableGateway is provided then set the gateway as disabled and remove gateway resourceId from parameters - if ($DisableGateway) { + } elseif ($PSBoundParameters.ContainsKey('DisableGateway')) { Write-Debug "Gateway disabled" $Null = $PSBoundParameters.Remove('DisableGateway') $PSBoundParameters.Add('GatewayEnabled', $false) + } else { + $PSBoundParameters.Add('GatewayEnabled', -not $DisableGateway) + if (-not [String]::IsNullOrEmpty($GatewayResourceId)) { + $PSBoundParameters.Add('GatewayResourceId', $GatewayResourceId) + } } $CommonPSBoundParameters = @{} @@ -461,7 +497,7 @@ function Set-AzConnectedKubernetes { $helmClientLocation = 'helm' #Region get release namespace - $ReleaseNamespaces = Get-HelmReleaseNamespaces -KubeConfig $KubeConfig -KubeContext $KubeContext + $ReleaseNamespaces = Get-HelmReleaseNamespace -KubeConfig $KubeConfig -KubeContext $KubeContext $ReleaseNamespace = $ReleaseNamespaces['ReleaseNamespace'] $ReleaseInstallNamespace = $ReleaseNamespaces['ReleaseInstallNamespace'] @@ -497,13 +533,13 @@ function Set-AzConnectedKubernetes { #Endregion # Adding Helm repo - $RegistryPath = Set-HelmRepositoryAndModules -KubeConfig $KubeConfig -KubeContext $KubeContext -Location $Location -ProxyCert $ProxyCert -DisableAutoUpgrade $DisableAutoUpgrade -ContainerLogPath $ContainerLogPath -CustomLocationsOid $CustomLocationsOid + $RegistryPath = Set-HelmModulesAndRepository -KubeConfig $KubeConfig -KubeContext $KubeContext -Location $Location Write-Debug "Processing Helm chart installation options." $options = "" - if ($DisableAutoUpgrade -or ($ExistConnectedKubernetes.ArcAgentProfileAgentAutoUpgrade -eq 'Disabled')) { + if ($DisableAutoUpgrade) { $Null = $PSBoundParameters.Remove('DisableAutoUpgrade') $PSBoundParameters.Add('ArcAgentProfileAgentAutoUpgrade', 'Disabled') } @@ -538,20 +574,11 @@ function Set-AzConnectedKubernetes { Write-Warning "If the proxy is a private proxy, pass ProxyCredential parameter or provide username and password in the Proxy parameter" } } + #Endregion #Region Deal with configuration settings and protected settings - - # If the user does not provide proxy settings, or configuration settings, we shall use arc config of existing object - $userProvidedArcConfiguration = ( - ($null -ne $InputObject) -and ($InputObject.ArcAgentryConfiguration.Length > 0) ` - -and (-not ([string]::IsNullOrEmpty($HttpProxy))) ` - -and (-not ([string]::IsNullOrEmpty($HttpsProxy))) ` - -and (-not ([string]::IsNullOrEmpty($NoProxy))) ` - -and ((-not ([string]::IsNullOrEmpty($ProxyCert)))) ` - -and ($PSBoundParameters.ContainsKey('ConfigurationSetting')) ` - -and ($PSBoundParameters.ContainsKey('ConfigurationProtectedSetting'))) - + if ($null -eq $ConfigurationSetting) { $ConfigurationSetting = @{} } @@ -591,7 +618,7 @@ function Set-AzConnectedKubernetes { $NoProxy = $NoProxy -replace '/', '\/' $ConfigurationProtectedSetting["proxy"]["no_proxy"] = $NoProxy $Null = $PSBoundParameters.Remove('NoProxy') - } + } try { if ((-not ([string]::IsNullOrEmpty($ProxyCert))) -and (Test-Path $ProxyCert)) { @@ -672,12 +699,7 @@ function Set-AzConnectedKubernetes { $PSBoundParameters.Remove('ConfigurationProtectedSetting') } - if ($userProvidedArcConfiguration) { - $PSBoundParameters.Add('ArcAgentryConfiguration', $arcAgentryConfigs) - } - else { - $PSBoundParameters.Add('ArcAgentryConfiguration', $ExistConnectedKubernetes.ArcAgentryConfiguration) - } + $PSBoundParameters.Add('ArcAgentryConfiguration', $arcAgentryConfigs) Write-Output "Updating the connected cluster resource...." $Response = Az.ConnectedKubernetes.internal\Set-AzConnectedKubernetes @PSBoundParameters @@ -695,8 +717,9 @@ function Set-AzConnectedKubernetes { # Convert the $Response object into a nested hashtable. Write-Debug "PUT response: $Response" - $Response = ConvertFrom-Json "$Response" -AsHashTable -Depth 10 - + $Response = ConvertFrom-Json "$Response" + $Response = ConvertTo-Hashtable $Response + # Whatif may return empty response if (-not $Response) { $Response = @{} @@ -705,19 +728,13 @@ function Set-AzConnectedKubernetes { $Response['properties'] = @{} } - if ($userProvidedArcConfiguration) { - $Response['properties']['arcAgentryConfigurations'] = $arcAgentryConfigs - } - else { - $Response['properties']['arcAgentryConfigurations'] = $ExistConnectedKubernetes.ArcAgentryConfiguration - } - + $Response['properties']['arcAgentryConfigurations'] = $arcAgentryConfigs # Retrieving Helm chart OCI (Open Container Initiative) Artifact location Write-Debug "Retrieving Helm chart OCI (Open Container Initiative) Artifact location." $ResponseStr = $Response | ConvertTo-Json -Depth 10 Write-Debug "PUT response: $ResponseStr" - + Write-Output "Preparing helm ...." if ($PSCmdlet.ShouldProcess('configDP', 'get helm values from config DP')) { @@ -756,7 +773,7 @@ function Set-AzConnectedKubernetes { if ($ExistConnectedKubernetes.AgentVersion) { $repositoryPath = $repositoryPath -replace "(?<=:).*", $ExistConnectedKubernetes.AgentVersion } - } + } if ($PSCmdlet.ShouldProcess('configDP', 'get helm chart path')) { # Get helm chart path (within the OCI registry). @@ -779,7 +796,6 @@ function Set-AzConnectedKubernetes { $userValuesLocation = Join-Path $env:USERPROFILE ".azure\userValues.txt" helm get values azure-arc ` - --debug ` --namespace $ReleaseInstallNamespace ` --kubeconfig $KubeConfig ` --kube-context $KubeContext > $userValuesLocation @@ -797,7 +813,6 @@ function Set-AzConnectedKubernetes { if ($PSCmdlet.ShouldProcess($ClusterName, "Update Kubernetes cluster with Azure Arc")) { try { helm upgrade ` - --debug ` azure-arc ` $ChartPath ` --namespace $ReleaseInstallNamespace ` @@ -813,15 +828,15 @@ function Set-AzConnectedKubernetes { if ($PSCmdlet.ShouldProcess($ClusterName, "Check agent state of the connected cluster")) { if ($PSBoundParameters.ContainsKey('OidcIssuerProfileEnabled') -or $PSBoundParameters.ContainsKey('WorkloadIdentityEnabled') ) { $ExistConnectedKubernetes = Get-AzConnectedKubernetes -ResourceGroupName $ResourceGroupName -ClusterName $ClusterName @CommonPSBoundParameters - + Write-Output "Cluster configuration is in progress..." $timeout = [datetime]::Now.AddMinutes(60) - + while (($ExistConnectedKubernetes.ArcAgentProfileAgentState -ne "Succeeded") -and ($ExistConnectedKubernetes.ArcAgentProfileAgentState -ne "Failed") -and ([datetime]::Now -lt $timeout)) { Start-Sleep -Seconds 30 $ExistConnectedKubernetes = Get-AzConnectedKubernetes -ResourceGroupName $ResourceGroupName -ClusterName $ClusterName @CommonPSBoundParameters } - + if ($ExistConnectedKubernetes.ArcAgentProfileAgentState -eq "Succeeded") { Write-Output "Cluster configuration succeeded." } @@ -830,7 +845,7 @@ function Set-AzConnectedKubernetes { } else { Write-Error "Cluster configuration timed out after 60 minutes." - } + } } } } diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Update-AzConnectedKubernetes.ps1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Update-AzConnectedKubernetes.ps1 index d8441eea262b..8eef8b124fb9 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Update-AzConnectedKubernetes.ps1 +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Update-AzConnectedKubernetes.ps1 @@ -10,9 +10,10 @@ # 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. # ---------------------------------------------------------------------------------- +[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseSingularNouns', '', + Justification = 'Kubernetes is a recognised term', Scope = 'Function', Target = 'Update-AzConnectedKubernetes')] +param() <# .Synopsis @@ -43,30 +44,30 @@ https://learn.microsoft.com/powershell/module/az.connectedkubernetes/update-azco #> function Update-AzConnectedKubernetes { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20240715Preview.IConnectedCluster])] - [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] + [CmdletBinding(DefaultParameterSetName = 'UpdateExpanded', PositionalBinding = $false, ConfirmImpact = 'Medium', SupportsShouldProcess)] param( - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName = 'UpdateExpanded', Mandatory)] [Alias('Name')] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] [System.String] # The name of the Kubernetes cluster on which get is called. ${ClusterName}, - [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] + [Parameter(ParameterSetName = 'UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, - [Parameter(ParameterSetName='UpdateExpanded')] + [Parameter(ParameterSetName = 'UpdateExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Runtime.DefaultInfo(Script = '(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, - [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] + [Parameter(ParameterSetName = 'UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.IConnectedKubernetesIdentity] # Identity Parameter @@ -99,7 +100,7 @@ function Update-AzConnectedKubernetes { [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20240715Preview.IConnectedClusterPatchTags]))] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Runtime.Info(PossibleTypes = ([Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20240715Preview.IConnectedClusterPatchTags]))] [System.Collections.Hashtable] # Resource tags. ${Tag}, @@ -153,23 +154,26 @@ function Update-AzConnectedKubernetes { ) process { - if($AzureHybridBenefit){ - if(!$AcceptEULA){ + if ($AzureHybridBenefit) { + if (!$AcceptEULA) { $legalTermPath = Join-Path $PSScriptRoot -ChildPath "LegalTerm.txt" try { $legalTerm = (Get-Content -Path $legalTermPath) -join "`r`n" - } catch { + } + catch { Write-Error "Get legal term failed." throw } $confirmation = Read-Host $legalTerm"`n[Y] Yes [N] No (default is `"N`")" - if($confirmation -ine "Y"){ + if ($confirmation -ine "Y") { Return } } } $null = $PSBoundParameters.Remove('AcceptEULA') - Az.ConnectedKubernetes.internal\Update-AzConnectedKubernetes @PSBoundParameters + if ($PSCmdlet.ShouldProcess($PSBoundParameters)) { + Az.ConnectedKubernetes.internal\Update-AzConnectedKubernetes @PSBoundParameters + } } } \ No newline at end of file diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/AzCloudMetadataHelper.ps1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/AzCloudMetadataHelper.ps1 index 37782d6cbb39..c07be4df56ce 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/AzCloudMetadataHelper.ps1 +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/AzCloudMetadataHelper.ps1 @@ -3,7 +3,7 @@ param() function Get-AZCloudMetadataResourceId { - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExport()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] param ( [Parameter(Mandatory = $true)] [PSCustomObject]$cloudMetadata diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/ConfigDPHelper.ps1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/ConfigDPHelper.ps1 index 10bdb8d79079..c7d6c3273acd 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/ConfigDPHelper.ps1 +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/ConfigDPHelper.ps1 @@ -27,8 +27,6 @@ function Invoke-ConfigDPHealthCheck { -Uri $chartLocationUrl ` -Headers $headers ` -UriParameters $uriParameters ` - -MaximumRetryCount 5 ` - -RetryIntervalSec 3 ` -StatusCodeVariable statusCode ` -Verbose:($PSCmdlet.MyInvocation.BoundParameters["Verbose"].IsPresent -eq $true) ` -Debug:($PSCmdlet.MyInvocation.BoundParameters["Debug"].IsPresent -eq $true) @@ -40,7 +38,7 @@ function Invoke-ConfigDPHealthCheck { function Get-ConfigDPEndpoint { - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExport()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] param ( [Parameter(Mandatory = $true)] [string]$Location, @@ -56,12 +54,11 @@ function Get-ConfigDPEndpoint { -CloudMetadata $cloudMetadata ` -Verbose:($PSCmdlet.MyInvocation.BoundParameters["Verbose"].IsPresent -eq $true) ` -Debug:($PSCmdlet.MyInvocation.BoundParameters["Debug"].IsPresent -eq $true) - return @{ ConfigDpEndpoint = $ConfigDpEndpoint; ReleaseTrain = $ReleaseTrain } } function Get-ConfigDpDefaultEndpoint { - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExport()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] param ( [Parameter(Mandatory = $true)] [string]$location, @@ -87,8 +84,6 @@ function Invoke-RestMethodWithUriParameters { [Hashtable]$headers, [System.Collections.Specialized.OrderedDictionary]$uriParameters, [String]$requestBody, - [Int]$maximumRetryCount, - [Int]$retryIntervalSec, [String]$statusCodeVariable ) @@ -107,26 +102,34 @@ function Invoke-RestMethodWithUriParameters { # $uriParametersArray = $uriParameters.GetEnumerator() | ForEach-Object { "$($_.Key)=$($_.Value)" } | ForEach-Object { $_ -join '=' } | ForEach-Object { $_ -join '&' } # } Write-Debug "Issue REST request to ${uri} with method ${method} and headers ${headers} and body ${requestBody}" - $rsp = Invoke-RestMethod ` - -Method $method ` - -Uri $uri ` - -Headers $headers ` - -Body $requestBody ` - -ContentType "application/json" ` - -MaximumRetryCount $maximumRetryCount ` - -RetryIntervalSec $retryintervalSec ` - -StatusCodeVariable statusCode ` - -Verbose:($PSCmdlet.MyInvocation.BoundParameters["Verbose"].IsPresent -eq $true) ` - -Debug:($PSCmdlet.MyInvocation.BoundParameters["Debug"].IsPresent -eq $true) + try { + $rsp = Invoke-RestMethod ` + -Method $method ` + -Uri $uri ` + -Headers $headers ` + -Body $requestBody ` + -ContentType "application/json" ` + -Verbose:($PSCmdlet.MyInvocation.BoundParameters["Verbose"].IsPresent -eq $true) ` + -Debug:($PSCmdlet.MyInvocation.BoundParameters["Debug"].IsPresent -eq $true) + $statusCode = 200; + } + catch { + # We do not know what went wrong, but something did! + $statusCode = 400 + Write-Error "Error while issuing REST request: $_" + } + finally { + # Note need to explcitly clear WhatIf for this method otherwise the value is + # not passed back during What-If testing. + Set-Variable -Name "${statusCodeVariable}" -Value $statusCode -Scope Script -WhatIf:$false + } Write-Debug "Response: $($rsp | ConvertTo-Json -Depth 10)" - # Note need to explcitly clear WhatIf for this method otherwise the value is - # not passed back during What-If testing. - Set-Variable -Name "${statusCodeVariable}" -Value $statusCode -Scope Script -WhatIf:$false return $rsp } + function Get-HelmValuesFromConfigDP { - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExport()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] param ( [Parameter(Mandatory = $true)] $ConfigDpEndpoint, @@ -165,8 +168,6 @@ function Get-HelmValuesFromConfigDP { -Headers $headers ` -UriParameters $uriParameters ` -RequestBody $RequestBody ` - -MaximumRetryCount 5 ` - -RetryIntervalSec 3 ` -StatusCodeVariable StatusCode ` -Verbose:($PSCmdlet.MyInvocation.BoundParameters["Verbose"].IsPresent -eq $true) ` -Debug:($PSCmdlet.MyInvocation.BoundParameters["Debug"].IsPresent -eq $true) diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/HelmHelper.ps1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/HelmHelper.ps1 index 5f0d57f57eb7..3f698044af6c 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/HelmHelper.ps1 +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/HelmHelper.ps1 @@ -3,6 +3,7 @@ param() function Set-HelmClientLocation { [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] + [CmdletBinding(SupportsShouldProcess = $true)] param( ) process { @@ -18,7 +19,9 @@ function Set-HelmClientLocation { if (!($env:Path.contains($HelmLocation)) -and (Test-Path $HelmLocation)) { Write-Debug "Updating PATH environment variable with Helm location." $PathStr = $HelmLocation + ";$env:Path" - Set-Item -Path Env:Path -Value $PathStr + if ($PSCmdlet.ShouldProcess($Env:Path)) { + Set-Item -Path Env:Path -Value $PathStr + } } } } @@ -124,7 +127,7 @@ function IsAmd64 { } function Get-HelmChartPath { - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExport()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] param ( [Parameter(Mandatory)] [string]$RegistryPath, @@ -152,7 +155,7 @@ function Get-HelmChartPath { throw "No environment to use as root." } Write-Verbose "Using 'helm' to add Azure Arc resources to Kubernetes cluster" - $ChartExportPath = Join-Path -Path $root -ChildPath '.azure' -AdditionalChildPath $ChartFolderName + $ChartExportPath = $root | Join-Path -ChildPath '.azure' | Join-Path -ChildPath $ChartFolderName try { if (Test-Path $ChartExportPath) { Write-Debug "Cleaning up existing Helm chart folder at: $ChartExportPath" @@ -187,7 +190,7 @@ function Get-HelmChartPath { } function Get-HelmChart { - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExport()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] param ( [Parameter(Mandatory)] [string]$RegistryPath, @@ -249,7 +252,7 @@ function Get-HelmChart { # This method exists to allow us to effectively Mock the call operator (&). # We cannnot do that directly so instead we have this wrapper, which we can mock! function Invoke-ExternalCommand { - [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExport()] + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] param ( [Parameter(Mandatory = $true)] [string]$Command, @@ -258,16 +261,13 @@ function Invoke-ExternalCommand { & $Command $Arguments } - -function Set-HelmRepositoryAndModules { +function Set-HelmModulesAndRepository { + [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] + [CmdletBinding(SupportsShouldProcess = $true)] param ( [string]$KubeConfig, [string]$KubeContext, - [string]$Location, - [string]$ProxyCert, - [bool]$DisableAutoUpgrade, - [string]$ContainerLogPath, - [string]$CustomLocationsOid + [string]$Location ) Write-Debug "Setting Helm repository and checking for required modules." if ((Test-Path Env:HELMREPONAME) -and (Test-Path Env:HELMREPOURL)) { @@ -325,11 +325,13 @@ function Set-HelmRepositoryAndModules { return } } - Set-Item -Path Env:HELM_EXPERIMENTAL_OCI -Value 1 + if ($PSCmdlet.ShouldProcess($Env:HEML_EXPERIMENAL_OCI)) { + Set-Item -Path Env:HELM_EXPERIMENTAL_OCI -Value 1 + } return $RegistryPath } -function Get-HelmReleaseNamespaces { +function Get-HelmReleaseNamespace { param ( [string]$KubeConfig, [string]$KubeContext diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/RSAHelper.ps1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/RSAHelper.ps1 index c49b33f74bcf..4ea21cbac3c6 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/RSAHelper.ps1 +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/RSAHelper.ps1 @@ -1,13 +1,13 @@ -function ExportRSAPrivateKeyBase64{ +function ExportRSAPrivateKeyBase64 { [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] param( [Parameter(Mandatory)] [System.Security.Cryptography.RSA] $RSA ) - process{ + process { $RSAParams = $RSA.ExportParameters(1) - [byte]$Sequence = 0x30 + [byte]$Sequence = 0x30 [byte[]]$Version = (0x00) $stream = [System.IO.MemoryStream]::new() $writer = [System.IO.BinaryWriter]::new($stream) @@ -35,16 +35,16 @@ function ExportRSAPrivateKeyBase64{ } } -function ExportRSAPublicKeyBase64{ +function ExportRSAPublicKeyBase64 { [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] param( [Parameter(Mandatory)] [System.Security.Cryptography.RSA] $RSA ) - process{ + process { $RSAParams = $RSA.ExportParameters(0) - [byte]$Sequence = 0x30 + [byte]$Sequence = 0x30 $stream = [System.IO.MemoryStream]::new() $writer = [System.IO.BinaryWriter]::new($stream) $writer.Write($Sequence); @@ -56,28 +56,28 @@ function ExportRSAPublicKeyBase64{ $length = ([int]($innerStream.Length)) EncodeLength $writer $length $writer.Write($innerStream.GetBuffer(), 0, $length) - + $base64 = [Convert]::ToBase64String($stream.GetBuffer(), 0, ([int]($stream.Length))) return $base64 } } -function EncodeLength{ +function EncodeLength { [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] param( [System.IO.BinaryWriter]$stream, [int]$length ) - process{ + process { [byte]$bytex80 = 0x80 - if($length -lt 0){ + if ($length -lt 0) { throw "Length must be non-negative" } - if($length -lt $bytex80){ + if ($length -lt $bytex80) { $stream.Write(([byte]$length)) } - else{ + else { $temp = $length $bytesRequired = 0; while ($temp -gt 0) { @@ -97,33 +97,33 @@ function EncodeLength{ } } -function EncodeIntegerBigEndian{ +function EncodeIntegerBigEndian { [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.DoNotExportAttribute()] param( [System.IO.BinaryWriter]$stream, [byte[]]$value, [bool]$forceUnsigned = $true ) - process{ + process { [byte]$Integer = 0x02 $stream.Write($Integer); # INTEGER $prefixZeros = 0 for ($i = 0; $i -lt $value.Length; $i++) { - if ($value[$i] -ne 0){break} + if ($value[$i] -ne 0) { break } $prefixZeros++ } - if(($value.Length - $prefixZeros) -eq 0){ + if (($value.Length - $prefixZeros) -eq 0) { EncodeLength $stream 1 $stream.Write(([byte]0)) } - else{ + else { [byte]$newByte = 0x7f - if(($forceUnsigned) -AND ($value[$prefixZeros] -gt $newByte)){ - EncodeLength $stream ($value.Length - $prefixZeros +1) + if (($forceUnsigned) -AND ($value[$prefixZeros] -gt $newByte)) { + EncodeLength $stream ($value.Length - $prefixZeros + 1) $stream.Write(([byte]0)) } - else{ + else { EncodeLength $stream ($value.Length - $prefixZeros) } for ($i = $prefixZeros; $i -lt $value.Length; $i++) { diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/UtilsHelper.ps1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/UtilsHelper.ps1 index 7b6ced587914..fdd89f98d39e 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/UtilsHelper.ps1 +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/UtilsHelper.ps1 @@ -44,7 +44,7 @@ function ConvertTo-ArcAgentryConfiguration { # This ensures that when a new feature is implemented, only the ConfigDP # needs to change and not the Powershell script (or az CLI). $arcAgentryConfigs = New-Object System.Collections.Generic.List[Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20240715Preview.ArcAgentryConfigurations] - $combinedKeys = $ConfigurationSetting.Keys + $combinedKeys = $ConfigurationSetting.Keys } else { $arcAgentryConfigs = New-Object System.Collections.ArrayList @@ -57,7 +57,12 @@ function ConvertTo-ArcAgentryConfiguration { # Do not send protected settings to CCRP foreach ($feature in $combinedKeys) { - $settings = ($ConfigurationSetting.ContainsKey($feature) ? $ConfigurationSetting[$feature] : @{}) + if ($ConfigurationSetting.ContainsKey($feature)) { + $settings = $ConfigurationSetting[$feature] + } + else { + $settings = @{} + } if ($CCRP) { $ArcAgentryConfiguration = [Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20240715Preview.ArcAgentryConfigurations]@{ Feature = $feature @@ -65,7 +70,12 @@ function ConvertTo-ArcAgentryConfiguration { } } else { - $protectedSettings = ($RedactedProtectedConfiguration.ContainsKey($feature) ? $RedactedProtectedConfiguration[$feature] : @{}) + if ($RedactedProtectedConfiguration.ContainsKey($feature)) { + $protectedSettings = $RedactedProtectedConfiguration[$feature] + } + else { + $protectedSettings = @{} + } $ArcAgentryConfiguration = @{ Feature = $feature Settings = $settings @@ -103,4 +113,35 @@ function Convert-ProxySetting { Write-Error "Variable $name does not exist" -ErrorAction SilentlyContinue } return $ConfigurationProtectedSetting -} \ No newline at end of file +} + +# This function exists because in Powershell 5.1 there is no -AsHashTable +# argument available for ConvertFrom-Json. +function ConvertTo-HashTable { + param( + [PSCustomObject]$object + ) + $HashTable = @{} + foreach ($property in $object.psobject.properties) { + $Value = $property.Value + $Key = $property.Name + if ($Value -is [System.Management.Automation.PSCustomObject]) { + $HashTable[$Key] = ConvertTo-HashTable $Value + } + elseif ($Value -is [System.Array]) { + $AnArray = @() + foreach ($Element in $Value) { + $AnArray += ConvertTo-HashTable $Element + } + $HashTable[$Key] = $AnArray + } + elseif ($Value -is [Hashtable]) { + $HashTable[$Key] = $Value + } + else { + $HashTable[$Key] = $Value + } + } + $HashTable +} + diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/docs/Az.ConnectedKubernetes.md b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/docs/Az.ConnectedKubernetes.md index 99f7d0920833..95cdb2819574 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/docs/Az.ConnectedKubernetes.md +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/docs/Az.ConnectedKubernetes.md @@ -1,6 +1,6 @@ --- Module Name: Az.ConnectedKubernetes -Module Guid: d3467834-8989-4142-8c05-ab93c4bfa6eb +Module Guid: efbb1325-5081-4947-8508-ab47abbf6e76 Download Help Link: https://learn.microsoft.com/powershell/module/az.connectedkubernetes Help Version: 1.0.0.0 Locale: en-US diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/docs/Set-AzConnectedKubernetes.md b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/docs/Set-AzConnectedKubernetes.md index 69e4c597ed4d..1146bdcf0a68 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/docs/Set-AzConnectedKubernetes.md +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/docs/Set-AzConnectedKubernetes.md @@ -19,11 +19,11 @@ Set-AzConnectedKubernetes -ClusterName -ResourceGroupName -Loc [-ProxyCert ] [-SubscriptionId ] [-AcceptEULA] [-AzureHybridBenefit ] [-ConfigurationProtectedSetting ] [-ConfigurationSetting ] [-CustomLocationsOid ] [-Distribution ] [-DistributionVersion ] - [-GatewayResourceId ] [-Infrastructure ] [-KubeConfig ] [-KubeContext ] - [-OidcIssuerProfileEnabled] [-OidcIssuerProfileSelfHostedIssuerUrl ] - [-PrivateLinkScopeResourceId ] [-PrivateLinkState ] - [-ProvisioningState ] [-Tag ] [-WorkloadIdentityEnabled] - [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] + [-Infrastructure ] [-KubeConfig ] [-KubeContext ] [-OidcIssuerProfileEnabled] + [-OidcIssuerProfileSelfHostedIssuerUrl ] [-PrivateLinkScopeResourceId ] + [-PrivateLinkState ] [-ProvisioningState ] [-Tag ] + [-WorkloadIdentityEnabled] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] ``` ### Set @@ -32,12 +32,11 @@ Set-AzConnectedKubernetes -InputObject [-ContainerLogPath ] [-HttpsProxy ] [-NoProxy ] [-ProxyCert ] [-SubscriptionId ] [-AcceptEULA] [-AzureHybridBenefit ] [-ConfigurationProtectedSetting ] [-ConfigurationSetting ] [-CustomLocationsOid ] [-Distribution ] - [-DistributionVersion ] [-GatewayResourceId ] [-Infrastructure ] - [-KubeConfig ] [-KubeContext ] [-OidcIssuerProfileEnabled] - [-OidcIssuerProfileSelfHostedIssuerUrl ] [-PrivateLinkScopeResourceId ] - [-PrivateLinkState ] [-ProvisioningState ] [-Tag ] - [-WorkloadIdentityEnabled] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] - [] + [-DistributionVersion ] [-Infrastructure ] [-KubeConfig ] [-KubeContext ] + [-OidcIssuerProfileEnabled] [-OidcIssuerProfileSelfHostedIssuerUrl ] + [-PrivateLinkScopeResourceId ] [-PrivateLinkState ] + [-ProvisioningState ] [-Tag ] [-WorkloadIdentityEnabled] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] ``` ### SetDisableGateway @@ -47,11 +46,25 @@ Set-AzConnectedKubernetes -DisableGateway -InputObject [-Con [-SubscriptionId ] [-AcceptEULA] [-AzureHybridBenefit ] [-ConfigurationProtectedSetting ] [-ConfigurationSetting ] [-CustomLocationsOid ] [-Distribution ] [-DistributionVersion ] - [-GatewayResourceId ] [-Infrastructure ] [-KubeConfig ] [-KubeContext ] - [-OidcIssuerProfileEnabled] [-OidcIssuerProfileSelfHostedIssuerUrl ] - [-PrivateLinkScopeResourceId ] [-PrivateLinkState ] - [-ProvisioningState ] [-Tag ] [-WorkloadIdentityEnabled] - [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] + [-Infrastructure ] [-KubeConfig ] [-KubeContext ] [-OidcIssuerProfileEnabled] + [-OidcIssuerProfileSelfHostedIssuerUrl ] [-PrivateLinkScopeResourceId ] + [-PrivateLinkState ] [-ProvisioningState ] [-Tag ] + [-WorkloadIdentityEnabled] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### SetEnableGateway +``` +Set-AzConnectedKubernetes -GatewayResourceId -InputObject + [-ContainerLogPath ] [-DisableAutoUpgrade] [-HttpProxy ] [-HttpsProxy ] [-NoProxy ] + [-ProxyCert ] [-SubscriptionId ] [-AcceptEULA] [-AzureHybridBenefit ] + [-ConfigurationProtectedSetting ] [-ConfigurationSetting ] + [-CustomLocationsOid ] [-Distribution ] [-DistributionVersion ] + [-Infrastructure ] [-KubeConfig ] [-KubeContext ] [-OidcIssuerProfileEnabled] + [-OidcIssuerProfileSelfHostedIssuerUrl ] [-PrivateLinkScopeResourceId ] + [-PrivateLinkState ] [-ProvisioningState ] [-Tag ] + [-WorkloadIdentityEnabled] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] ``` ### SetExpandedDisableGateway @@ -61,7 +74,21 @@ Set-AzConnectedKubernetes -ClusterName -ResourceGroupName -Dis [-ProxyCert ] [-SubscriptionId ] [-AcceptEULA] [-AzureHybridBenefit ] [-ConfigurationProtectedSetting ] [-ConfigurationSetting ] [-CustomLocationsOid ] [-Distribution ] [-DistributionVersion ] - [-GatewayResourceId ] [-Infrastructure ] [-KubeConfig ] [-KubeContext ] + [-Infrastructure ] [-KubeConfig ] [-KubeContext ] [-OidcIssuerProfileEnabled] + [-OidcIssuerProfileSelfHostedIssuerUrl ] [-PrivateLinkScopeResourceId ] + [-PrivateLinkState ] [-ProvisioningState ] [-Tag ] + [-WorkloadIdentityEnabled] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### SetExpandedEnableGateway +``` +Set-AzConnectedKubernetes -ClusterName -ResourceGroupName -GatewayResourceId + -Location [-ContainerLogPath ] [-DisableAutoUpgrade] [-HttpProxy ] [-HttpsProxy ] + [-NoProxy ] [-ProxyCert ] [-SubscriptionId ] [-AcceptEULA] + [-AzureHybridBenefit ] [-ConfigurationProtectedSetting ] + [-ConfigurationSetting ] [-CustomLocationsOid ] [-Distribution ] + [-DistributionVersion ] [-Infrastructure ] [-KubeConfig ] [-KubeContext ] [-OidcIssuerProfileEnabled] [-OidcIssuerProfileSelfHostedIssuerUrl ] [-PrivateLinkScopeResourceId ] [-PrivateLinkState ] [-ProvisioningState ] [-Tag ] [-WorkloadIdentityEnabled] @@ -69,11 +96,12 @@ Set-AzConnectedKubernetes -ClusterName -ResourceGroupName -Dis ``` ## DESCRIPTION -API to set properties of the connected cluster resource +API to set properties of the connected cluster resource. +Replaces all configuration of an existing connected cluster; any properties not specified will be reset to their default values. ## EXAMPLES -### Example 1: Disable gateway feature of a connected kubernetes. +### Example 1: Disable gateway for a connected Kubernetes cluster ```powershell Set-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -DisableGateway ``` @@ -84,11 +112,11 @@ Location Name ResourceGroupName eastus azps_test_cluster azps_test_group ``` -This command disable gateway feature of a connected kubernetes. +This command disable gateway feature of a connected kubernete cluster. -### Example 2: Enable gateway feature of connected kubernetes. +### Example 2: Enable gateway for a connected Kubernetes cluster ```powershell -Set-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -GatewayResourceId gatewayResourceId +Set-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -GatewayResourceId $gatewayResourceId ``` @@ -98,7 +126,74 @@ Location Name ResourceGroupName eastus azps_test_cluster azps_test_group ``` -This command disable gateway feature of a connected kubernetes. +This command enables gateway feature of a connected kubernetes cluster. + +### Example 3: Enable gateway for a connected Kubernetes cluster with InputObject +```powershell +# Get an existing cluster first +$inputObject = Get-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -SubscriptionId $subscriptionId +# Enable gateway and set gateway resource Id +$inputObject.GatewayEnabled=$true +$inputObject.GatewayResourceId=$gatewayResourceId +Set-AzConnectedKubernetes -InputObject $inputObject + +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps_test_cluster azps_test_group +``` + +This command enables gateway feature of a connected kubernetes cluster. + +### Example 4: Enable workload identity of a connected kubernetes cluster with InputObject +```powershell +# Get an existing cluster first +$inputObject = Get-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -SubscriptionId $subscriptionId +# Enable workload identity and OIDC issuer profile +$inputObject.WorkloadIdentityEnabled=$true +$inputObject.OidcIssuerProfileEnabled=$true +Set-AzConnectedKubernetes -InputObject $inputObject +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps_test_cluster azps_test_group +``` + +This command enables workload identity and OIDC Issuer Profile for a connected Kubernetes cluster + +### Example 5: Disable workload identity of a connected kubernetes cluster with InputOjbect +```powershell +# Get an existing cluster first +$inputObject = Get-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -SubscriptionId $subscriptionId +# Disable workload identity +$inputObject.WorkloadIdentityEnabled=$falue +Set-AzConnectedKubernetes -InputObject $inputObject +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps_test_cluster azps_test_group +``` + +This command disables workload identity of a connected kubernetes cluster + +### Example 6: Disable workload identity of a connected kubernetes cluster +```powershell +Get-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -SubscriptionId $subscriptionId | Set-AzConnectedKubernetes -WorkloadIdentityEnabled:$false +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps_test_cluster azps_test_group +``` + +This command disables workload identity of a connected kubernetes cluster ## PARAMETERS @@ -152,7 +247,7 @@ The name of the Kubernetes cluster on which get is called. ```yaml Type: System.String -Parameter Sets: SetExpanded, SetExpandedDisableGateway +Parameter Sets: SetExpanded, SetExpandedDisableGateway, SetExpandedEnableGateway Aliases: Name Required: True @@ -302,10 +397,10 @@ Arc Gateway resource Id, providing this will enable the gateway ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: SetEnableGateway, SetExpandedEnableGateway Aliases: -Required: False +Required: True Position: Named Default value: None Accept pipeline input: False @@ -362,13 +457,13 @@ To construct, see NOTES section for INPUTOBJECT properties and create a hash tab ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20240715Preview.IConnectedCluster -Parameter Sets: Set, SetDisableGateway +Parameter Sets: Set, SetDisableGateway, SetEnableGateway Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` @@ -407,7 +502,7 @@ The geo-location where the resource lives ```yaml Type: System.String -Parameter Sets: SetExpanded, SetExpandedDisableGateway +Parameter Sets: SetExpanded, SetExpandedDisableGateway, SetExpandedEnableGateway Aliases: Required: True @@ -543,7 +638,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: SetExpanded, SetExpandedDisableGateway +Parameter Sets: SetExpanded, SetExpandedDisableGateway, SetExpandedEnableGateway Aliases: Required: True @@ -584,7 +679,7 @@ Accept wildcard characters: False ``` ### -WorkloadIdentityEnabled -Whether to enable or disable the workload identity Webhook +Enable the workload identity Webhook ```yaml Type: System.Management.Automation.SwitchParameter @@ -634,6 +729,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS +### Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20240715Preview.IConnectedCluster + ## OUTPUTS ### Microsoft.Azure.PowerShell.Cmdlets.ConnectedKubernetes.Models.Api20240715Preview.IConnectedCluster diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/examples/Set-AzConnectedKubernetes.md b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/examples/Set-AzConnectedKubernetes.md index 05f2cf83ee5b..976afe73709d 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/examples/Set-AzConnectedKubernetes.md +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/examples/Set-AzConnectedKubernetes.md @@ -1,4 +1,4 @@ -### Example 1: Disable gateway feature of a connected kubernetes. +### Example 1: Disable gateway for a connected Kubernetes cluster ```powershell Set-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -DisableGateway ``` @@ -9,11 +9,11 @@ Location Name ResourceGroupName eastus azps_test_cluster azps_test_group ``` -This command disable gateway feature of a connected kubernetes. +This command disable gateway feature of a connected kubernete cluster. -### Example 2: Enable gateway feature of connected kubernetes. +### Example 2: Enable gateway for a connected Kubernetes cluster ```powershell -Set-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -GatewayResourceId gatewayResourceId +Set-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -Location eastus -GatewayResourceId $gatewayResourceId ``` @@ -23,5 +23,71 @@ Location Name ResourceGroupName eastus azps_test_cluster azps_test_group ``` -This command disable gateway feature of a connected kubernetes. +This command enables gateway feature of a connected kubernetes cluster. +### Example 3: Enable gateway for a connected Kubernetes cluster with InputObject +```powershell +# Get an existing cluster first +$inputObject = Get-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -SubscriptionId $subscriptionId +# Enable gateway and set gateway resource Id +$inputObject.GatewayEnabled=$true +$inputObject.GatewayResourceId=$gatewayResourceId +Set-AzConnectedKubernetes -InputObject $inputObject + +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps_test_cluster azps_test_group +``` + +This command enables gateway feature of a connected kubernetes cluster. + +### Example 4: Enable workload identity of a connected kubernetes cluster with InputObject +```powershell +# Get an existing cluster first +$inputObject = Get-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -SubscriptionId $subscriptionId +# Enable workload identity and OIDC issuer profile +$inputObject.WorkloadIdentityEnabled=$true +$inputObject.OidcIssuerProfileEnabled=$true +Set-AzConnectedKubernetes -InputObject $inputObject +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps_test_cluster azps_test_group +``` + +This command enables workload identity and OIDC Issuer Profile for a connected Kubernetes cluster + +### Example 5: Disable workload identity of a connected kubernetes cluster with InputOjbect +```powershell +# Get an existing cluster first +$inputObject = Get-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -SubscriptionId $subscriptionId +# Disable workload identity +$inputObject.WorkloadIdentityEnabled=$falue +Set-AzConnectedKubernetes -InputObject $inputObject +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps_test_cluster azps_test_group +``` + +This command disables workload identity of a connected kubernetes cluster + +### Example 6: Disable workload identity of a connected kubernetes cluster +```powershell +Get-AzConnectedKubernetes -ClusterName azps_test_cluster -ResourceGroupName azps_test_group -SubscriptionId $subscriptionId | Set-AzConnectedKubernetes -WorkloadIdentityEnabled:$false +``` + +```output +Location Name ResourceGroupName +-------- ---- ----------------- +eastus azps_test_cluster azps_test_group +``` + +This command disables workload identity of a connected kubernetes cluster \ No newline at end of file diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/test/New-AzConnectedKubernetes.Tests.ps1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/test/New-AzConnectedKubernetes.Tests.ps1 index 76c3449bff21..d8944054731c 100644 --- a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/test/New-AzConnectedKubernetes.Tests.ps1 +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/test/New-AzConnectedKubernetes.Tests.ps1 @@ -50,10 +50,13 @@ Describe 'Invoke-ConfigDPHealthCheck' { It 'Unhealthy (not 200 response)' { Mock Invoke-RestMethod { - $Script:StatusCode = 500 - return + Throw "Some error!" } - { Invoke-ConfigDPHealthCheck } | Should -Throw "Error while performing DP health check, StatusCode: 500" + # Actually expect the error message to be "Error while performing DP health check, StatusCode: $StatusCode" + # But we now Mock Invoke-RestMethod not Invoke-RestMethodWithUriParameters, and Invoke-RestMethod + # can only return unhealthy response with error thrown, which creates a terminating error and will be + # cauhgt by pester + { Invoke-ConfigDPHealthCheck } | Should -Throw Assert-MockCalled "Invoke-RestMethod" -Times 1 Assert-VerifiableMock } @@ -73,8 +76,6 @@ Describe 'Invoke-RestMethodWithUriParameters' { -Headers @{} ` -UriParameters $uriParameters ` -RequestBody @{} ` - -MaximumRetryCount 5 ` - -RetryIntervalSec 2 ` -StatusCodeVariable YesOrNo } | Should -Not -Throw Assert-MockCalled "Invoke-RestMethod" -Times 1 -ParameterFilter { $Uri.AbsoluteUri -eq "https://invalid.invalid/some/page/nowhere" } @@ -98,8 +99,6 @@ Describe 'Invoke-RestMethodWithUriParameters' { -Headers @{} ` -UriParameters $uriParameters ` -RequestBody @{} ` - -MaximumRetryCount 5 ` - -RetryIntervalSec 2 ` -StatusCodeVariable YesOrNo } | Should -Not -Throw Assert-MockCalled "Invoke-RestMethod" -Times 1 -ParameterFilter { $Uri.AbsoluteUri -eq "https://invalid.invalid/some/page/nowhere?key1=value1&key2=value2" } @@ -109,8 +108,7 @@ Describe 'Invoke-RestMethodWithUriParameters' { It 'request failed' { Mock Invoke-RestMethod { - $Script:StatusCode = 500 - return + throw "Some Error!" } { Invoke-RestMethodWithUriParameters ` @@ -119,12 +117,10 @@ Describe 'Invoke-RestMethodWithUriParameters' { -Headers @{} ` -UriParameters @{} ` -RequestBody @{} ` - -MaximumRetryCount 5 ` - -RetryIntervalSec 2 ` -StatusCodeVariable YesOrNo - } | Should -Not -Throw + } | Should -Throw "Error while issuing REST request: Some Error!" Assert-VerifiableMock - $YesOrNo | Should -Be 500 + $YesOrNo | Should -Be 400 } } @@ -327,17 +323,15 @@ Describe 'Get-HelmValuesFromConfigDP' { } id = "abcd" } - $rsp = $null Mock Invoke-RestMethod { - $Script:StatusCode = 500 - return $rsp + Throw "Some Error" } { $Script:helmValues = Get-HelmValuesFromConfigDP ` -ConfigDpEndpoint "https://helm.azure.com" ` -ReleaseTrainCustom $null ` -RequestBody $rq - } | Should -Throw "No content was found in helm registry path response, StatusCode: 500." + } | Should -Throw Assert-MockCalled "Invoke-RestMethod" -Times 1 Assert-VerifiableMock } @@ -381,7 +375,7 @@ Describe 'Get-HelmValuesFromConfigDP' { -ConfigDpEndpoint "https://helm.azure.com" ` -ReleaseTrainCustom $null ` -RequestBody $rq - } | Should -Throw "Error while fetching helm values from DP from JSON response: Failed!" + } | Should -Throw Assert-MockCalled "Invoke-RestMethod" -Times 1 Assert-VerifiableMock } @@ -410,8 +404,6 @@ Describe 'Get-HelmChartPath' { -Path $env:USERPROFILE ` -ChildPath ".azure" ` -AdditionalChildPath "AzureArcCharts", "azure-arc-k8sagents" - # Write-Error -Message "ChartPath: $ChartPath" -ErrorAction Continue - # Write-Error -Message "ExpectedChartPath: $ExpectedChartPath" -ErrorAction Continue $ChartPath | Should -eq $ExpectedChartPath } @@ -449,8 +441,6 @@ Describe 'Get-HelmChartPath' { -Path $env:USERPROFILE ` -ChildPath ".azure" ` -AdditionalChildPath "PreOnboardingChecksCharts", "azure-arc-k8sagents" - # Write-Error -Message "ChartPath: $ChartPath" -ErrorAction Continue - # Write-Error -Message "ExpectedChartPath: $ExpectedChartPath" -ErrorAction Continue $ChartPath | Should -eq $ExpectedChartPath $env:HELMCHART = $null } @@ -568,12 +558,6 @@ Describe 'Get-HelmChart' { -RegistryPath "SomePath:1.2.3" ` -ChartExportPath "c:\temp" ` -HelmClientLocation "fake-helm-client.exe" - # -KubeConfig ` - # -KubeContext ` - # -NewPath - # -ChartName = 'azure-arc-k8sagents' ` - # -RetryCount = 5 ` - # -RetryDelay = 3 } | Should -Not -Throw Assert-MockCalled "Invoke-ExternalCommand" -Times 3 Assert-VerifiableMock @@ -588,12 +572,6 @@ Describe 'Get-HelmChart' { -RegistryPath "SomePath:1.20.3" ` -ChartExportPath "c:\temp" ` -HelmClientLocation "fake-helm-client.exe" - # -KubeConfig ` - # -KubeContext ` - # -NewPath - # -ChartName = 'azure-arc-k8sagents' ` - # -RetryCount = 5 ` - # -RetryDelay = 3 } | Should -Throw "Unable to pull 'azure-arc-k8sagents' helm chart from the registry 'SomePath:1.20.3'." Assert-MockCalled "Invoke-ExternalCommand" -Times 5 Assert-VerifiableMock diff --git a/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/test/Set-HelmModulesAndRepository.Tests.ps1 b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/test/Set-HelmModulesAndRepository.Tests.ps1 new file mode 100644 index 000000000000..12a8a3da4f9c --- /dev/null +++ b/src/ConnectedKubernetes/ConnectedKubernetes.Autorest/test/Set-HelmModulesAndRepository.Tests.ps1 @@ -0,0 +1,21 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Set-HelmModulesAndRepository')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Set-HelmModulesAndRepository.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Set-HelmModulesAndRepository' { + It '__AllParameterSets' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} From 5ff1f9ad4c82cf1be9b14df90c5743134eb92ad4 Mon Sep 17 00:00:00 2001 From: alexathomases <55257302+alexathomases@users.noreply.github.com> Date: Mon, 28 Oct 2024 22:04:32 -0700 Subject: [PATCH 14/16] Change module name from Az.HealthDeidentification to Az.HealthDataAiServices (#26489) * Ai * Examples * Directives * Docs * Tests * Update README.md * Fix AI capitalization issue --------- Co-authored-by: Alexa Thomases --- .../.gitattributes | 1 + .../HealthDataAIServices.Autorest/.gitignore | 18 + .../Properties/AssemblyInfo.cs | 26 + .../HealthDataAIServices.Autorest/README.md | 80 ++ .../deidServices.json | 85 ++ .../custom/README.md | 41 + .../docs/Az.HealthDataAiServices.md | 25 + .../docs/Get-AzDeidService.md | 183 +++++ .../docs/New-AzDeidService.md | 345 +++++++++ .../docs/README.md | 11 + .../docs/Remove-AzDeidService.md | 209 +++++ .../docs/Update-AzDeidService.md | 316 ++++++++ .../examples/Get-AzDeidService.md | 45 ++ .../examples/New-AzDeidService.md | 61 ++ .../examples/Remove-AzDeidService.md | 6 + .../examples/Update-AzDeidService.md | 64 ++ .../HealthDataAIServices.Autorest/how-to.md | 58 ++ .../resources/README.md | 11 + .../test/Get-AzDeidService.Recording.json | 225 ++++++ .../test/Get-AzDeidService.Tests.ps1 | 48 ++ .../test/New-AzDeidService.Recording.json | 662 ++++++++++++++++ .../test/New-AzDeidService.Tests.ps1 | 42 + .../test/README.md | 17 + .../test/Remove-AzDeidService.Recording.json | 726 ++++++++++++++++++ .../test/Remove-AzDeidService.Tests.ps1 | 36 + .../test/Update-AzDeidService.Recording.json | 577 ++++++++++++++ .../test/Update-AzDeidService.Tests.ps1 | 38 + .../test/env.json | 13 + .../test/jsonConfigs/deidServiceJson.json | 6 + .../test/loadEnv.ps1 | 29 + .../test/utils.ps1 | 93 +++ .../utils/Get-SubscriptionIdTestSafe.ps1 | 7 + .../utils/Unprotect-SecureString.ps1 | 16 + 33 files changed, 4120 insertions(+) create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/.gitattributes create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/.gitignore create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/Properties/AssemblyInfo.cs create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/README.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/custom/README.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Az.HealthDataAiServices.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Get-AzDeidService.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/New-AzDeidService.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/README.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Remove-AzDeidService.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Update-AzDeidService.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Get-AzDeidService.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/New-AzDeidService.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Remove-AzDeidService.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Update-AzDeidService.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/how-to.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/resources/README.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Get-AzDeidService.Recording.json create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Get-AzDeidService.Tests.ps1 create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/New-AzDeidService.Recording.json create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/New-AzDeidService.Tests.ps1 create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/README.md create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Remove-AzDeidService.Recording.json create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Remove-AzDeidService.Tests.ps1 create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Update-AzDeidService.Recording.json create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Update-AzDeidService.Tests.ps1 create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/env.json create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/jsonConfigs/deidServiceJson.json create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/loadEnv.ps1 create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/test/utils.ps1 create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 create mode 100644 src/HealthDataAIServices/HealthDataAIServices.Autorest/utils/Unprotect-SecureString.ps1 diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/.gitattributes b/src/HealthDataAIServices/HealthDataAIServices.Autorest/.gitattributes new file mode 100644 index 000000000000..2125666142eb --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/.gitattributes @@ -0,0 +1 @@ +* text=auto \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/.gitignore b/src/HealthDataAIServices/HealthDataAIServices.Autorest/.gitignore new file mode 100644 index 000000000000..ccbe8d018341 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/.gitignore @@ -0,0 +1,18 @@ +bin +obj +.vs +generated +internal +exports +tools +custom/*.psm1 +custom/autogen-model-cmdlets +test/*-TestResults.xml +license.txt +/*.ps1 +/*.psd1 +/*.ps1xml +/*.psm1 +/*.snk +/*.csproj +/*.nuspec \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/Properties/AssemblyInfo.cs b/src/HealthDataAIServices/HealthDataAIServices.Autorest/Properties/AssemblyInfo.cs new file mode 100644 index 000000000000..94cb0309278c --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.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 - HealthDataAiServices")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("0.1.0.0")] +[assembly: System.Reflection.AssemblyVersionAttribute("0.1.0.0")] +[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] +[assembly: System.CLSCompliantAttribute(false)] \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/README.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/README.md new file mode 100644 index 000000000000..4df22090236e --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/README.md @@ -0,0 +1,80 @@ + +# Az.HealthDataAIServices +This directory contains the PowerShell module for the HealthDataAiServices service. + +--- +## Info +- Modifiable: yes +- Generated: all +- Committed: yes +- Packaged: yes + +--- +## Detail +This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. + +## Module Requirements +- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.7.5 or greater + +## Authentication +AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. + +## Development +For information on how to develop for `Az.HealthDataAIServices`, see [how-to.md](how-to.md). + + +### AutoRest Configuration +> see https://aka.ms/autorest + +```yaml +# pin the swagger version by using the commit id instead of branch name +commit: cde61328a54d392000b36882fec169fce5a983c1 +tag: package-2024-02-28-preview +require: +# readme.azure.noprofile.md is the common configuration file + - $(this-folder)/../../readme.azure.noprofile.md + - $(repo)/specification/healthdataaiservices/resource-manager/readme.md +# If the swagger has not been put in the repo, you may uncomment the following line and refer to it locally +# - (this-folder)/relative-path-to-your-local-readme.md + +try-require: + - $(repo)/specification/healthdataaiservices/resource-manager/readme.powershell.md + +# For new RP, the version is 0.1.0 +module-version: 0.1.0 +# Normally, title is the service name +title: HealthDataAIServices +subject-prefix: Deid +service-name: HealthDataAIServices + +# The next three configurations are exclusive to v3, and in v4, they are activated by default. If you are still using v3, please uncomment them. +# identity-correction-for-post: true +# resourcegroup-append: true +# nested-object-to-string: true + +directive: + # Following are common directives which are normally required in all the RPs + # 1. Remove the unexpanded parameter set + # 2. For New-* cmdlets, ViaIdentity is not required + # Following two directives are v4 specific + - where: + variant: ^(Create|Update)(?!.*?(Expanded|JsonFilePath|JsonString)) + remove: true + - where: + variant: ^CreateViaIdentity.*$ + remove: true + # Remove cmdlet for PrivateLink resource + - where: + subject: .*PrivateLink.* + remove: true + + # Follow directive is v3 specific. If you are using v3, uncomment following directive and comments out two directives above + #- where: + # variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ + # remove: true + + # Remove the set-* cmdlet + - where: + verb: Set + remove: true +``` diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json b/src/HealthDataAIServices/HealthDataAIServices.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json new file mode 100644 index 000000000000..fee91ca48a78 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json @@ -0,0 +1,85 @@ +{ + "resourceType": "deidServices", + "apiVersion": "2024-02-28-preview", + "learnMore": { + "url": "https://learn.microsoft.com/powershell/module/az.healthdataaiservices" + }, + "commands": [ + { + "name": "Get-AzDeidService", + "description": "Get a DeidService", + "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthDataAIServices/deidServices/{deidServiceName}", + "help": { + "learnMore": { + "url": "https://learn.microsoft.com/powershell/module/az.healthdataaiservices/get-azdeidservice" + }, + "parameterSets": [ + { + "parameters": [ + "-Name ", + "-ResourceGroupName ", + "[-SubscriptionId ]" + ] + } + ] + }, + "examples": [ + { + "description": "Get a DeidService", + "parameters": [ + { + "name": "-Name", + "value": "[Path.deidServiceName]" + }, + { + "name": "-ResourceGroupName", + "value": "[Path.resourceGroupName]" + }, + { + "name": "-SubscriptionId", + "value": "[Path.subscriptionId]" + } + ] + } + ] + }, + { + "name": "Remove-AzDeidService", + "description": "Delete a DeidService", + "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthDataAIServices/deidServices/{deidServiceName}", + "help": { + "learnMore": { + "url": "https://learn.microsoft.com/powershell/module/az.healthdataaiservices/remove-azdeidservice" + }, + "parameterSets": [ + { + "parameters": [ + "-Name ", + "-ResourceGroupName ", + "[-SubscriptionId ]" + ] + } + ] + }, + "examples": [ + { + "description": "Delete a DeidService", + "parameters": [ + { + "name": "-Name", + "value": "[Path.deidServiceName]" + }, + { + "name": "-ResourceGroupName", + "value": "[Path.resourceGroupName]" + }, + { + "name": "-SubscriptionId", + "value": "[Path.subscriptionId]" + } + ] + } + ] + } + ] +} diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/custom/README.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/custom/README.md new file mode 100644 index 000000000000..281325caef2c --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/custom/README.md @@ -0,0 +1,41 @@ +# Custom +This directory contains custom implementation for non-generated cmdlets for the `Az.HealthDataAIServices` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `../exports` folder. The only generated file into this folder is the `Az.HealthDataAIServices.custom.psm1`. This file should not be modified. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: yes + +## Details +For `Az.HealthDataAIServices` to use custom cmdlets, it does this two different ways. We **highly recommend** creating script cmdlets, as they are easier to write and allow access to the other exported cmdlets. C# cmdlets *cannot access exported cmdlets*. + +For C# cmdlets, they are compiled with the rest of the generated low-level cmdlets into the `./bin/Az.HealthDataAIServices.private.dll`. The names of the cmdlets (methods) and files must follow the `[cmdletName]_[variantName]` syntax used for generated cmdlets. The `variantName` is used as the `ParameterSetName`, so use something appropriate that doesn't clash with already created variant or parameter set names. You cannot use the `ParameterSetName` property in the `Parameter` attribute on C# cmdlets. Each cmdlet must be separated into variants using the same pattern as seen in the `generated/cmdlets` folder. + +For script cmdlets, these are loaded via the `Az.HealthDataAIServices.custom.psm1`. Then, during the build process, this module is loaded and processed in the same manner as the C# cmdlets. The fundamental difference is the script cmdlets use the `ParameterSetName` attribute and C# cmdlets do not. To create a script cmdlet variant of a generated cmdlet, simply decorate all parameters in the script with the new `ParameterSetName` in the `Parameter` attribute. This will appropriately treat each parameter set as a separate variant when processed to be exported during the build. + +## Purpose +This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `../exports` folder. + +## Usage +The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `../exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: +- Break +- DefaultProfile +- HttpPipelineAppend +- HttpPipelinePrepend +- Proxy +- ProxyCredential +- ProxyUseDefaultCredentials + +These provide functionality to our HTTP pipeline and other useful features. In script, you can forward these parameters using `$PSBoundParameters` to the other cmdlets you're calling within `Az.HealthDataAIServices`. For C#, follow the usage seen in the `ProcessRecordAsync` method. + +### Attributes +For processing the cmdlets, we've created some additional attributes: +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.DescriptionAttribute` + - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts. +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.DoNotExportAttribute` + - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.HealthDataAIServices`. +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.InternalExportAttribute` + - Used in C# cmdlets to route exported cmdlets to the `../internal`, which are *not exposed* by `Az.HealthDataAIServices`. For more information, see [README.md](../internal/README.md) in the `../internal` folder. +- `Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.ProfileAttribute` + - Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules. \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Az.HealthDataAiServices.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Az.HealthDataAiServices.md new file mode 100644 index 000000000000..62bb04b631c9 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Az.HealthDataAiServices.md @@ -0,0 +1,25 @@ +--- +Module Name: Az.HealthDataAIServices +Module Guid: 8bb9685c-14b3-42f7-8d1d-26a6fe1d48a0 +Download Help Link: https://learn.microsoft.com/powershell/module/az.healthdataaiservices +Help Version: 1.0.0.0 +Locale: en-US +--- + +# Az.HealthDataAIServices Module +## Description +Microsoft Azure PowerShell: HealthDataAiServices cmdlets + +## Az.HealthDataAIServices Cmdlets +### [Get-AzDeidService](Get-AzDeidService.md) +Get a DeidService + +### [New-AzDeidService](New-AzDeidService.md) +create a DeidService + +### [Remove-AzDeidService](Remove-AzDeidService.md) +Delete a DeidService + +### [Update-AzDeidService](Update-AzDeidService.md) +update a DeidService + diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Get-AzDeidService.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Get-AzDeidService.md new file mode 100644 index 000000000000..75182dc202e3 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Get-AzDeidService.md @@ -0,0 +1,183 @@ +--- +external help file: +Module Name: Az.HealthDataAIServices +online version: https://learn.microsoft.com/powershell/module/az.healthdataaiservices/get-azdeidservice +schema: 2.0.0 +--- + +# Get-AzDeidService + +## SYNOPSIS +Get a DeidService + +## SYNTAX + +### List (Default) +``` +Get-AzDeidService [-SubscriptionId ] [-DefaultProfile ] [] +``` + +### Get +``` +Get-AzDeidService -Name -ResourceGroupName [-SubscriptionId ] + [-DefaultProfile ] [] +``` + +### GetViaIdentity +``` +Get-AzDeidService -InputObject [-DefaultProfile ] + [] +``` + +### List1 +``` +Get-AzDeidService -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +Get a DeidService + +## EXAMPLES + +### Example 1: Get a De-identification Service resource by name +```powershell +Get-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService1 +IdentityPrincipalId : +IdentityTenantId : +IdentityType : None +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : azpwshDeidService1 +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Enabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://vebsefg7b9cackat.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 12:00:35 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 12:00:35 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Gets a De-identification Service by its name and the resource group it belongs to. + +### Example 2: List all De-identification Service resources in a resource group +```powershell +Get-AzDeidService -ResourceGroupName azpwsh-test-rg +``` + +```output +Location Name SystemDataCreatedAt SystemDataCreatedBy SystemDataCreatedByType SystemDataLastModifiedAt SystemDataLastModifiedBy SystemDataLastModifiedByType ResourceGroupName +-------- ---- ------------------- ------------------- ----------------------- ------------------------ ------------------------ ---------------------------- ----------------- +eastus2 azpwshDeidService1 10/21/2024 12:00:35 AM contoso@microsoft.com User 10/21/2024 12:00:35 AM contoso@microsoft.com User azpwsh-test-rg +eastus2 azpwshDeidService2 10/21/2024 12:01:06 AM contoso@microsoft.com User 10/21/2024 12:01:06 AM contoso@microsoft.com User azpwsh-test-rg +``` + +Lists all De-identification Service resources in the specified resource group. + +## PARAMETERS + +### -DefaultProfile +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 +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.Models.IHealthDataAiServicesIdentity +Parameter Sets: GetViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the deid service + +```yaml +Type: System.String +Parameter Sets: Get +Aliases: DeidServiceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Get, List1 +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. +The value must be an UUID. + +```yaml +Type: System.String[] +Parameter Sets: Get, List, List1 +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +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). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.Models.IHealthDataAiServicesIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.Models.IDeidService + +## NOTES + +## RELATED LINKS + diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/New-AzDeidService.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/New-AzDeidService.md new file mode 100644 index 000000000000..050d3bfc30a7 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/New-AzDeidService.md @@ -0,0 +1,345 @@ +--- +external help file: +Module Name: Az.HealthDataAIServices +online version: https://learn.microsoft.com/powershell/module/az.healthdataaiservices/new-azdeidservice +schema: 2.0.0 +--- + +# New-AzDeidService + +## SYNOPSIS +create a DeidService + +## SYNTAX + +### CreateExpanded (Default) +``` +New-AzDeidService -Name -ResourceGroupName -Location [-SubscriptionId ] + [-EnableSystemAssignedIdentity] [-PublicNetworkAccess ] [-Tag ] + [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzDeidService -Name -ResourceGroupName -JsonFilePath [-SubscriptionId ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzDeidService -Name -ResourceGroupName -JsonString [-SubscriptionId ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +create a DeidService + +## EXAMPLES + +### Example 1: Create a new De-identification Service resource +```powershell +New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -Location eastus2 -EnableSystemAssignedIdentity -PublicNetworkAccess "Disabled" +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa +IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 +IdentityType : SystemAssigned +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Creates a new De-identification Service resource in the specified resource group and location. + +### Example 2: Create a new De-identification Service resource from a JSON file +```powershell +New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -JsonFilePath path/to/json.json +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Creates a new De-identification Service resource with location and properties specified in the JSON file. + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableSystemAssignedIdentity +Decides if enable a system assigned identity for the resource. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +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 +``` + +### -Location +The geo-location where the resource lives + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the deid service + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: DeidServiceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PublicNetworkAccess +Gets or sets allow or disallow public network access to resource + +```yaml +Type: System.String +Parameter Sets: CreateExpanded +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. +The value must be an UUID. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +Resource tags. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: CreateExpanded +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 +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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). + +## INPUTS + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.Models.IDeidService + +## NOTES + +## RELATED LINKS + diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/README.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/README.md new file mode 100644 index 000000000000..cf74c21664d3 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/README.md @@ -0,0 +1,11 @@ +# Docs +This directory contains the documentation of the cmdlets for the `Az.HealthDataAIServices` module. To run documentation generation, use the `generate-help.ps1` script at the root module folder. Files in this folder will *always be overridden on regeneration*. To update documentation examples, please use the `../examples` folder. + +## Info +- Modifiable: no +- Generated: all +- Committed: yes +- Packaged: yes + +## Details +The process of documentation generation loads `Az.HealthDataAIServices` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `../exports` folder. Additionally, when writing custom cmdlets in the `../custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `../examples` folder. \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Remove-AzDeidService.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Remove-AzDeidService.md new file mode 100644 index 000000000000..12f8882bd537 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Remove-AzDeidService.md @@ -0,0 +1,209 @@ +--- +external help file: +Module Name: Az.HealthDataAIServices +online version: https://learn.microsoft.com/powershell/module/az.healthdataaiservices/remove-azdeidservice +schema: 2.0.0 +--- + +# Remove-AzDeidService + +## SYNOPSIS +Delete a DeidService + +## SYNTAX + +### Delete (Default) +``` +Remove-AzDeidService -Name -ResourceGroupName [-SubscriptionId ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +### DeleteViaIdentity +``` +Remove-AzDeidService -InputObject [-DefaultProfile ] [-AsJob] + [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Delete a DeidService + +## EXAMPLES + +### Example: Remove a De-identification Service resource by name +```powershell +Remove-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +``` + +Deletes the specifies De-identification Service resource. + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.Models.IHealthDataAiServicesIdentity +Parameter Sets: DeleteViaIdentity +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the deid service + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: DeidServiceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. +The value must be an UUID. + +```yaml +Type: System.String +Parameter Sets: Delete +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.Models.IHealthDataAiServicesIdentity + +## OUTPUTS + +### System.Boolean + +## NOTES + +## RELATED LINKS + diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Update-AzDeidService.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Update-AzDeidService.md new file mode 100644 index 000000000000..b680d38be023 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/docs/Update-AzDeidService.md @@ -0,0 +1,316 @@ +--- +external help file: +Module Name: Az.HealthDataAIServices +online version: https://learn.microsoft.com/powershell/module/az.healthdataaiservices/update-azdeidservice +schema: 2.0.0 +--- + +# Update-AzDeidService + +## SYNOPSIS +update a DeidService + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzDeidService -Name -ResourceGroupName [-SubscriptionId ] + [-EnableSystemAssignedIdentity ] [-PublicNetworkAccess ] [-Tag ] + [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] + [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzDeidService -InputObject [-EnableSystemAssignedIdentity ] + [-PublicNetworkAccess ] [-Tag ] [-UserAssignedIdentity ] + [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +update a DeidService + +## EXAMPLES + +### Example 1: Update a De-identification service to create a System Assigned Managed Identity +```powershell +Update-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $true +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa +IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 +IdentityType : SystemAssigned +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 6:56:12 PM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Updates an existing De-identification service to create a System Assigned Managed Identity. + +### Example 2: Update the public network access and tags of a De-identification service +```powershell +Update-AzDeidService -Name azpwshDeidService2 -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $false -PublicNetworkAccess "Enabled" -Tag @{ AzPwshTestKey = "AzPwshTestValue" } +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService2 +IdentityPrincipalId : +IdentityTenantId : +IdentityType : None +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : azpwshDeidService2 +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Enabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://f4cag7feawaubgbv.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 12:01:06 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:43:35 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + "AzPwshTestKey": "AzPwshTestValue" + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Update a De-identification Service by enabling public network access, removing the System Assigned Managed Identity and adding tags. + +## PARAMETERS + +### -AsJob +Run the command as a job + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableSystemAssignedIdentity +Decides if enable a system assigned identity for the resource. + +```yaml +Type: System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.Models.IHealthDataAiServicesIdentity +Parameter Sets: UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The name of the deid service + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: DeidServiceName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoWait +Run the command asynchronously + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PublicNetworkAccess +Gets or sets allow or disallow public network access to resource + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +The name of the resource group. +The name is case insensitive. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. +The value must be an UUID. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tag +Resource tags. + +```yaml +Type: System.Collections.Hashtable +Parameter Sets: (All) +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: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +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). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.Models.IHealthDataAiServicesIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.HealthDataAIServices.Models.IDeidService + +## NOTES + +## RELATED LINKS + diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Get-AzDeidService.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Get-AzDeidService.md new file mode 100644 index 000000000000..045fbb69a013 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Get-AzDeidService.md @@ -0,0 +1,45 @@ +### Example 1: Get a De-identification Service resource by name +```powershell +Get-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService1 +IdentityPrincipalId : +IdentityTenantId : +IdentityType : None +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : azpwshDeidService1 +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Enabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://vebsefg7b9cackat.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 12:00:35 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 12:00:35 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Gets a De-identification Service by its name and the resource group it belongs to. + +### Example 2: List all De-identification Service resources in a resource group +```powershell +Get-AzDeidService -ResourceGroupName azpwsh-test-rg +``` + +```output +Location Name SystemDataCreatedAt SystemDataCreatedBy SystemDataCreatedByType SystemDataLastModifiedAt SystemDataLastModifiedBy SystemDataLastModifiedByType ResourceGroupName +-------- ---- ------------------- ------------------- ----------------------- ------------------------ ------------------------ ---------------------------- ----------------- +eastus2 azpwshDeidService1 10/21/2024 12:00:35 AM contoso@microsoft.com User 10/21/2024 12:00:35 AM contoso@microsoft.com User azpwsh-test-rg +eastus2 azpwshDeidService2 10/21/2024 12:01:06 AM contoso@microsoft.com User 10/21/2024 12:01:06 AM contoso@microsoft.com User azpwsh-test-rg +``` + +Lists all De-identification Service resources in the specified resource group. \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/New-AzDeidService.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/New-AzDeidService.md new file mode 100644 index 000000000000..1cab5e67522c --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/New-AzDeidService.md @@ -0,0 +1,61 @@ + +### Example 1: Create a new De-identification Service resource +```powershell +New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -Location eastus2 -EnableSystemAssignedIdentity -PublicNetworkAccess "Disabled" +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa +IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 +IdentityType : SystemAssigned +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Creates a new De-identification Service resource in the specified resource group and location. + +### Example 2: Create a new De-identification Service resource from a JSON file +```powershell +New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -JsonFilePath path/to/json.json +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Creates a new De-identification Service resource with location and properties specified in the JSON file. \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Remove-AzDeidService.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Remove-AzDeidService.md new file mode 100644 index 000000000000..b4f4c2ea4856 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Remove-AzDeidService.md @@ -0,0 +1,6 @@ +### Example: Remove a De-identification Service resource by name +```powershell +Remove-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg +``` + +Deletes the specifies De-identification Service resource. \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Update-AzDeidService.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Update-AzDeidService.md new file mode 100644 index 000000000000..1c0a3de6efde --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/examples/Update-AzDeidService.md @@ -0,0 +1,64 @@ +### Example 1: Update a De-identification service to create a System Assigned Managed Identity +```powershell +Update-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $true +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService +IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa +IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 +IdentityType : SystemAssigned +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : myHealthDeidService +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Disabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 5:26:15 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 6:56:12 PM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Updates an existing De-identification service to create a System Assigned Managed Identity. + +### Example 2: Update the public network access and tags of a De-identification service +```powershell +Update-AzDeidService -Name azpwshDeidService2 -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $false -PublicNetworkAccess "Enabled" -Tag @{ AzPwshTestKey = "AzPwshTestValue" } +``` + +```output +Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService2 +IdentityPrincipalId : +IdentityTenantId : +IdentityType : None +IdentityUserAssignedIdentity : { + } +Location : eastus2 +Name : azpwshDeidService2 +PrivateEndpointConnection : +ProvisioningState : Succeeded +PublicNetworkAccess : Enabled +ResourceGroupName : azpwsh-test-rg +ServiceUrl : https://f4cag7feawaubgbv.api.eus2001.deid.azure.com +SystemDataCreatedAt : 10/21/2024 12:01:06 AM +SystemDataCreatedBy : contoso@microsoft.com +SystemDataCreatedByType : User +SystemDataLastModifiedAt : 10/21/2024 5:43:35 AM +SystemDataLastModifiedBy : contoso@microsoft.com +SystemDataLastModifiedByType : User +Tag : { + "AzPwshTestKey": "AzPwshTestValue" + } +Type : microsoft.healthdataaiservices/deidservices +``` + +Update a De-identification Service by enabling public network access, removing the System Assigned Managed Identity and adding tags. \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/how-to.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/how-to.md new file mode 100644 index 000000000000..b4a21f61e83e --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/how-to.md @@ -0,0 +1,58 @@ +# How-To +This document describes how to develop for `Az.HealthDataAIServices`. + +## Building `Az.HealthDataAIServices` +To build, run the `build-module.ps1` at the root of the module directory. This will generate the proxy script cmdlets that are the cmdlets being exported by this module. After the build completes, the proxy script cmdlets will be output to the `exports` folder. To read more about the proxy script cmdlets, look at the [README.md](exports/README.md) in the `exports` folder. + +## Creating custom cmdlets +To add cmdlets that were not generated by the REST specification, use the `custom` folder. This folder allows you to add handwritten `.ps1` and `.cs` files. Currently, we support using `.ps1` scripts as new cmdlets or as additional low-level variants (via `ParameterSet`), and `.cs` files as low-level (variants) cmdlets that the exported script cmdlets call. We do not support exporting any `.cs` (dll) cmdlets directly. To read more about custom cmdlets, look at the [README.md](custom/README.md) in the `custom` folder. + +## Generating documentation +To generate documentation, the process is now integrated into the `build-module.ps1` script. If you don't want to run this process as part of `build-module.ps1`, you can provide the `-NoDocs` switch. If you want to run documentation generation after the build process, you may still run the `generate-help.ps1` script. Overall, the process will look at the documentation comments in the generated and custom cmdlets and types, and create `.md` files into the `docs` folder. Additionally, this pulls in any examples from the `examples` folder and adds them to the generated help markdown documents. To read more about examples, look at the [README.md](examples/README.md) in the `examples` folder. To read more about documentation, look at the [README.md](docs/README.md) in the `docs` folder. + +## Testing `Az.HealthDataAIServices` +To test the cmdlets, we use [Pester](https://github.com/pester/Pester). Tests scripts (`.ps1`) should be added to the `test` folder. To execute the Pester tests, run the `test-module.ps1` script. This will run all tests in `playback` mode within the `test` folder. To read more about testing cmdlets, look at the [README.md](examples/README.md) in the `examples` folder. + +## Packing `Az.HealthDataAIServices` +To pack `Az.HealthDataAIServices` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://learn.microsoft.com/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team. + +## Module Script Details +There are multiple scripts created for performing different actions for developing `Az.HealthDataAIServices`. +- `build-module.ps1` + - Builds the module DLL (`./bin/Az.HealthDataAIServices.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `./Az.HealthDataAIServices.psd1` with Azure profile information. + - **Parameters**: [`Switch` parameters] + - `-Run`: After building, creates an isolated PowerShell session and loads `Az.HealthDataAIServices`. + - `-Test`: After building, runs the `Pester` tests defined in the `test` folder. + - `-Docs`: After building, generates the Markdown documents for the modules into the `docs` folder. + - `-Pack`: After building, packages the module into a `.nupkg`. + - `-Code`: After building, opens a VSCode window with the module's directory and runs (see `-Run`) the module. + - `-Release`: Builds the module in `Release` configuration (as opposed to `Debug` configuration). + - `-NoDocs`: Supresses writing the documentation markdown files as part of the cmdlet exporting process. + - `-Debugger`: Used when attaching the debugger in Visual Studio to the PowerShell session, and running the build process without recompiling the DLL. This suppresses running the script as an isolated process. +- `run-module.ps1` + - Creates an isolated PowerShell session and loads `Az.HealthDataAIServices` into the session. + - Same as `-Run` in `build-module.ps1`. + - **Parameters**: [`Switch` parameters] + - `-Code`: Opens a VSCode window with the module's directory. + - Same as `-Code` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. +- `test-module.ps1` + - Runs the `Pester` tests defined in the `test` folder. + - Same as `-Test` in `build-module.ps1`. +- `pack-module.ps1` + - Packages the module into a `.nupkg` for distribution. + - Same as `-Pack` in `build-module.ps1`. +- `generate-help.ps1` + - Generates the Markdown documents for the modules into the `docs` folder. + - Same as `-Docs` in `build-module.ps1`. + - This process is now integrated into `build-module.ps1` automatically. To disable, use `-NoDocs` when running `build-module.ps1`. +- `export-surface.ps1` + - Generates Markdown documents for both the cmdlet surface and the model (class) surface of the module. + - These files are placed into the `resources` folder. + - Used for investigating the surface of your module. These are *not* documentation for distribution. +- `check-dependencies.ps1` + - Used in `run-module.ps1` and `test-module.ps1` to verify dependent modules are available to run those tasks. + - It will download local (within the module's directory structure) versions of those modules as needed. + - This script *does not* need to be ran by-hand. \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/resources/README.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/resources/README.md new file mode 100644 index 000000000000..736492341e3d --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.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/HealthDataAIServices/HealthDataAIServices.Autorest/test/Get-AzDeidService.Recording.json b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Get-AzDeidService.Recording.json new file mode 100644 index 000000000000..0883a81db107 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Get-AzDeidService.Recording.json @@ -0,0 +1,225 @@ +{ + "Get-AzDeidService+[NoContext]+List+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "22" ], + "x-ms-client-request-id": [ "91a08342-2a87-4789-b214-5239ccfd4342" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-original-request-ids": [ "c2a1d2fe-2362-42e6-89fd-7ef2cd26f484", "65e85970-a45d-44f4-9866-c365ece7ef7c", "0138b739-95be-4067-84e9-a48c64cb6aa8", "69981e72-a657-40a1-ad25-806ccd393b54", "d74e219e-6ed4-4e15-a973-f33d4435941a", "b7c0d8cf-5e66-4a5f-9eaf-bb2c77b822dd", "64a425ae-6a62-465a-a57e-3e70e803a00a", "1abec152-d400-4493-abdb-a8004769d6ca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-request-id": [ "ddc71a22-b2eb-4514-849c-d5f7ed3905f9" ], + "x-ms-correlation-request-id": [ "ddc71a22-b2eb-4514-849c-d5f7ed3905f9" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T222901Z:ddc71a22-b2eb-4514-849c-d5f7ed3905f9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 16B84F96C6C747EF9FA7C4365960CE53 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:29:00Z" ], + "Date": [ "Fri, 25 Oct 2024 22:29:00 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "441251" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8b3445a3-66e1-4f46-b\",\"name\":\"Test8b3445a3-66e1-4f46-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T15:44:03.6480108Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T15:44:03.6480108Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h7b4hxehbchtf2at.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5cf9363c-c402-4651-9\",\"name\":\"Test5cf9363c-c402-4651-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T15:54:03.5592076Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T15:54:03.5592076Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8cfd3dpe0hgdhev.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test67777892-f34f-42a1-a\",\"name\":\"Test67777892-f34f-42a1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T16:54:03.7993255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T16:54:03.7993255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b2a5frcdaph0endu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6c3a47dc-3080-403f-a\",\"name\":\"Test6c3a47dc-3080-403f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T17:04:04.4150641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T17:04:04.4150641Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b0dhe5cgctagemez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa5ecd3c1-ec0f-4876-9\",\"name\":\"Testa5ecd3c1-ec0f-4876-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T18:35:19.7507449Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:49:57.6127233Z\"},\"identity\":{\"principalId\":\"f346e0d5-5aa4-4f16-aa68-42934e5de67c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fwdwg7ecd8b3hqbb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test33b3e1ec-6107-4e50-8\",\"name\":\"Test33b3e1ec-6107-4e50-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T21:24:04.8223969Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T21:24:04.8223969Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hjh3d0g8g4fka9h7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a5392dd-790e-4ce2-b\",\"name\":\"Test7a5392dd-790e-4ce2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T21:34:04.5725778Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T21:34:04.5725778Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3gffebcfwegbrhu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf463ecca-53a7-4f6a-a\",\"name\":\"Testf463ecca-53a7-4f6a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T22:34:04.5563856Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T22:34:04.5563856Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bvhzb3g3g6guc4es.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test465ab8ce-688b-4413-9\",\"name\":\"Test465ab8ce-688b-4413-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T23:05:19.2592465Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:49:59.5223636Z\"},\"identity\":{\"principalId\":\"0bc19699-0f82-474b-b0fb-3324c24d77be\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://drh2agfyefczfthm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e7fba18-0942-4233-a\",\"name\":\"Test5e7fba18-0942-4233-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T06:24:06.2187878Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T06:24:06.2187878Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0fvchf7b5echzd6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9650ee05-5865-4343-b\",\"name\":\"Test9650ee05-5865-4343-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T07:24:05.6036751Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T07:24:05.6036751Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f5f6g6gadxcyfac5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test56f0398b-ce2e-4ba6-a\",\"name\":\"Test56f0398b-ce2e-4ba6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T20:44:07.732736Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T20:44:07.732736Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bjbmaff9bngfbjg2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdd9de45f-94f7-4721-b\",\"name\":\"Testdd9de45f-94f7-4721-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T00:55:23.5509592Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:28.5078351Z\"},\"identity\":{\"principalId\":\"f3cedb7e-8fd9-4917-a0ad-508c36399bff\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g5c4ghgjajcsffdy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbae1b7b5-fbbe-4243-a\",\"name\":\"Testbae1b7b5-fbbe-4243-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T09:55:24.5542831Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:30.2158476Z\"},\"identity\":{\"principalId\":\"fa466f94-3dbe-488f-9908-1ae510fa0718\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://btdgfgffeqf8hfam.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadd5435b-cc26-43fb-b\",\"name\":\"Testadd5435b-cc26-43fb-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T11:05:25.7167001Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:30.8115536Z\"},\"identity\":{\"principalId\":\"a3c8a647-185b-4fc2-8e87-770db3561e77\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5fac3e7gvbrbre5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8314a48b-97b3-4e9a-8\",\"name\":\"Test8314a48b-97b3-4e9a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T12:05:26.1936541Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:31.3584383Z\"},\"identity\":{\"principalId\":\"588de316-33ff-4914-a47a-9152e514e4d2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dfhucwhnhwh9ggbj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1a4ed21-cd5e-4948-a\",\"name\":\"Teste1a4ed21-cd5e-4948-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T06:55:34.9426332Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:33.6608297Z\"},\"identity\":{\"principalId\":\"00c399d8-7a5a-4508-a85e-da88a67acabf\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c8dyegbgbvcrhzht.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testeb4614b8-1a4e-4d05-9\",\"name\":\"Testeb4614b8-1a4e-4d05-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T07:05:34.7114373Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:34.2817688Z\"},\"identity\":{\"principalId\":\"4be5647d-80af-4044-b75e-04fa2da36c13\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aub2c8gec4aphphs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test593259f4-40e6-458a-8\",\"name\":\"Test593259f4-40e6-458a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T07:34:19.7404327Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T07:34:19.7404327Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bte2c9c8bzgsbfcs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test32674fcc-1bbc-42b9-a\",\"name\":\"Test32674fcc-1bbc-42b9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T08:44:20.0737467Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T08:44:20.0737467Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7d4c5fpdbcqfee0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa56e8022-df18-4406-a\",\"name\":\"Testa56e8022-df18-4406-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T09:25:35.0244097Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:34.6914264Z\"},\"identity\":{\"principalId\":\"d40d6dd4-3ee7-47cc-a1df-5e843dff46c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huh5e2bja7b4hvdt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb9987768-d6b1-45d2-a\",\"name\":\"Testb9987768-d6b1-45d2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T10:14:20.2693472Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T10:14:20.2693472Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d2ceg2drf4ambea0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf209e3a0-c445-4f53-b\",\"name\":\"Testf209e3a0-c445-4f53-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T10:54:20.2592306Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T10:54:20.2592306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://exgyc5hrdeg8b0ca.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste83299b4-3af3-46d4-b\",\"name\":\"Teste83299b4-3af3-46d4-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T11:25:36.4872367Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:39.8407735Z\"},\"identity\":{\"principalId\":\"a88238d9-d06f-4a91-9629-75db4e9aede9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0cwerffhpatb7aa.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test548883fc-610e-42a0-b\",\"name\":\"Test548883fc-610e-42a0-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T14:45:35.6917131Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:40.4624112Z\"},\"identity\":{\"principalId\":\"a227c313-5fbf-4510-8ea5-28be7d26425c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkh5e5a0cbg5cah9.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoneastus\",\"name\":\"jovinsoneastus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T16:21:32.2088677Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T00:03:41.9236289Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a9dua3ezhee5bahz.api.eus001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.Network/privateEndpoints/jovinsoneastys-pl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoneastus/privateEndpointConnections/jovinsoneastys-pl.0715aad2-a357-49ab-9909-c383bb40227d\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testeuspl\",\"name\":\"testeuspl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T17:05:34.7131699Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-28T17:05:34.7131699Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f2hbb3cucbddf8aq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testeuspl/privateEndpointConnections/petest.3e208034-9539-4be2-ad91-3bd069acae2d\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/petest\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg_dev_leakassab/providers/microsoft.healthdataaiservices/deidservices/deid-leakassab\",\"name\":\"deid-leakassab\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"leakassab@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T23:48:44.2725718Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:41.0083465Z\"},\"identity\":{\"principalId\":\"71b89795-6f5b-4903-b422-bab5e5f00d92\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfdsagcygshmehgu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test346052ed-6f6d-4b33-9\",\"name\":\"Test346052ed-6f6d-4b33-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T02:15:37.3172628Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:41.6262298Z\"},\"identity\":{\"principalId\":\"79aa25ec-b034-4b94-b017-6f05cbeee79f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gzf9d0araqh8ethr.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test38a886c3-2c32-415a-8\",\"name\":\"Test38a886c3-2c32-415a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T02:44:22.3535798Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T02:44:22.3535798Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bxcmdwakd7e7amb3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa03107f2-b261-4205-a\",\"name\":\"Testa03107f2-b261-4205-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T03:15:37.2240475Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:42.120944Z\"},\"identity\":{\"principalId\":\"a7352424-7276-492e-a536-ba8da71f93c7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://czaeekhjbegkbpc4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test77c49e23-6752-4c01-8\",\"name\":\"Test77c49e23-6752-4c01-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T06:45:39.1518773Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:42.6853523Z\"},\"identity\":{\"principalId\":\"856eb24c-d56f-425e-8f30-325db7e44891\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fuh0dwceauavetcm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb1361529-e78c-493f-a\",\"name\":\"Testb1361529-e78c-493f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T07:14:21.9690027Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T07:14:21.9690027Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ceeud9e5e6cnhhg6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0d42fb2-8f09-4b56-8\",\"name\":\"Testb0d42fb2-8f09-4b56-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T09:34:22.9446904Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T09:34:22.9446904Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gthcf0ccf8abaug3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test50226ab8-4a1b-41a4-a\",\"name\":\"Test50226ab8-4a1b-41a4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T09:55:39.5586516Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:43.1935443Z\"},\"identity\":{\"principalId\":\"e523578b-c28b-479b-8982-dd6eab50a128\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cphhf7bcg0hgfyg5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testda699e13-07bf-4a2f-8\",\"name\":\"Testda699e13-07bf-4a2f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T11:05:39.0788447Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:43.7351515Z\"},\"identity\":{\"principalId\":\"6e9d8013-482e-4992-b7d1-5d3bc0620c0e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfb2dbh3ghgjf9du.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd5d747c3-4c6d-4b15-b\",\"name\":\"Testd5d747c3-4c6d-4b15-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T14:04:23.8875945Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T14:04:23.8875945Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buateag2cjhfd2bw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.HealthDataAIServices/DeidServices/testing\",\"name\":\"testing\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"msoennichsen@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-29T22:10:02.2149644Z\",\"lastModifiedBy\":\"msoennichsen@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-29T22:10:02.2149644Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://akbcbhd4gpg8h5au.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc27dd89d-23d9-4a3c-9\",\"name\":\"Testc27dd89d-23d9-4a3c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T01:14:24.8592454Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T01:14:24.8592454Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fta2epatd3f4edez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ac675c0-e685-4299-9\",\"name\":\"Test5ac675c0-e685-4299-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T02:14:25.1933926Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T02:14:25.1933926Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3c9f7bjcud9e5ej.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testafe81e7c-7562-42ca-a\",\"name\":\"Testafe81e7c-7562-42ca-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T02:35:41.7566493Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:44.3316408Z\"},\"identity\":{\"principalId\":\"36af6e12-6c87-4b5b-af8e-c39ed6770d3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dedbcng9cpakfraf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92a71375-aaf6-49e3-b\",\"name\":\"Test92a71375-aaf6-49e3-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T07:54:25.6861814Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T07:54:25.6861814Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g4hzcqa4gmbvcdbx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test58bfd760-aa80-4662-a\",\"name\":\"Test58bfd760-aa80-4662-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T08:05:41.0908656Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:44.7808303Z\"},\"identity\":{\"principalId\":\"c0776d81-7979-4cc7-8d3d-281c6ac53d09\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g3bpbegcedggb5g9.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3520cf4b-8f9e-4a29-9\",\"name\":\"Test3520cf4b-8f9e-4a29-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T11:14:26.0450757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T11:14:26.0450757Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f7a8cfgxevcvgdde.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa525cb10-6ce0-4db0-a\",\"name\":\"Testa525cb10-6ce0-4db0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T11:34:29.647141Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-31T11:34:29.647141Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e5ejebe3h0a6bbgk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test76d1ddd8-dfba-4f18-a\",\"name\":\"Test76d1ddd8-dfba-4f18-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T12:35:45.3195802Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:52.7162847Z\"},\"identity\":{\"principalId\":\"a994b509-4be4-478d-a5f3-b5c931117bda\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://asgycvf0d4fnanh3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf243d998-0518-41c2-a\",\"name\":\"Testf243d998-0518-41c2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T14:45:46.3399087Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:53.378961Z\"},\"identity\":{\"principalId\":\"79acc55a-8910-447e-9ca4-7bb7245c4b7a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hud9ekavapf3fwet.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9b988de0-5d15-499d-b\",\"name\":\"Test9b988de0-5d15-499d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T21:35:46.652731Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:53.973208Z\"},\"identity\":{\"principalId\":\"4dc65534-be35-4dce-b14a-becd8eae7e45\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c2ecgfbvcec4h8h2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcea94dc1-27af-4ad2-b\",\"name\":\"Testcea94dc1-27af-4ad2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T21:44:31.3114152Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-31T21:44:31.3114152Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7g6hfhshac7ewfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test418fe284-34c6-4a5c-9\",\"name\":\"Test418fe284-34c6-4a5c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T01:46:20.8617847Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T01:46:20.8617847Z\"},\"identity\":{\"principalId\":\"2847d5db-8407-4666-a2b5-ca5e27ea985b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aedda6aeazemepcj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2dec70a3-a4c4-4883-b\",\"name\":\"Test2dec70a3-a4c4-4883-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T04:55:05.9148319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T04:55:05.9148319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adhcg7bvb2h0d9hn.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test25769ffe-af47-45e0-9\",\"name\":\"Test25769ffe-af47-45e0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T04:56:22.1680743Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T04:56:22.1680743Z\"},\"identity\":{\"principalId\":\"31ff749c-ccc2-4906-ba3e-130dc99dc112\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a6fkftadd6cngpgt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb770ec70-1ff0-400b-b\",\"name\":\"Testb770ec70-1ff0-400b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T05:05:06.2580805Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T05:05:06.2580805Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fqfdcwa8bdg9dpcf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa801711d-f24d-4021-9\",\"name\":\"Testa801711d-f24d-4021-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-11T08:21:51.2658018Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-11T08:21:51.2658018Z\"},\"identity\":{\"principalId\":\"4c0557c9-ac85-4a1e-a3b2-da80eaf232d0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hqfcebgqb2a9dpaj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d288a28-4ed9-4177-b\",\"name\":\"Test5d288a28-4ed9-4177-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-17T18:15:30.2225705Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-17T18:15:30.2225705Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b8erb8byenfrg3fz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0917\",\"name\":\"test0917\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-17T18:20:24.8225773Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-17T18:20:24.8225773Z\"},\"identity\":{\"principalId\":\"4356292b-b98b-4d57-8fb8-8a149f31076a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fzasaceeanhedmhx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste3bb74fd-54a0-43db-a\",\"name\":\"Teste3bb74fd-54a0-43db-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T03:05:30.9577748Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T03:05:30.9577748Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ctdkachwcxaaf3bq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test915bd3e8-6945-4cf7-8\",\"name\":\"Test915bd3e8-6945-4cf7-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T06:16:46.6190316Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T06:16:46.6190316Z\"},\"identity\":{\"principalId\":\"0f63741b-9549-4df4-bdb5-e5aea428c470\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fqd2e8d8gqabc9ea.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd2c2822f-0379-4665-9\",\"name\":\"Testd2c2822f-0379-4665-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-19T14:15:38.3720649Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T14:15:38.3720649Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g0dya4hgc5gdfvcy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8d133811-e76b-4db9-a\",\"name\":\"Test8d133811-e76b-4db9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-23T15:17:06.0218185Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-23T15:17:06.0218185Z\"},\"identity\":{\"principalId\":\"750ef212-1043-4b5c-bf84-cdffced37da4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efhngqgcgcaca6bk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4308f593-0f10-4553-a\",\"name\":\"Test4308f593-0f10-4553-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:22:54.5595634Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:22:54.5595634Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://arezb5craxe6gbha.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9e73f0f6-7db9-4ac8-9\",\"name\":\"Test9e73f0f6-7db9-4ac8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:24:08.8116625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:24:08.8116625Z\"},\"identity\":{\"principalId\":\"7cf3259b-a8ea-4c3e-8886-28ac2a046be7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hdevcghfgedmfyfe.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test89c36db5-af20-49a1-8\",\"name\":\"Test89c36db5-af20-49a1-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:44:07.7172255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:44:07.7172255Z\"},\"identity\":{\"principalId\":\"a3c355dd-459a-4f7c-8775-e4690538aaac\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fea5gcgecue6g3eb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf4d421c7-8c39-4e7b-8\",\"name\":\"Testf4d421c7-8c39-4e7b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:54:08.5925421Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:54:08.5925421Z\"},\"identity\":{\"principalId\":\"feace456-c589-4ab9-9354-0d5b73a7b17d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bndjbyg2a9deaefs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc83ede2e-21ee-4098-b\",\"name\":\"Testc83ede2e-21ee-4098-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:55:51.8042721Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:55:51.8042721Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a8b0bcaee6c3ekhd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test580f898a-49e6-4ff2-9\",\"name\":\"Test580f898a-49e6-4ff2-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:02:53.9674657Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:02:53.9674657Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eyacejfbanfqejgg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfc4c3949-7578-44b6-9\",\"name\":\"Testfc4c3949-7578-44b6-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:04:08.4179249Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:04:08.4179249Z\"},\"identity\":{\"principalId\":\"dbe1c3c1-b6ce-4650-a8c1-aabe45ccbfe1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dgbab5dehqayd0h8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3c33ceb3-6fca-4d3a-b\",\"name\":\"Test3c33ceb3-6fca-4d3a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:05:52.384128Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:05:52.384128Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fvczdgczfqa5aeag.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5f3cb0e3-53e6-48dc-8\",\"name\":\"Test5f3cb0e3-53e6-48dc-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:07:07.8721977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:07:07.8721977Z\"},\"identity\":{\"principalId\":\"81cfff8e-9467-4bb1-84da-ab882a3f819f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://e6chhmbmg4eqd2d2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf779332-9182-4e44-a\",\"name\":\"Testbf779332-9182-4e44-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:12:54.595405Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:12:54.595405Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ethsbae5hxgpe0az.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd347078c-4992-4218-a\",\"name\":\"Testd347078c-4992-4218-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:14:07.8532725Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:14:07.8532725Z\"},\"identity\":{\"principalId\":\"144f9b3e-dff6-4024-9e79-5661e70dd81f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzg3gjgccsenbab6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test479c1eff-43d1-46b6-8\",\"name\":\"Test479c1eff-43d1-46b6-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:17:08.0531881Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:17:08.0531881Z\"},\"identity\":{\"principalId\":\"f1d7c7d9-5c01-4235-9dbb-c6b8c7d24658\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fcevhcb3f9d2ddgz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb315f477-17f3-491c-8\",\"name\":\"Testb315f477-17f3-491c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:22:53.4588323Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:22:53.4588323Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dqhncmdqf7caaaeq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test42b4dfeb-3aa6-455a-8\",\"name\":\"Test42b4dfeb-3aa6-455a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:25:52.0604626Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:25:52.0604626Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h7dpa5hyegbrc9es.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9690c89a-8bb1-4dfb-a\",\"name\":\"Test9690c89a-8bb1-4dfb-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:32:53.5686881Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:32:53.5686881Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aycwfzfydhh3azh2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f470d36-ec33-42b7-a\",\"name\":\"Test7f470d36-ec33-42b7-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:35:51.8058708Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:35:51.8058708Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g0cgfgc7ajdaeeef.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6fff934d-605e-4df6-b\",\"name\":\"Test6fff934d-605e-4df6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:42:53.1345757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:42:53.1345757Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hgdsdhefdudhg3cx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa3d8495-f018-480b-9\",\"name\":\"Testfa3d8495-f018-480b-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:44:08.2153383Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:44:08.2153383Z\"},\"identity\":{\"principalId\":\"6ab384d2-5ecf-4d7e-8598-6ca18fa0e1ec\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://esdsg3fbcbbfg7eg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test70c4c87b-aa55-4528-a\",\"name\":\"Test70c4c87b-aa55-4528-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:55:52.1460493Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:55:52.1460493Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://abd9hefeeca0b4a7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdbdfed87-3b68-4092-8\",\"name\":\"Testdbdfed87-3b68-4092-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:57:07.3436085Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:57:07.3436085Z\"},\"identity\":{\"principalId\":\"9274a384-e27d-42e2-8c3c-a6b85fee897a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hjf7e8ghc5c3guh4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8f048f59-8d6b-4e09-8\",\"name\":\"Test8f048f59-8d6b-4e09-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:02:54.3896474Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:02:54.3896474Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h9facdephsg3etcu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa33d7162-26cf-422e-b\",\"name\":\"Testa33d7162-26cf-422e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:05:51.6715709Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:05:51.6715709Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a4eqd2dadmebgmcn.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test31ca4d54-68b3-4a53-8\",\"name\":\"Test31ca4d54-68b3-4a53-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:05:53.5889723Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:05:53.5889723Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eecgcye8a5fte3af.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc4df9124-1da8-44e8-b\",\"name\":\"Testc4df9124-1da8-44e8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:15:51.8454271Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:15:51.8454271Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://etdfbqcef6gtcnct.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb3b5cd63-4870-4711-9\",\"name\":\"Testb3b5cd63-4870-4711-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:47:07.0907309Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:47:07.0907309Z\"},\"identity\":{\"principalId\":\"a5b99819-de66-4d2a-8ec4-cd3a7dab813d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0b8g9f7gyd5aubk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8698c1bd-6daa-40c0-8\",\"name\":\"Test8698c1bd-6daa-40c0-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:02:53.7813795Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:02:53.7813795Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ehcnazchgcejhucc.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste0da86bb-bc73-456d-a\",\"name\":\"Teste0da86bb-bc73-456d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T13:07:07.5268999Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T13:07:07.5268999Z\"},\"identity\":{\"principalId\":\"014d266c-4c77-43c7-8af5-7c190456ad31\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://h3breuehdxdabdgz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2da15c47-fdf2-42d0-b\",\"name\":\"Test2da15c47-fdf2-42d0-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-26T18:06:02.4375998Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-26T18:06:02.4375998Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://guenekcyena4dgdj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus-pl\",\"name\":\"syntheticseus-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T21:07:59.6551376Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:07:59.6551376Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hra8hkghcjdvanhy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus-pl/privateEndpointConnections/pe-syntheticseus-pl.3ded7c36-1c24-4765-8320-386c4c1ef3fc\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticseus-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr-01/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdreus01\",\"name\":\"cchaobcdreus01\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-03T18:18:45.0275266Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T18:18:45.0275266Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dxdkg5c0gaaag9c0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testpldisabled\",\"name\":\"testpldisabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-14T19:14:19.2824911Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-14T19:14:19.2824911Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test57710f9d-f0b3-4825-b\",\"name\":\"Test57710f9d-f0b3-4825-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-15T15:19:34.4884593Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-15T15:19:34.4884593Z\"},\"identity\":{\"principalId\":\"6a073cf8-347c-432b-94f5-e66f942fd249\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ahh8gygufpand7ct.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/candelete\",\"name\":\"candelete\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-20T05:16:20.3981244Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-20T05:16:20.3981244Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aybraqbjhfbgf6e3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/azpwsh\",\"name\":\"azpwsh\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-20T05:57:23.0922259Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-20T05:57:23.0922259Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3c3dxdqaeendndf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus\",\"name\":\"syntheticseus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:05:54.1278213Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:07:22.2279447Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dharbharavdsaect.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa26b3347-fa92-4dbc-9\",\"name\":\"Testa26b3347-fa92-4dbc-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T01:43:57.0170716Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:51.2617536Z\"},\"identity\":{\"principalId\":\"8f264d85-9a0d-4f1e-8e5d-65a179941829\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://btgbgpg7czgmhydb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test785e9304-f25e-4ef8-b\",\"name\":\"Test785e9304-f25e-4ef8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T02:02:41.7866369Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T02:02:41.7866369Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://axehbdaedxdbcrdw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdfced180-6f55-40bf-8\",\"name\":\"Testdfced180-6f55-40bf-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T02:33:56.987299Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:52.3889988Z\"},\"identity\":{\"principalId\":\"86a5eafb-8cd1-4c7c-9ea3-786d969482fd\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e9daexfebhg3awgv.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test09019f67-5489-41cf-9\",\"name\":\"Test09019f67-5489-41cf-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T16:14:00.1910381Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:53.0058222Z\"},\"identity\":{\"principalId\":\"fcff4d9f-0be8-45b0-8c32-8feb0fd4dd0a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gjfmhxhcavc2bagu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste25a76cb-f142-42b9-8\",\"name\":\"Teste25a76cb-f142-42b9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T16:52:45.3134693Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T16:52:45.3134693Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adgxf8bcdqadcphz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d76b4cf-7662-4bfd-a\",\"name\":\"Test5d76b4cf-7662-4bfd-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T18:24:00.2605741Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:53.7145581Z\"},\"identity\":{\"principalId\":\"f6a4961f-4565-4387-8f6d-1de64ebe1924\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d4dccwevcddnewak.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testabcd2e92-de6e-4453-b\",\"name\":\"Testabcd2e92-de6e-4453-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T20:12:46.2080512Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T20:12:46.2080512Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g8degxd9exb0eccy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8277e68d-5264-4742-a\",\"name\":\"Test8277e68d-5264-4742-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T23:32:46.7822366Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T23:32:46.7822366Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://acbkajdkaaa9csbp.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6940a271-18eb-46d9-b\",\"name\":\"Test6940a271-18eb-46d9-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T02:44:02.4536637Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:54.3429847Z\"},\"identity\":{\"principalId\":\"a05f7ebe-35c3-4ac7-900c-d84c83d85ae0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcbtc0cza4cjdub4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2dc1139f-08b1-49cb-8\",\"name\":\"Test2dc1139f-08b1-49cb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T02:52:47.3669747Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-04T02:52:47.3669747Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cvfuagbhgkbahkfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2a5bd28-7de5-4204-8\",\"name\":\"Teste2a5bd28-7de5-4204-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T07:02:48.3732468Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-04T07:02:48.3732468Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hyc9aqb4btfrhphj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5871834c-b18c-4c28-b\",\"name\":\"Test5871834c-b18c-4c28-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T15:24:05.5915367Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:54.9737949Z\"},\"identity\":{\"principalId\":\"238e4836-9705-4c7d-9fc8-c18ba6a86dea\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8erbbe3bvg2bycq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-gthomasdeiddev009/providers/microsoft.healthdataaiservices/deidservices/gthomas-cli-deid-service\",\"name\":\"gthomas-cli-deid-service\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-06T17:57:32.8272399Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:00.4954843Z\"},\"identity\":{\"principalId\":\"4021988e-4656-4cd3-8207-93cf69cd9af4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5b9gjffeue5f0eb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-gthomasdeiddev009/providers/microsoft.healthdataaiservices/deidservices/gthomas-cli-deid\",\"name\":\"gthomas-cli-deid\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-06T20:14:51.7160954Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:01.3263731Z\"},\"identity\":{\"principalId\":\"39f2cf09-9ce0-4812-aa46-acc21f4b78be\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cng4c0budjaxcwfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd32cc208-760b-4361-b\",\"name\":\"Testd32cc208-760b-4361-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T09:53:04.2088507Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T09:53:04.2088507Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eggyg0c7bkckebdd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste76a072c-38bd-4c00-9\",\"name\":\"Teste76a072c-38bd-4c00-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T00:03:08.0003517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-08T00:03:08.0003517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fyerexethjbke0hh.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c03d46a-5afe-4a6c-a\",\"name\":\"Test4c03d46a-5afe-4a6c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T01:34:23.6364624Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:02.0555503Z\"},\"identity\":{\"principalId\":\"b37a7246-13d6-4d6d-96b2-624304918700\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a5bvgzg5hvdwcqcb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75f6cd6b-8cd0-483a-9\",\"name\":\"Test75f6cd6b-8cd0-483a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T03:23:08.1359355Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-08T03:23:08.1359355Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ayhfdff0fbccgpez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test48cb195e-2818-482a-a\",\"name\":\"Test48cb195e-2818-482a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T14:24:24.9025185Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:03.7572074Z\"},\"identity\":{\"principalId\":\"338328fc-7114-45ca-93c7-06cce1975d26\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ffh3b8gkh6gkb0f3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eus\",\"name\":\"plval0809eus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T18:32:09.6710255Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T18:32:09.6710255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://byfzdrh2fzddawe4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eus/privateEndpointConnections/peeus.2f055527-a9dd-4f2d-96a5-1373a0d1b334\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/peeus\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eus/privateEndpointConnections/peeustest.e73a3939-52d0-45d8-ab1b-8f5908c57705\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/peeustest\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eusv2\",\"name\":\"plval0809eusv2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:11:20.7050619Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:11:20.7050619Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deb7esd6bshyfkab.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eastus\",\"name\":\"plval0809eastus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T23:36:27.7953632Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T00:46:17.1865837Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bwbje2h0dqenfdan.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/eus0813en\",\"name\":\"eus0813en\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T17:27:27.981602Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-13T17:27:27.981602Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gqcudhaqfdb6huf4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0813eus\",\"name\":\"test0813eus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T22:03:12.6968366Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:46.1199566Z\"},\"identity\":{\"principalId\":\"e5c625b6-3ed8-49bd-ba34-b555e9030396\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g9a8f6a2g0fchzg4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0813\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Please approve my connection, thanks.\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0813eus/privateEndpointConnections/peeus0813.1162b02a-9511-4b71-a699-ef0f86782e70\"}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3fb04bac-8558-4c25-b\",\"name\":\"Test3fb04bac-8558-4c25-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-14T13:13:30.6451301Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-14T13:13:30.6451301Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dxd5hyg5gwgxf2cb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53c865a8-e209-49c6-b\",\"name\":\"Test53c865a8-e209-49c6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-14T16:55:47.7698702Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:47.8011606Z\"},\"identity\":{\"principalId\":\"c4cc8613-9007-435e-875f-d0de4165e0cf\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buf2f5bwarexgab5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Tested082d56-35dc-4aaf-8\",\"name\":\"Tested082d56-35dc-4aaf-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-16T00:44:49.8086187Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:48.7331827Z\"},\"identity\":{\"principalId\":\"7b7eb0b3-8581-4f6b-b69c-5270d674a2d4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dzg3gcaxdehjdrf6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc35e49b5-9c9f-45fb-8\",\"name\":\"Testc35e49b5-9c9f-45fb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-17T07:53:38.1009037Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-17T07:53:38.1009037Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gyabe9cbdkafepbb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7001a4b4-d6ae-4cb7-9\",\"name\":\"Test7001a4b4-d6ae-4cb7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-17T18:44:55.1906374Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:29.2220736Z\"},\"identity\":{\"principalId\":\"c27ac38d-22df-4086-9c49-8da20aa3d4b8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hde2aahffxgjavev.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9febe45f-f0f6-4b5b-a\",\"name\":\"Test9febe45f-f0f6-4b5b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-18T08:26:28.0625812Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:30.1418071Z\"},\"identity\":{\"principalId\":\"5d7cc055-b1bd-4a1b-a69e-9e37bed09c0b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fpasb5dmc0b3dvav.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test52b0b8e4-2690-4e9f-b\",\"name\":\"Test52b0b8e4-2690-4e9f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-20T16:03:52.0012532Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-20T16:03:52.0012532Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bgcweza3gsgmexhp.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test647418db-81d2-4c7a-9\",\"name\":\"Test647418db-81d2-4c7a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-20T22:43:52.3271505Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-20T22:43:52.3271505Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ede6egawbbg2gxba.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2e43b94b-5314-4805-8\",\"name\":\"Test2e43b94b-5314-4805-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T07:43:53.7556068Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-21T07:43:53.7556068Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aeeuhscmg3bsaxh8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9bec478f-3021-4b84-8\",\"name\":\"Test9bec478f-3021-4b84-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T09:05:09.7723564Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:33.6388298Z\"},\"identity\":{\"principalId\":\"ebb69717-c03f-4122-b350-f7f64a9456c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5f9ftgrbrcna5bm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8ed7114a-21bc-4837-8\",\"name\":\"Test8ed7114a-21bc-4837-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T11:15:09.4360491Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:34.4435565Z\"},\"identity\":{\"principalId\":\"b411d1ba-6bef-4508-b37e-00c5724948c3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gjbbgyhrddcmf3a8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4a94a19d-db3c-4b73-b\",\"name\":\"Test4a94a19d-db3c-4b73-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T13:25:09.3167565Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:35.50707Z\"},\"identity\":{\"principalId\":\"55c9788d-3a37-445f-aa2e-312bbb238258\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmawb5f6a3cdedf0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff4de099-42ae-4de3-9\",\"name\":\"Testff4de099-42ae-4de3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T16:55:11.1451351Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:36.3035088Z\"},\"identity\":{\"principalId\":\"d78f5778-7478-4ef4-a336-4c444ca3c936\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bae9apctcgd6fkag.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d52f902-5d97-45a6-a\",\"name\":\"Test5d52f902-5d97-45a6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T19:05:10.3089733Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:37.1029164Z\"},\"identity\":{\"principalId\":\"d13bbdf8-abaa-4663-88ee-3a7df2991df7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g6d4d3d7adfgb0cg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9104eab-d7c1-498b-b\",\"name\":\"Teste9104eab-d7c1-498b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T20:15:11.3046245Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:37.8939846Z\"},\"identity\":{\"principalId\":\"bdffe26d-6146-41f3-a010-b413c4ae14bb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b3hafmfgdje6e4cz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa3a325cd-276e-4b92-8\",\"name\":\"Testa3a325cd-276e-4b92-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T23:35:11.6873742Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:38.6439936Z\"},\"identity\":{\"principalId\":\"df9b6981-a613-4bfd-8c0b-6befa05c8aeb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cmh4hkd3hbdtecby.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test99312e4a-5283-4b4f-9\",\"name\":\"Test99312e4a-5283-4b4f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T02:55:10.6907352Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:01.061706Z\"},\"identity\":{\"principalId\":\"84026cb9-2bc7-44f6-9535-5ba3bd414d22\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gqc3b3d9dtcrejck.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea0405f4-fc15-4804-9\",\"name\":\"Testea0405f4-fc15-4804-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T06:15:11.7914388Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:01.7780035Z\"},\"identity\":{\"principalId\":\"0a3f366a-1924-4c57-889c-47c6e0e1a645\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ceeqbrdngzasb3gt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test57d01c2f-2309-4eaf-9\",\"name\":\"Test57d01c2f-2309-4eaf-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T10:45:12.083484Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:02.5239668Z\"},\"identity\":{\"principalId\":\"64c13767-e12f-4537-8391-d472a05082ca\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hke0hec8czd9asaw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf9d8a5f2-a2e6-40fe-b\",\"name\":\"Testf9d8a5f2-a2e6-40fe-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T14:25:12.9031661Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:03.2141795Z\"},\"identity\":{\"principalId\":\"a819b10e-88c7-4cb4-90a6-dbfe0253cb1d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bfhnbehdbpbragd5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5060aa6f-91bb-4664-9\",\"name\":\"Test5060aa6f-91bb-4664-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T22:45:14.4852819Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:05.4870227Z\"},\"identity\":{\"principalId\":\"11c2b2bc-c186-4916-a09b-18266819e2df\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cta8hkdnaehhb6ep.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcacc3fae-e5bf-4530-9\",\"name\":\"Testcacc3fae-e5bf-4530-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T09:15:14.2287089Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:06.2202225Z\"},\"identity\":{\"principalId\":\"d426f26f-a521-4d41-a045-cd783378e16c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d3gsbmccgpe2fabk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3633c48b-89b3-4406-8\",\"name\":\"Test3633c48b-89b3-4406-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T12:03:59.4224525Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-23T12:03:59.4224525Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a7hdevhmcycsh8cs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test91544ec5-3197-45b4-a\",\"name\":\"Test91544ec5-3197-45b4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T13:35:14.3210489Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:07.2072031Z\"},\"identity\":{\"principalId\":\"7831cc56-7ef4-4ce8-a1b7-fed9b0283197\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a2gua7ezcjb2gygz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testpleus2\",\"name\":\"testpleus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-01T06:38:59.6953715Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-01T06:38:59.6953715Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqdhdmhbdthab7du.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testpleus2/privateEndpointConnections/testpleus2-pe.e75a5e32-6543-4ec9-923d-b198008afbb2\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpleus2-pe\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a238827-6e2d-4496-8\",\"name\":\"Test7a238827-6e2d-4496-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T05:52:32.6163166Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T05:52:32.6163166Z\"},\"identity\":{\"principalId\":\"affee168-6f02-44f3-a3f8-c7a8292d142c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f8e0cjc6g6fcb6cx.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7606a1e1-905d-4b0c-b\",\"name\":\"Test7606a1e1-905d-4b0c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:10:07.4109967Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:10:07.4109967Z\"},\"identity\":{\"principalId\":\"d05def33-e601-48fd-a1a1-876314f1b1eb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fxb6gbhuejcscngc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcca612a4-b8f9-4062-a\",\"name\":\"Testcca612a4-b8f9-4062-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:21:20.3297431Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:21:20.3297431Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h2guhdhyg8h6h0da.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3bb3b22-387c-4665-9\",\"name\":\"Testf3bb3b22-387c-4665-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:31:20.367346Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:31:20.367346Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ckbsd4d3aaa0gmar.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7b6b6a45-cb81-4584-a\",\"name\":\"Test7b6b6a45-cb81-4584-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:38:53.3883786Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:38:53.3883786Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eva6gfdhetczfpft.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa825b64d-c278-4662-9\",\"name\":\"Testa825b64d-c278-4662-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:41:20.7574131Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:41:20.7574131Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hkhebcf4exenbkch.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test39d47bea-ada0-4625-8\",\"name\":\"Test39d47bea-ada0-4625-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:48:52.5953641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:48:52.5953641Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://byecg3cqgqdwcucd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test35886f50-4409-4d8c-b\",\"name\":\"Test35886f50-4409-4d8c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:52:32.9705776Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:52:32.9705776Z\"},\"identity\":{\"principalId\":\"9de84e1a-023a-4c72-9c46-02bab1cb1a7b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://azaah7ewd8czevhr.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9acbc1dc-3c29-495d-9\",\"name\":\"Test9acbc1dc-3c29-495d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:58:51.7648163Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:58:51.7648163Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://crenathdd9dqhbfb.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test333d3d33-d78e-475d-a\",\"name\":\"Test333d3d33-d78e-475d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:01:21.2447245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:01:21.2447245Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bbdgh4ethyhfbkba.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaaaf5fef-ef54-4b58-b\",\"name\":\"Testaaaf5fef-ef54-4b58-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:02:32.8710898Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:02:32.8710898Z\"},\"identity\":{\"principalId\":\"32147ee8-9d84-4320-bcbc-f2d217483ab0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a0g9hpcca0cvh9hu.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdc05c024-5ec2-4e47-9\",\"name\":\"Testdc05c024-5ec2-4e47-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:08:51.6459348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:08:51.6459348Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4hbe9ehe8d2dsh7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6bbc85f2-daed-4c3e-a\",\"name\":\"Test6bbc85f2-daed-4c3e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:11:20.9880638Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:11:20.9880638Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f3dqgzexg5bgaafg.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4c6a9ee-9023-4f58-a\",\"name\":\"Testd4c6a9ee-9023-4f58-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:12:33.973674Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:12:33.973674Z\"},\"identity\":{\"principalId\":\"d6dc4169-9664-4686-869c-a781977e76e1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://add3cqarc5dfh3ek.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1c8fb03-cffe-4d3b-8\",\"name\":\"Teste1c8fb03-cffe-4d3b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:21:21.3138133Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:21:21.3138133Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e9gaaqfva0ejhcbp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb7f12c69-ab20-45cc-a\",\"name\":\"Testb7f12c69-ab20-45cc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:28:52.59113Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:28:52.59113Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://g6f5gqgnh5d3azfg.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf0af8275-b36e-404b-a\",\"name\":\"Testf0af8275-b36e-404b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:31:20.577251Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:31:20.577251Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc60001bf-59e2-44da-8\",\"name\":\"Testc60001bf-59e2-44da-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:32:32.8926146Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:32:32.8926146Z\"},\"identity\":{\"principalId\":\"6e6234c2-f52d-4a5a-a467-ab50a9f7dea6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://crawg5gzafgne4ct.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test917a6607-34e1-4504-8\",\"name\":\"Test917a6607-34e1-4504-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:38:52.4924081Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:38:52.4924081Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e6b6c4ecdrgdaycj.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde5239a3-9848-435e-9\",\"name\":\"Testde5239a3-9848-435e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:51:21.6090854Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:51:21.6090854Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a9cbgnacfhcuf0aj.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2f76d8c1-e606-4aa0-9\",\"name\":\"Test2f76d8c1-e606-4aa0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:08:52.5343498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:08:52.5343498Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eedffagyg2b5fscx.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf861c4c6-45e7-4705-9\",\"name\":\"Testf861c4c6-45e7-4705-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:12:33.027495Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:12:33.027495Z\"},\"identity\":{\"principalId\":\"59aa473b-b49a-450a-8f93-4a82ffbc5e42\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hufcd6gdaqhgfjbp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9bd0646-3594-40ad-9\",\"name\":\"Teste9bd0646-3594-40ad-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:21:20.967923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:21:20.967923Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://crgsaee9dmb2f8g7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test77ad27d9-b285-4645-b\",\"name\":\"Test77ad27d9-b285-4645-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:22:33.6184753Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:22:33.6184753Z\"},\"identity\":{\"principalId\":\"1ab7d7ac-d5b3-40da-94a5-0aaf73b5e234\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfb6eqb7encnfjcw.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf288367-c5e9-42a9-9\",\"name\":\"Testbf288367-c5e9-42a9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:42:33.867541Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:42:33.867541Z\"},\"identity\":{\"principalId\":\"bd57709f-80f2-4084-9eca-c40a441055ad\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://cwdyg9ewc2ehgqdc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test403e02f9-aad8-4c29-a\",\"name\":\"Test403e02f9-aad8-4c29-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:12:34.1020629Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:12:34.1020629Z\"},\"identity\":{\"principalId\":\"c136cdff-faa6-4142-b418-98d7f73783f4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fyh0dghwcufrckd7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd2e5c89f-aca2-4ad3-8\",\"name\":\"Testd2e5c89f-aca2-4ad3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:21:22.8481879Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:21:22.8481879Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://ghdgaycteadaeshn.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea3b2f2c-dbf4-4c35-8\",\"name\":\"Testea3b2f2c-dbf4-4c35-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:11:21.7332385Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:11:21.7332385Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b7dmcgbva7h8dphw.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test83a231ca-ab94-4079-b\",\"name\":\"Test83a231ca-ab94-4079-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T18:42:37.4122264Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T18:42:37.4122264Z\"},\"identity\":{\"principalId\":\"b74e64a9-ae66-4211-ac6a-f78b419aa85c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c8ebhughecajcnfa.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test55be8efc-3cef-458a-a\",\"name\":\"Test55be8efc-3cef-458a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T19:01:24.4218521Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T19:01:24.4218521Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"publicNetworkAccess\":\"Enabled\",\"serviceUrl\":\"https://gug6c3b3cja3ang9.api.eus2001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemo\",\"name\":\"deiddemo\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-29T14:59:09.2833612Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T14:06:00.1344203Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4fzdeh9h2bkbphy.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/pedeid\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemo/privateEndpointConnections/pedeid.dd94e33d-9a4d-417b-b321-16878cd1b816\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2-pl\",\"name\":\"syntheticseus2-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T11:23:55.4578505Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:23:55.4578505Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adcxf8grb0fsehgv.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2-pl/privateEndpointConnections/pe-syntheticseus2-pl.9f6cefb9-7c29-4a1a-bfe2-c6f9b45a8958\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticseus2-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemopl\",\"name\":\"deiddemopl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T14:06:54.3350826Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T14:13:25.7051097Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h5dyh3d6dfazbgbe.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testnew1\",\"name\":\"testnew1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T15:15:58.8797652Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T15:26:23.7886016Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4cyfpe8gaguf2fc.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid1010\",\"name\":\"testdeid1010\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T16:38:20.6279051Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T16:54:43.8855843Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7d4hneycjd3fxc4.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/testdeidpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid1010/privateEndpointConnections/testdeidpl.975be0eb-b434-4f9a-adc4-9da4211b22a5\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d820961-6742-4bca-8\",\"name\":\"Test5d820961-6742-4bca-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-12T10:35:28.8213204Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-12T10:35:28.8213204Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f6g2h3cqa4gwcng2.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService2\",\"name\":\"azpwshDeidService2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T00:01:06.069132Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T05:46:45.1524668Z\"},\"identity\":{\"principalId\":\"1185f660-6621-4417-b51b-5ca4dc9e5fb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4cag7feawaubgbv.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService\",\"name\":\"myHealthDeidService\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T05:26:15.4607741Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T18:56:12.1361396Z\"},\"identity\":{\"principalId\":\"efab95dd-6969-4c43-bd96-4126dc372bfa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8bxaqamerbxd9a3.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op\",\"name\":\"qkz9op\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:22:46.2407678Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:22:46.2407678Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e6g2dedxg0ccgvej.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta\",\"name\":\"x9mpta\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:24:18.8831832Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:24:18.8831832Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fndahkgagbffe9ev.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/o6rwcu\",\"name\":\"o6rwcu\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:25:51.3491296Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:25:51.3491296Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cuf4adccdfbaene7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7\",\"name\":\"nxe5i7\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:27:24.2551919Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:27:24.2551919Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hkavhfd6b5b5gxcq.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2\",\"name\":\"syntheticseus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:55:33.1324351Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:23:31.958195Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://acacfme2a4h6h0dp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eastus2\",\"name\":\"plval0809eastus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:39:21.8715941Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:39:21.8715941Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hphrenced8dweqf3.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eastus2/privateEndpointConnections/pl-eus2.a9aa0d96-3c8e-45bc-900a-7ef1da6280e0\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-eus2\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/deid0808v1\",\"name\":\"deid0808v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-01T18:36:16.9529026Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-01T18:36:16.9529026Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deid0808v1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1234\",\"name\":\"test1234\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-05T14:18:26.977372Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-05T14:18:26.977372Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1234.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/acs-test-jelinga/providers/Microsoft.HealthDataAIServices/DeidServices/jeltest1\",\"name\":\"jeltest1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"jelinga@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-06T17:35:23.2544311Z\",\"lastModifiedBy\":\"jelinga@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-06T17:35:23.2544311Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://jeltest1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testing\",\"name\":\"testing\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T19:32:32.3182808Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T19:32:32.3182808Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testing.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testwus2\",\"name\":\"testwus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T20:40:09.8352514Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T20:40:09.8352514Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testwus2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2\",\"name\":\"syntheticswus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T17:01:59.8699199Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T12:23:59.4845851Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9b5eaetb4ded8g2.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwus2pltest\",\"name\":\"deidwus2pltest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-08T21:51:51.3282527Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T23:49:24.9683938Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a5czemgacnf6dmg4.api.wus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/deidwus2pltest/privateEndpointConnections/testpl.becb48c9-d25b-4b42-9bb6-1595592be238\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testplwus2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwus2pltest/privateEndpointConnections/testplwus2.4f763525-af2f-4457-9109-2c55402a9c6d\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809westus2\",\"name\":\"plval0809westus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:40:46.5060336Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:40:46.5060336Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ddekf6b7h2h6hsgr.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809westus2/privateEndpointConnections/pewus2.0e2bf50a-b519-4a0e-9e1d-7c058a3b9b44\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pewus2\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf5ec6c2-28ab-4c5a-a\",\"name\":\"Testbf5ec6c2-28ab-4c5a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-02T01:53:40.3484055Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-02T01:53:40.3484055Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hmb4crh3ached4dv.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/SurrogationEvaluation\",\"name\":\"SurrogationEvaluation\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-20T00:23:08.2211657Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-20T00:23:08.2211657Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g4cpgmhehnc7gjh6.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test36b129dc-998b-4906-a\",\"name\":\"Test36b129dc-998b-4906-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:17:18.3194741Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:17:18.3194741Z\"},\"identity\":{\"principalId\":\"cded9449-05df-42cf-9257-119ceb611cf4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e8gjbscaffarewbs.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfac44423-d1b5-4803-a\",\"name\":\"Testfac44423-d1b5-4803-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:36:03.5111718Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:36:03.5111718Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dnf0emb0hkhwajey.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdcaa7561-a42b-4e98-9\",\"name\":\"Testdcaa7561-a42b-4e98-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:38:24.7013615Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:38:24.7013615Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cqh8gfbkbdc3c8bv.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd9909ef5-4fd7-42a1-9\",\"name\":\"Testd9909ef5-4fd7-42a1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:39:39.4185713Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:39:39.4185713Z\"},\"identity\":{\"principalId\":\"33a1d02c-b99e-4aeb-ab9a-df83df95ff57\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dgd7gqfxdaasetfb.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4291045e-4527-4836-8\",\"name\":\"Test4291045e-4527-4836-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:48:23.6745275Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:48:23.6745275Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://angvd3e6gndgdbc8.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6ef1d88b-8d0e-4375-a\",\"name\":\"Test6ef1d88b-8d0e-4375-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:49:39.6414876Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:49:39.6414876Z\"},\"identity\":{\"principalId\":\"cc21a847-f146-454e-be9c-9260e8977330\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hac7g5a4fkaab8bs.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test55bd2f0c-9e17-4558-9\",\"name\":\"Test55bd2f0c-9e17-4558-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:06:04.3485395Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:06:04.3485395Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hybuaxahhudjc0aw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5a5c16bc-ec62-443f-8\",\"name\":\"Test5a5c16bc-ec62-443f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:08:24.5208047Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:08:24.5208047Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gjamehdmccgcftbe.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa160d233-592e-4d08-8\",\"name\":\"Testa160d233-592e-4d08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:17:18.0309089Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:17:18.0309089Z\"},\"identity\":{\"principalId\":\"829edba6-5590-4e74-b1bd-6aaac07a8bee\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dncbhyatb5c9cnfb.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdf830dd3-3716-4d7e-a\",\"name\":\"Testdf830dd3-3716-4d7e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:18:24.1497699Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:18:24.1497699Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bvenfufhdzbfd7df.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test536584e5-fcd7-4877-a\",\"name\":\"Test536584e5-fcd7-4877-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:27:19.1482143Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:27:19.1482143Z\"},\"identity\":{\"principalId\":\"0b9fc245-a89c-4604-9842-f204bdfd9cb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a8hgcygbdphwd3ff.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test73e9ef3a-3d41-4066-8\",\"name\":\"Test73e9ef3a-3d41-4066-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:29:39.5433918Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:29:39.5433918Z\"},\"identity\":{\"principalId\":\"06f69a4a-81ab-4c17-bd53-e86616eb65df\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://are4bna2abazczfu.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f2d7905-3532-45fd-9\",\"name\":\"Test7f2d7905-3532-45fd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:36:04.1258754Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:36:04.1258754Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eqcne5dkc3aqexgk.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test624145e5-acfa-4dc1-a\",\"name\":\"Test624145e5-acfa-4dc1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:38:24.7118392Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:38:24.7118392Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bfcghcgbbuf6bec5.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc171c4c5-35bd-462c-9\",\"name\":\"Testc171c4c5-35bd-462c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:46:03.4772408Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:46:03.4772408Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dnbteha3d5bsceck.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcff71431-5673-4d08-9\",\"name\":\"Testcff71431-5673-4d08-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:47:18.8657333Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:47:18.8657333Z\"},\"identity\":{\"principalId\":\"4224fac9-a7b4-4b37-bcf4-8221f82815ce\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d6fgcahnheccd4b7.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test256acb69-630c-4d44-b\",\"name\":\"Test256acb69-630c-4d44-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:56:03.9963176Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:56:03.9963176Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://e6a3c9eyc4c0gtbw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fe8493d-1144-4f66-8\",\"name\":\"Test5fe8493d-1144-4f66-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:57:18.6911923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:57:18.6911923Z\"},\"identity\":{\"principalId\":\"d97a598d-afe4-4488-98d2-828d0428e14e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fdfaeuf0c8dmgcek.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste669edcf-6036-4acd-9\",\"name\":\"Teste669edcf-6036-4acd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:59:39.4011211Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:59:39.4011211Z\"},\"identity\":{\"principalId\":\"5675b15d-6160-4c64-8c99-a2a41498d572\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4dfd0b2haduedee.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test771d44f5-8697-4f7f-8\",\"name\":\"Test771d44f5-8697-4f7f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:07:18.5389813Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:07:18.5389813Z\"},\"identity\":{\"principalId\":\"2ad513ea-bb34-423a-9a6f-11604ce9cd8b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fta0f0bee9achmga.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test68d2f5db-be6d-455e-8\",\"name\":\"Test68d2f5db-be6d-455e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:17:20.0477674Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:17:20.0477674Z\"},\"identity\":{\"principalId\":\"25ffe56d-762b-4e3a-81d3-f1e573719575\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gda6d6fffmh5evdf.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc100f616-a532-4b16-9\",\"name\":\"Testc100f616-a532-4b16-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:18:24.543296Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:18:24.543296Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hwech0gmfthwhnfe.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa9299dc-0e5a-4523-8\",\"name\":\"Testfa9299dc-0e5a-4523-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:38:24.5783436Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:38:24.5783436Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://acfzhkacepgxbvcc.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcb520941-f24d-4ba0-a\",\"name\":\"Testcb520941-f24d-4ba0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:48:24.4358381Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:48:24.4358381Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hcgzcua5fwcfbkfc.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test0315c35e-b890-4131-b\",\"name\":\"Test0315c35e-b890-4131-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:58:24.493337Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:58:24.493337Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e2dvgfggevg3cmbq.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c1072f2-e8f5-4a88-8\",\"name\":\"Test4c1072f2-e8f5-4a88-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:59:40.407495Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:59:40.407495Z\"},\"identity\":{\"principalId\":\"4ee4df82-1686-4274-be13-d4c812fdcdf6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gdd4g2c8hcerggg7.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test90624075-28a0-4403-9\",\"name\":\"Test90624075-28a0-4403-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:48:26.0857525Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:48:26.0857525Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hhhdgrbte7djcwfw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test97d3f18b-35a1-4d88-9\",\"name\":\"Test97d3f18b-35a1-4d88-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:08:25.4729145Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:08:25.4729145Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dbhmhwf8e3bxhkda.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf7b5c1f1-8d28-401b-8\",\"name\":\"Testf7b5c1f1-8d28-401b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:59:41.3246256Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:59:41.3246256Z\"},\"identity\":{\"principalId\":\"63080029-d803-41a8-8b17-fc5f4628733f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://esb9gyc6b6bggkab.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ccbdf7b-6386-497d-9\",\"name\":\"Test5ccbdf7b-6386-497d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T18:48:29.4451958Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T18:48:29.4451958Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gyaaa9ccewbufbdr.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9c2aee80-9f8c-4e02-9\",\"name\":\"Test9c2aee80-9f8c-4e02-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-01T05:10:37.8467255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-01T05:10:37.8467255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hdb5aadkgcdnbhca.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2-pl\",\"name\":\"syntheticswus2-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"West US 2\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T12:24:16.9151724Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T12:24:16.9151724Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a7e3gqa5aphna7gj.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2-pl/privateEndpointConnections/pe-syntheticswus2-pl.902e448d-d4f9-407d-84dd-43dfd39ea931\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticswus2-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdrwus2\",\"name\":\"cchaobcdrwus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T23:31:26.2023911Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T00:24:14.4086951Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huf7dhadcnfkcder.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr-01/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdrwus201\",\"name\":\"cchaobcdrwus201\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-03T18:30:18.1995159Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T18:51:33.2139805Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hxh6gjdpdqd0h8ht.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test87a60ffd-1515-4d9d-9\",\"name\":\"Test87a60ffd-1515-4d9d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T17:56:29.1915531Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T17:56:29.1915531Z\"},\"identity\":{\"principalId\":\"a9e462a7-c9a3-4098-b684-a6ec5d720e33\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3gwhvfbejewbaey.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdb56e032-8366-4ab0-9\",\"name\":\"Testdb56e032-8366-4ab0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:06:12.9109253Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:06:12.9109253Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h2cmh0bzhtceb5g8.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e62d26f-d3c9-4a5f-b\",\"name\":\"Test5e62d26f-d3c9-4a5f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:11:19.6377483Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:11:19.6377483Z\"},\"identity\":{\"principalId\":\"d02f320a-9e35-4bf6-9f83-3f58fccd0bd9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b5byb3fsagazdtdr.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd3471136-2a74-49d9-8\",\"name\":\"Testd3471136-2a74-49d9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:20:03.5304574Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:20:03.5304574Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fuhea2bnh5facfg9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test979861da-4a10-45c9-a\",\"name\":\"Test979861da-4a10-45c9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:37:29.2072828Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:37:29.2072828Z\"},\"identity\":{\"principalId\":\"114172e0-db70-4371-9439-e93aaa97fdf3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://afhmdze3b8fca3a3.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Tested2e1ea5-f21f-4765-a\",\"name\":\"Tested2e1ea5-f21f-4765-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:46:13.0992052Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:46:13.0992052Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c5a9c7b4gffga2dj.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb58a1f89-fa7b-4f78-9\",\"name\":\"Testb58a1f89-fa7b-4f78-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:56:12.6778103Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:56:12.6778103Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://brd2bwafeth9a6fe.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7afdb4a5-227a-420b-a\",\"name\":\"Test7afdb4a5-227a-420b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:00:04.3892096Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:00:04.3892096Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ddhkgaa2a0fyd5eb.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test36d17348-5ce9-442a-9\",\"name\":\"Test36d17348-5ce9-442a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:07:28.2530398Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:07:28.2530398Z\"},\"identity\":{\"principalId\":\"8f06d417-b86a-492d-8f44-4a68c3ea0f3e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c5bsbjecdud6a4g9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test963e45f8-88ed-48aa-9\",\"name\":\"Test963e45f8-88ed-48aa-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:11:18.9114737Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:11:18.9114737Z\"},\"identity\":{\"principalId\":\"29848f7d-72bf-475a-917f-3d5918d388c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://g7gjbcapg2g2dycg.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fb1df8f-ee79-4954-a\",\"name\":\"Test5fb1df8f-ee79-4954-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:20:04.1374266Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:20:04.1374266Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://erg4gudbd9cvgydy.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4138b447-9f36-4cd6-9\",\"name\":\"Test4138b447-9f36-4cd6-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:21:19.5376965Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:21:19.5376965Z\"},\"identity\":{\"principalId\":\"6f921209-ce71-474b-a035-a8a2e3aae061\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0d3exdqfkb9abe9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test06d60cb1-40fe-4c30-8\",\"name\":\"Test06d60cb1-40fe-4c30-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:36:13.8248579Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:36:13.8248579Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f0dcathpaphscyc2.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3bca3559-91fb-404a-9\",\"name\":\"Test3bca3559-91fb-404a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:37:29.2955986Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:37:29.2955986Z\"},\"identity\":{\"principalId\":\"3d8c4d46-2769-4b99-a014-0a718f583aa3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://b8ctbshzetayd3ft.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9fd01eb7-b73f-4877-9\",\"name\":\"Test9fd01eb7-b73f-4877-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:40:04.0888992Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:40:04.0888992Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fvc9axgcarfnhfhw.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa2b57e59-9c40-4518-8\",\"name\":\"Testa2b57e59-9c40-4518-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:41:18.9983689Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:41:18.9983689Z\"},\"identity\":{\"principalId\":\"c7d574b1-0e0d-46fd-99c4-24a9cec4bbf4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fecjdxe6ara9hnd6.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc2e708c7-f442-4524-b\",\"name\":\"Testc2e708c7-f442-4524-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:46:13.5523727Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:46:13.5523727Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpfyasdmg9h2dkaq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd3885190-6372-4d11-b\",\"name\":\"Testd3885190-6372-4d11-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:47:29.5420829Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:47:29.5420829Z\"},\"identity\":{\"principalId\":\"332b92cd-d20d-45e6-854e-7a4dc2163d01\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://achmguevddg4d3fb.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa9d8a749-101b-4830-9\",\"name\":\"Testa9d8a749-101b-4830-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:50:04.1460196Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:50:04.1460196Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gzg3b3bkf2fafcgz.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test81afdc34-0624-43d8-b\",\"name\":\"Test81afdc34-0624-43d8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:51:19.7435069Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:51:19.7435069Z\"},\"identity\":{\"principalId\":\"7781e2b0-117e-464e-ac50-ab50801ddd13\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ezcdfwcnf2b8gkgy.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a2de449-b8bb-4f5d-9\",\"name\":\"Test7a2de449-b8bb-4f5d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:00:04.1448641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:00:04.1448641Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dua4ftbnghe5hccx.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3b3deeec-2bd1-4338-9\",\"name\":\"Test3b3deeec-2bd1-4338-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:01:19.156135Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:01:19.156135Z\"},\"identity\":{\"principalId\":\"1a05e0a1-5420-4c6d-bfcd-b5c34b9cc3e3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dbgtfbdqbmachcfp.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d3f5139-899c-4ad8-b\",\"name\":\"Test6d3f5139-899c-4ad8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:06:14.3521856Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:06:14.3521856Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gyajfshhepg5fda9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb66a51f0-2f5f-4f7d-b\",\"name\":\"Testb66a51f0-2f5f-4f7d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:31:19.5013391Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:31:19.5013391Z\"},\"identity\":{\"principalId\":\"9fd977d6-ae79-45fe-8b0e-6949377f06de\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://befdcneggka9azby.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd342b3ce-0618-4a94-a\",\"name\":\"Testd342b3ce-0618-4a94-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:46:14.7890365Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:46:14.7890365Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://d4g3byczgweue9cv.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff6faf74-32f3-40d9-9\",\"name\":\"Testff6faf74-32f3-40d9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:41:21.3401212Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:41:21.3401212Z\"},\"identity\":{\"principalId\":\"d4b736b1-980e-4610-97a5-f82d88dd96b1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dsbsgscjecd3dpck.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb90b744-f99a-414f-9\",\"name\":\"Testfb90b744-f99a-414f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T20:20:10.9313978Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T20:20:10.9313978Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bcf6d3hwgacsh0cq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3-pl\",\"name\":\"syntheticswus3-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"West US 3\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T13:53:11.6681304Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T13:53:11.6681304Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ehckb3ascab6atck.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3-pl/privateEndpointConnections/pe-syntheticswus3-pl.e37e9c53-5e6b-4d0d-9710-c9369dacd752\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticswus3-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test0d18c1c4-0e0e-4421-9\",\"name\":\"Test0d18c1c4-0e0e-4421-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-18T01:02:26.4437619Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-18T01:02:26.4437619Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cddheze2fbfge3d7.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3\",\"name\":\"syntheticswus3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:04:34.2050842Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T13:52:47.5867912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkckd4ebcgbmgddm.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809westus3\",\"name\":\"plval0809westus3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:41:35.2370207Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:41:35.2370207Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8h8g5dgead8fafn.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809westus3/privateEndpointConnections/pewus3.c4731e71-797c-445a-942d-2a54ab0f9059\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pewus3\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa64e0ba-6a8b-4210-b\",\"name\":\"Testfa64e0ba-6a8b-4210-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-13T14:58:51.554396Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-04T00:49:24.6575074Z\"},\"identity\":{\"principalId\":\"b6c8a87e-5a3e-4566-8639-e2bf010bdfa0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gmfwdpfcdscbaxg4.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb860af0a-22f8-442c-a\",\"name\":\"Testb860af0a-22f8-442c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-16T16:09:26.8553498Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-04T00:49:25.8089517Z\"},\"identity\":{\"principalId\":\"5f598bf2-d3bc-40ac-87ff-7c99cfa102ff\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://end7hse3d6bxemb0.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test835e6f9e-482b-4126-a\",\"name\":\"Test835e6f9e-482b-4126-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:00:52.8581939Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:00:52.8581939Z\"},\"identity\":{\"principalId\":\"e26205d5-7db9-472d-9e93-8042167d53da\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://djf7ggf9cdfyaxet.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdf17a0d8-5393-47bc-8\",\"name\":\"Testdf17a0d8-5393-47bc-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:13:40.1538332Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:13:40.1538332Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://axd0b4e9exapfkdj.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test64ddb767-0544-4d0e-b\",\"name\":\"Test64ddb767-0544-4d0e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:14:55.515111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:14:55.515111Z\"},\"identity\":{\"principalId\":\"12dcfc5f-550c-42f7-8655-731601f1c872\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c2epb3a9cvgzc2dz.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdbb96996-4064-4b2c-b\",\"name\":\"Testdbb96996-4064-4b2c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:20:52.855045Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:20:52.855045Z\"},\"identity\":{\"principalId\":\"8ec6bafe-4f3d-4e0b-8ad7-1dd911952e79\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e3hpb5h3emfscsav.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test87067302-e75f-412b-a\",\"name\":\"Test87067302-e75f-412b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:30:53.137443Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:30:53.137443Z\"},\"identity\":{\"principalId\":\"e234a940-2c5b-48bb-bd76-046d2f5bf162\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cngrhee2ddeqb7d6.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6079f216-75ad-4807-8\",\"name\":\"Test6079f216-75ad-4807-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:34:55.2619318Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:34:55.2619318Z\"},\"identity\":{\"principalId\":\"40c21f10-09cc-436c-b8fb-bf5b6cbde257\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gxawccgqedefd5bz.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test98b66745-fa73-42ae-8\",\"name\":\"Test98b66745-fa73-42ae-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:49:38.5842804Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:49:38.5842804Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d6etc4e9fkg9c6bt.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd87ed11b-f543-47f4-a\",\"name\":\"Testd87ed11b-f543-47f4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:54:54.9133622Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:54:54.9133622Z\"},\"identity\":{\"principalId\":\"f483e661-4f30-4f0b-a239-c07e866d1c06\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c7b6dkdthng0ffe0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf962794b-b861-48b8-a\",\"name\":\"Testf962794b-b861-48b8-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:00:53.1913114Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:00:53.1913114Z\"},\"identity\":{\"principalId\":\"8c8774d0-afec-42cb-b15e-c9751b327c95\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3auawambdcndgab.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4c7d4f6-1b17-4919-9\",\"name\":\"Testd4c7d4f6-1b17-4919-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:03:40.031421Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:03:40.031421Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adapeadeh4fhbbe3.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde2bb4c7-d950-4156-b\",\"name\":\"Testde2bb4c7-d950-4156-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:04:55.4828172Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:04:55.4828172Z\"},\"identity\":{\"principalId\":\"70dc411b-2da7-4b2a-b672-ec14c4dcdb58\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://erabddfdbqdphtcq.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2f3ef70d-bbd8-4547-b\",\"name\":\"Test2f3ef70d-bbd8-4547-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:10:53.3178724Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:10:53.3178724Z\"},\"identity\":{\"principalId\":\"54cde060-817f-480c-b5b8-f735a6c98d27\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3bvcjede0c0eje8.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test62b5305e-0158-41d2-8\",\"name\":\"Test62b5305e-0158-41d2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:13:40.0241864Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:13:40.0241864Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bvapashwgeerg3ad.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testba61348d-39b0-4458-b\",\"name\":\"Testba61348d-39b0-4458-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:20:52.8874317Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:20:52.8874317Z\"},\"identity\":{\"principalId\":\"916a0fec-134a-49c8-99e8-656570d19d32\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://geb8fmegauahasex.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7c1eb0f1-5cf4-4b2b-8\",\"name\":\"Test7c1eb0f1-5cf4-4b2b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:23:39.4653136Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:23:39.4653136Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://evd4b5h5b9h9d4g7.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste66688e5-30ad-4da0-8\",\"name\":\"Teste66688e5-30ad-4da0-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:29:37.9191976Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:29:37.9191976Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gfbhh9gjfza0cmb0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test388ef07d-ebba-4cbb-9\",\"name\":\"Test388ef07d-ebba-4cbb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:30:53.3380706Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:30:53.3380706Z\"},\"identity\":{\"principalId\":\"f9901763-b133-48fd-9971-57a9fe1990fa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hug3daccfvchhjej.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2489dec-8eb2-487e-b\",\"name\":\"Teste2489dec-8eb2-487e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:34:56.0937298Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:34:56.0937298Z\"},\"identity\":{\"principalId\":\"e756ec96-5c3f-4aca-b504-bbe39d02401c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hpchd2cvb6aafgfm.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf930485f-a694-4f71-9\",\"name\":\"Testf930485f-a694-4f71-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:39:38.5278598Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:39:38.5278598Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5fsfme2ede6hafr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53b65792-50fb-47b0-9\",\"name\":\"Test53b65792-50fb-47b0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:49:38.5256918Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:49:38.5256918Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gha7d2gje8gzfzca.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3b6bac20-f252-4b90-8\",\"name\":\"Test3b6bac20-f252-4b90-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:53:40.387144Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:53:40.387144Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a9g7aagjcrc6bye8.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd68b15cf-11dd-4fb6-a\",\"name\":\"Testd68b15cf-11dd-4fb6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:54:56.9183271Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:54:56.9183271Z\"},\"identity\":{\"principalId\":\"c12e2bea-3dfc-4261-aa49-3349944720f4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://chfxh9g2h6hch9eh.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6b99468d-dfab-4506-8\",\"name\":\"Test6b99468d-dfab-4506-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:59:37.8801423Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:59:37.8801423Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dyg4aeb4bfbka8f5.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test56d2ded4-38ef-4399-8\",\"name\":\"Test56d2ded4-38ef-4399-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:04:56.2874705Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:04:56.2874705Z\"},\"identity\":{\"principalId\":\"a05fbbb2-41e6-468e-bfa4-90b07108d44a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d8c4dth7fqcubucd.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfdb6bf0b-cee6-4962-8\",\"name\":\"Testfdb6bf0b-cee6-4962-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:09:38.541977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:09:38.541977Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://cpfqf5gpcpc5g0gb.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde617916-0f51-4953-a\",\"name\":\"Testde617916-0f51-4953-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:19:39.2824636Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:19:39.2824636Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bhhfevb7bzeqc0ap.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff4b7b89-5ebc-4fa4-a\",\"name\":\"Testff4b7b89-5ebc-4fa4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:20:53.2834288Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:20:53.2834288Z\"},\"identity\":{\"principalId\":\"46a5e6ca-9620-4cfa-b75d-3da7f4aaa9fa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b2f2erbfd8agchfh.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e979e6a-6f32-4ea2-b\",\"name\":\"Test5e979e6a-6f32-4ea2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:49:37.8357616Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:49:37.8357616Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d8cbf2dnheb6fuek.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb5148255-04b2-40e7-b\",\"name\":\"Testb5148255-04b2-40e7-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:59:38.54155Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:59:38.54155Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fdgrd6hscyhmb9cg.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3ff5ca4-b08e-4c7d-9\",\"name\":\"Testf3ff5ca4-b08e-4c7d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:40:53.4438821Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:40:53.4438821Z\"},\"identity\":{\"principalId\":\"9ef2437c-88af-4fc1-bdfd-807bb787bc80\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://duavc4dpaegra0gj.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2f2ff72-6b64-4f93-8\",\"name\":\"Teste2f2ff72-6b64-4f93-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:43:40.6249534Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:43:40.6249534Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://avemb2d5hnhmd9bb.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2fbf6574-c44d-4f1c-8\",\"name\":\"Test2fbf6574-c44d-4f1c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:44:56.527973Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:44:56.527973Z\"},\"identity\":{\"principalId\":\"240fedc2-4b7a-4f13-ba9d-480fdbd3a295\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fxbvhsamcvhthgc2.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0ad5360-2b93-4652-b\",\"name\":\"Testb0ad5360-2b93-4652-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:40:54.1467031Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:40:54.1467031Z\"},\"identity\":{\"principalId\":\"5feda2fe-9e96-4b0b-aa4e-7b5a21efbcaa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ghftcybbaefhfwep.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test894b7ab4-49ac-4f0a-9\",\"name\":\"Test894b7ab4-49ac-4f0a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:10:54.9420866Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:10:54.9420866Z\"},\"identity\":{\"principalId\":\"fa14ce0c-7b7e-4f8a-931b-5711dfbfa02f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hkh4aea8bpahhng9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4d628f6e-45c2-4334-8\",\"name\":\"Test4d628f6e-45c2-4334-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:20:56.3876235Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:20:56.3876235Z\"},\"identity\":{\"principalId\":\"b762a1f0-82a6-427e-97e6-8b637186af93\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c0fzbgg6e5grdce3.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste85a7926-1e1e-4de1-a\",\"name\":\"Teste85a7926-1e1e-4de1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:30:56.1343757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:30:56.1343757Z\"},\"identity\":{\"principalId\":\"a0da35ad-1636-43df-ad61-5643e62da9a3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e2bmfmdggea3bha0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbbc2a5ee-d452-4b63-8\",\"name\":\"Testbbc2a5ee-d452-4b63-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T16:43:43.1433326Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T16:43:43.1433326Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gqawdge2drbea6dr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa413c93e-30f9-4a96-8\",\"name\":\"Testa413c93e-30f9-4a96-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T17:59:42.0147642Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T17:59:42.0147642Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gmhuf7f2bmfxg4h9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test34f2e583-6e88-4822-9\",\"name\":\"Test34f2e583-6e88-4822-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T19:49:42.4645046Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T19:49:42.4645046Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dac0f9g6cuggdgdu.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus-pl\",\"name\":\"syntheticsscus-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"South Central US\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T21:17:55.1121961Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:17:55.1121961Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://czhdhshwfwchaxgk.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus-pl/privateEndpointConnections/pe-syntheticsscus-pl.b34b2b66-e7a7-420b-a9cd-17ba357a4917\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticsscus-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus\",\"name\":\"syntheticsscus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:06:27.9308928Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:17:38.3043211Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b3dchyfbd9c5f7d9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809scus\",\"name\":\"plval0809scus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:42:27.6946016Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-06T05:59:41.3984427Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f8ajedhjefaef7et.api.scus001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-scus\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809scus/privateEndpointConnections/pl-scus.9d739708-ca0b-4377-b992-aa12a78a59e4\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchao1214cac\",\"name\":\"testcchao1214cac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-14T22:15:16.7509833Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-14T22:15:16.7509833Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchao1214cac.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac\",\"name\":\"syntheticscac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T19:46:51.7616163Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:21:41.4155723Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticscac.api.cac001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscac\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac/privateEndpointConnections/pe-syntheticscac.350ccd7c-2652-4c8e-8da4-ac955a9da7ae\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/cac001test\",\"name\":\"cac001test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T20:40:25.9724565Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-21T20:40:25.9724565Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cac001test.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/testcchao1214\",\"name\":\"testcchao1214\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-14T20:34:56.1958631Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-14T20:34:56.1958631Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchao1214.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe141ff5-16a5-4d1a-8\",\"name\":\"Testbe141ff5-16a5-4d1a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:48:23.7560316Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:48:23.7560316Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbe141ff5-16a5-4d1a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb812004a-e516-47d7-9\",\"name\":\"Testb812004a-e516-47d7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T05:58:52.4766857Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T05:58:52.4766857Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb812004a-e516-47d7-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testee94f615-81d5-4516-b\",\"name\":\"Testee94f615-81d5-4516-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:08:23.3555244Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:08:23.3555244Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testee94f615-81d5-4516-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfc5814e5-2798-48b6-a\",\"name\":\"Testfc5814e5-2798-48b6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T08:08:51.8209589Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T08:08:51.8209589Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfc5814e5-2798-48b6-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfd7fbf70-6cbf-4b4a-8\",\"name\":\"Testfd7fbf70-6cbf-4b4a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T12:38:24.31318Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T12:38:24.31318Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfd7fbf70-6cbf-4b4a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadde277e-ccb3-471b-b\",\"name\":\"Testadde277e-ccb3-471b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T16:38:24.5291319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T16:38:24.5291319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testadde277e-ccb3-471b-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc37d9ddb-102f-4a1e-a\",\"name\":\"Testc37d9ddb-102f-4a1e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:58:52.8819245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:58:52.8819245Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc37d9ddb-102f-4a1e-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe524207-9bee-4eeb-8\",\"name\":\"Testbe524207-9bee-4eeb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:48:52.0938714Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:48:52.0938714Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbe524207-9bee-4eeb-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfe40715a-b9b6-438a-9\",\"name\":\"Testfe40715a-b9b6-438a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:38:53.1112198Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:38:53.1112198Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfe40715a-b9b6-438a-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste93d760d-e861-4f8a-b\",\"name\":\"Teste93d760d-e861-4f8a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:48:52.8765576Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:48:52.8765576Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste93d760d-e861-4f8a-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbde92518-4561-4272-b\",\"name\":\"Testbde92518-4561-4272-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T05:48:24.9302907Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T05:48:24.9302907Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbde92518-4561-4272-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9ab90f7-ead2-4a22-a\",\"name\":\"Teste9ab90f7-ead2-4a22-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T08:48:24.8275683Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T08:48:24.8275683Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste9ab90f7-ead2-4a22-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb96faeb2-c7a8-4fb6-8\",\"name\":\"Testb96faeb2-c7a8-4fb6-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T08:48:52.2765884Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T08:48:52.2765884Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb96faeb2-c7a8-4fb6-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb5e1d8f-5a10-4f3d-b\",\"name\":\"Testfb5e1d8f-5a10-4f3d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:08:24.6121269Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:08:24.6121269Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfb5e1d8f-5a10-4f3d-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc37ecb64-bee9-48c4-8\",\"name\":\"Testc37ecb64-bee9-48c4-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:18:53.0484634Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:18:53.0484634Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc37ecb64-bee9-48c4-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea87009e-cd5f-434a-8\",\"name\":\"Testea87009e-cd5f-434a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:28:24.9152706Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:28:24.9152706Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testea87009e-cd5f-434a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste72d78f2-0c81-47e2-9\",\"name\":\"Teste72d78f2-0c81-47e2-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T14:48:53.4841049Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T14:48:53.4841049Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste72d78f2-0c81-47e2-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbec339eb-b20e-4e71-b\",\"name\":\"Testbec339eb-b20e-4e71-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T18:28:25.0354485Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T18:28:25.0354485Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbec339eb-b20e-4e71-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3cad9ac-ca11-4d7f-b\",\"name\":\"Testf3cad9ac-ca11-4d7f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T23:08:24.6260425Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T23:08:24.6260425Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf3cad9ac-ca11-4d7f-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9a0e6f6-8315-4f4e-a\",\"name\":\"Teste9a0e6f6-8315-4f4e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T17:19:54.9641644Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T17:19:54.9641644Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvgzgtcyb0f0bcbr.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/c052301\",\"name\":\"c052301\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-23T21:50:04.9325652Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-23T21:50:04.9325652Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cuh0cya8geb3e5er.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test74a6af4b-e408-4a48-b\",\"name\":\"Test74a6af4b-e408-4a48-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-08T12:24:51.824032Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-08T12:24:51.824032Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://awhcasf8c9defuex.api.cac001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/contoso\",\"name\":\"contoso\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-11T01:15:32.4282974Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-16T01:24:44.0721271Z\"},\"identity\":{\"principalId\":\"bb138c5e-1f10-4af5-8f8c-b5900ee6c028\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d0gufsabftehaafy.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd00ec2e0-d149-486c-8\",\"name\":\"Testd00ec2e0-d149-486c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-14T19:56:59.5837521Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-14T19:56:59.5837521Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hwcaakcmc5b0gqfu.api.cac001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75c4f4f7-e747-40d7-b\",\"name\":\"Test75c4f4f7-e747-40d7-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-23T09:19:32.7259893Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-23T09:19:32.7259893Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hgcxhrf6cvgzgvbk.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoncac\",\"name\":\"jovinsoncac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T00:33:24.6944776Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T18:44:08.4356876Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d0bfayg0ezfnhchn.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7376b54d-00bb-404a-a\",\"name\":\"Test7376b54d-00bb-404a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-10T05:21:32.7798717Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-10T05:21:32.7798717Z\"},\"identity\":{\"principalId\":\"462a8c95-b62b-4eda-9347-fea1340533fc\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac2\",\"name\":\"plval0809cac2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T18:18:27.2675958Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T18:18:27.2675958Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ajgqfsf9a8dgfvbc.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac2/privateEndpointConnections/testcac.b6b70409-687b-4feb-8e1b-9b0c00232a13\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testcac\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cac0813\",\"name\":\"cac0813\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T23:52:55.8307582Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-13T23:52:55.8307582Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8gnakgpd7ghdmd3.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cac0813/privateEndpointConnections/pl-in-wus2-for-cac.063e5043-24ca-487c-ad39-cc26aa507a42\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-in-wus2-for-cac\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac\",\"name\":\"plval0809cac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:43:37.8772867Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T01:29:19.7481984Z\"},\"identity\":{\"principalId\":\"d52e151e-d189-4586-8a21-3c6d6b82608b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoodeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-asmahmoodeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h3bvakc4esfwhudx.api.cac001.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/plval0809cac/privateEndpointConnections/testmove.a9247899-9665-43d8-accb-3b5bd8f51977\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testmove\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test38aa4849-70f1-457f-9\",\"name\":\"Test38aa4849-70f1-457f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-27T04:02:53.1118952Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-27T04:02:53.1118952Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f9fme8cffdgyh8dq.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac-pl\",\"name\":\"syntheticscac-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"Canada Central\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T20:21:54.6470188Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:21:54.6470188Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://guewfrfee0bth4bq.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac-pl/privateEndpointConnections/pe-syntheticscac-pl.fbc886dc-b7a0-4c9d-ad6d-ab497de44e33\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscac-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks-pl\",\"name\":\"syntheticsuks-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"UK South\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T11:41:59.3973637Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:41:59.3973637Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fwhydne8fdbrfrg7.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks-pl/privateEndpointConnections/pe-syntheticsuks-pl.ae3f666c-dce1-4e29-8dc6-6f7005c4be59\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticsuks-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test50da495d-d139-4adb-9\",\"name\":\"Test50da495d-d139-4adb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-09T15:30:21.7885277Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-09T15:30:21.7885277Z\"},\"identity\":{\"principalId\":\"17cde715-3f38-4979-b34a-9b118e239f5d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcgpfrfbd9a0hrhz.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test10a21a5e-f0f5-4167-a\",\"name\":\"Test10a21a5e-f0f5-4167-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-09T18:19:30.3378838Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-09T18:19:30.3378838Z\"},\"identity\":{\"principalId\":\"9bfce899-2b8e-4c56-aa44-cb7087d29eeb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cmfggnf6ahbedcg3.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6edfe863-0bd7-40d2-b\",\"name\":\"Test6edfe863-0bd7-40d2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-19T00:34:18.8578543Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T00:34:18.8578543Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a2azawg2hxh6bwf7.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testada1808f-6558-4b82-b\",\"name\":\"Testada1808f-6558-4b82-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-25T22:28:32.610235Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-25T22:28:32.610235Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c4fufye0f3a9hyd5.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeiduks022601\",\"name\":\"testdeiduks022601\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-02-26T03:21:53.3851448Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-02-26T03:21:53.3851448Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeiduks022601.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks\",\"name\":\"syntheticsuks\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-02-26T17:46:58.9333107Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:41:45.7581489Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticsuks.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3d88a515-d60b-4703-a\",\"name\":\"Test3d88a515-d60b-4703-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T00:20:52.4814496Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T00:20:52.4814496Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3d88a515-d60b-4703-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ba1db05-66af-48ba-a\",\"name\":\"Test5ba1db05-66af-48ba-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:09:09.8063221Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:09:09.8063221Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5ba1db05-66af-48ba-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf18e9bc0-59be-4369-a\",\"name\":\"Testf18e9bc0-59be-4369-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:50:52.7531111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:50:52.7531111Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf18e9bc0-59be-4369-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste4c0a9ae-e437-4e53-8\",\"name\":\"Teste4c0a9ae-e437-4e53-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T03:40:52.9722546Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T03:40:52.9722546Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste4c0a9ae-e437-4e53-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92f14301-de10-485d-8\",\"name\":\"Test92f14301-de10-485d-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:19:09.9377812Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:19:09.9377812Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test92f14301-de10-485d-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test67f1b55a-e123-411f-9\",\"name\":\"Test67f1b55a-e123-411f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:40:53.8336883Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:40:53.8336883Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test67f1b55a-e123-411f-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test80fc6be1-06ed-4f72-b\",\"name\":\"Test80fc6be1-06ed-4f72-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:09:10.0735771Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:09:10.0735771Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test80fc6be1-06ed-4f72-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d69a0eb-c729-4a0c-8\",\"name\":\"Test6d69a0eb-c729-4a0c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:10:54.531239Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:10:54.531239Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test6d69a0eb-c729-4a0c-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8e3398a8-6bc2-42c3-9\",\"name\":\"Test8e3398a8-6bc2-42c3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:20:55.315193Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:20:55.315193Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test8e3398a8-6bc2-42c3-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf8b49b46-e5c2-4c94-b\",\"name\":\"Testf8b49b46-e5c2-4c94-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:40:55.2306005Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:40:55.2306005Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf8b49b46-e5c2-4c94-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c8394b6-3dc3-4140-9\",\"name\":\"Test4c8394b6-3dc3-4140-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T08:09:10.5504903Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T08:09:10.5504903Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test4c8394b6-3dc3-4140-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4b02e0b7-6770-433e-b\",\"name\":\"Test4b02e0b7-6770-433e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:19:10.6554416Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:19:10.6554416Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test4b02e0b7-6770-433e-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ec15027-e591-4627-9\",\"name\":\"Test5ec15027-e591-4627-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:20:56.2812694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:20:56.2812694Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5ec15027-e591-4627-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test39c6475a-f8e4-4af6-a\",\"name\":\"Test39c6475a-f8e4-4af6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:50:56.3741348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:50:56.3741348Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test39c6475a-f8e4-4af6-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc8ad4567-533a-4ce8-9\",\"name\":\"Testc8ad4567-533a-4ce8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T13:29:10.5194548Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T13:29:10.5194548Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc8ad4567-533a-4ce8-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa3b87661-7164-420b-a\",\"name\":\"Testa3b87661-7164-420b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T14:29:11.0114811Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T14:29:11.0114811Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testa3b87661-7164-420b-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb1f5a668-d4bf-46c0-a\",\"name\":\"Testb1f5a668-d4bf-46c0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T16:10:58.9386977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T16:10:58.9386977Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb1f5a668-d4bf-46c0-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaf570861-5083-4b08-8\",\"name\":\"Testaf570861-5083-4b08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T17:10:59.5199062Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T17:10:59.5199062Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testaf570861-5083-4b08-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf9809517-bd2a-4a85-a\",\"name\":\"Testf9809517-bd2a-4a85-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T18:21:00.1198972Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T18:21:00.1198972Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf9809517-bd2a-4a85-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testceb3c51e-c97e-4036-a\",\"name\":\"Testceb3c51e-c97e-4036-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T18:51:00.9735653Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T18:51:00.9735653Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testceb3c51e-c97e-4036-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test41e236dc-2118-4148-b\",\"name\":\"Test41e236dc-2118-4148-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T20:19:10.7686625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T20:19:10.7686625Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test41e236dc-2118-4148-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test42c68520-0d29-4fda-9\",\"name\":\"Test42c68520-0d29-4fda-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T20:39:10.6042131Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T20:39:10.6042131Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test42c68520-0d29-4fda-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5f0f9b1b-e3f6-4543-b\",\"name\":\"Test5f0f9b1b-e3f6-4543-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T21:01:01.2975633Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T21:01:01.2975633Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5f0f9b1b-e3f6-4543-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9b9a0260-5400-4dd1-9\",\"name\":\"Test9b9a0260-5400-4dd1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T21:21:00.992689Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T21:21:00.992689Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test9b9a0260-5400-4dd1-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc5af0427-b99b-41bb-8\",\"name\":\"Testc5af0427-b99b-41bb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:29:11.3443757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:29:11.3443757Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc5af0427-b99b-41bb-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcf8556e6-f2a0-4b12-b\",\"name\":\"Testcf8556e6-f2a0-4b12-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:31:01.9937927Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:31:01.9937927Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testcf8556e6-f2a0-4b12-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd6c86137-5f31-4b4f-a\",\"name\":\"Testd6c86137-5f31-4b4f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T23:21:02.5314215Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T23:21:02.5314215Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testd6c86137-5f31-4b4f-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test746d3a9e-cf75-4eab-b\",\"name\":\"Test746d3a9e-cf75-4eab-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:19:10.8767157Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:19:10.8767157Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test746d3a9e-cf75-4eab-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test45a63904-b7fc-41ac-8\",\"name\":\"Test45a63904-b7fc-41ac-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:29:10.9908989Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:29:10.9908989Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test45a63904-b7fc-41ac-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa37ff03f-594e-4639-9\",\"name\":\"Testa37ff03f-594e-4639-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T01:11:03.4663176Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T01:11:03.4663176Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testa37ff03f-594e-4639-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3d03640f-d1d3-46de-9\",\"name\":\"Test3d03640f-d1d3-46de-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:39:10.8625319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:39:10.8625319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3d03640f-d1d3-46de-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test591ad95a-c223-4b08-8\",\"name\":\"Test591ad95a-c223-4b08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:41:04.1150678Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:41:04.1150678Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test591ad95a-c223-4b08-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5dcea7f4-d323-45a9-b\",\"name\":\"Test5dcea7f4-d323-45a9-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T03:29:11.4528903Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T03:29:11.4528903Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5dcea7f4-d323-45a9-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92cfa1b9-9151-4b89-8\",\"name\":\"Test92cfa1b9-9151-4b89-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T04:51:05.074173Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T04:51:05.074173Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test92cfa1b9-9151-4b89-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test95987d55-100c-43d8-8\",\"name\":\"Test95987d55-100c-43d8-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T05:31:05.7753462Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T05:31:05.7753462Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test95987d55-100c-43d8-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste5dfad94-0de5-455c-a\",\"name\":\"Teste5dfad94-0de5-455c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T06:29:11.6867739Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T06:29:11.6867739Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste5dfad94-0de5-455c-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9a4d97b4-d5f3-42e4-a\",\"name\":\"Test9a4d97b4-d5f3-42e4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T07:09:11.8674261Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T07:09:11.8674261Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test9a4d97b4-d5f3-42e4-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc3805fea-9033-4b98-8\",\"name\":\"Testc3805fea-9033-4b98-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:31:07.5462811Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:31:07.5462811Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc3805fea-9033-4b98-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7125cf10-0ac8-4bf9-a\",\"name\":\"Test7125cf10-0ac8-4bf9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:41:08.3309937Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:41:08.3309937Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test7125cf10-0ac8-4bf9-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d26c847-6613-40f2-8\",\"name\":\"Test5d26c847-6613-40f2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:49:11.7472977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:49:11.7472977Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5d26c847-6613-40f2-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3f4bf4b0-ba09-480e-a\",\"name\":\"Test3f4bf4b0-ba09-480e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T13:49:11.9394943Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T13:49:11.9394943Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3f4bf4b0-ba09-480e-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc501e94f-d1e5-41c2-8\",\"name\":\"Testc501e94f-d1e5-41c2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T14:41:08.9028567Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T14:41:08.9028567Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc501e94f-d1e5-41c2-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc76a0899-5149-4990-9\",\"name\":\"Testc76a0899-5149-4990-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-03T09:43:58.6456183Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-03T09:43:58.6456183Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmdea3e3e4fuexd6.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9edb5065-a37f-4251-9\",\"name\":\"Test9edb5065-a37f-4251-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-03T12:03:58.2570665Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-03T12:03:58.2570665Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eaaaaze7hmawb6dz.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test537b661d-5b25-4b05-a\",\"name\":\"Test537b661d-5b25-4b05-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-09T11:35:15.9950351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-09T11:35:15.9950351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ftcyfjasg0cyhuac.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test58fb831b-3206-4d1c-8\",\"name\":\"Test58fb831b-3206-4d1c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-09T13:55:16.6422517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-09T13:55:16.6422517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gpfdghashmfqevgm.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test78efa6a0-01f3-4805-a\",\"name\":\"Test78efa6a0-01f3-4805-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T07:54:14.6339935Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T07:54:14.6339935Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvc8dbhqf7cxd8c9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfcc689cc-63de-4471-8\",\"name\":\"Testfcc689cc-63de-4471-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-15T10:24:17.1738232Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-15T10:24:17.1738232Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d4aycyfehvhbfqcs.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa59884e6-b0f3-4768-9\",\"name\":\"Testa59884e6-b0f3-4768-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-22T15:38:28.3543348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-22T15:38:28.3543348Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b3chdfdqe3dph4he.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.HealthDataAIServices/deidServices/deidService756\",\"name\":\"deidService756\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-29T18:57:54.0556359Z\",\"lastModifiedBy\":\"gthomas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-29T18:57:54.0556359Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dndqcbaxfngdh3be.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.HealthDataAIServices/deidServices/deidService756/privateEndpointConnections/deid-pe-6242.f8d562cf-4796-40df-84a1-e911f4cf8119\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.Network/privateEndpoints/deid-pe-6242\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"SDK test\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6c445d05-8a04-40d1-9\",\"name\":\"Test6c445d05-8a04-40d1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T20:18:08.8233351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T20:18:08.8233351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9fme0cmfycxcyda.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test667df1aa-2ea2-4184-9\",\"name\":\"Test667df1aa-2ea2-4184-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T20:24:41.4000305Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T20:24:41.4000305Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huchfaeuhrhuf3bu.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd42eca40-d463-41f3-9\",\"name\":\"Testd42eca40-d463-41f3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T21:26:50.9377625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T21:26:50.9377625Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bkbvcmbkcraecyfw.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8aa6c493-0cc1-4566-9\",\"name\":\"Test8aa6c493-0cc1-4566-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T22:29:21.7100366Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T19:32:08.0474887Z\"},\"identity\":{\"principalId\":\"0d71e7bd-429f-4c3c-82a6-3852d3b8e3a5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aybnbyavd2ejhzfd.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3e530210-4444-43a1-9\",\"name\":\"Test3e530210-4444-43a1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T10:56:57.0258009Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T10:56:57.0258009Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fwfch8gde3gvbwhz.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa8051ac4-966b-4183-8\",\"name\":\"Testa8051ac4-966b-4183-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T17:13:31.2614966Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T17:13:31.2614966Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://d7cwffedg0d2a5a6.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test40eea777-40b0-4680-b\",\"name\":\"Test40eea777-40b0-4680-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-09T07:53:34.2437985Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-09T07:53:34.2437985Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://byg5frajbxhfdcf6.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809\",\"name\":\"plval0809\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T17:33:06.4759332Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-12T19:22:00.4727578Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d9dfeaajhcafe7aw.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809/privateEndpointConnections/pl-uks.024e1c37-90f0-4d5e-8d16-8801adc29384\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-uks\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809dis2\",\"name\":\"plval0809dis2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:09:47.4289174Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:27:25.7954862Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://avesemfzbecrdjc4.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809dis2/privateEndpointConnections/plval0809dis2-pe.f950a94c-5b4b-4a31-bdee-e459f933aea9\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/plval0809dis2-pe\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsonuks\",\"name\":\"jovinsonuks\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-15T16:09:58.6334969Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-15T16:09:58.6334969Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dhdqagccangwhcdk.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test\",\"name\":\"test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T20:05:42.8384639Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T20:05:42.8384639Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0926v1\",\"name\":\"test0926v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T02:45:59.3438672Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T02:45:59.3438672Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0926v1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0926v2\",\"name\":\"test0926v2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T02:47:31.7472967Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T02:47:31.7472967Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0926v2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0927\",\"name\":\"test0927\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T16:46:05.2162306Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T16:46:05.2162306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0927.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0928\",\"name\":\"test0928\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-28T17:38:42.3842671Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-28T17:38:42.3842671Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0928.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0928v2\",\"name\":\"test0928v2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-28T17:57:11.4511743Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-28T17:57:11.4511743Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0928v2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1002\",\"name\":\"test1002\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-02T13:13:48.4976059Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-02T13:13:48.4976059Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1002.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test123\",\"name\":\"test123\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-03T20:40:59.3297043Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-03T20:40:59.3297043Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test123.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1\",\"name\":\"test1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-26T20:24:59.1914056Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-26T20:25:37.9297376Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchaoeus2euap1207\",\"name\":\"testcchaoeus2euap1207\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-07T21:59:57.2279724Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-07T21:59:57.2279724Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchaoeus2euap1207.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchaoeuap1212\",\"name\":\"testcchaoeuap1212\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-12T18:33:15.9987695Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-12T18:33:15.9987695Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchaoeuap1212.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny\",\"name\":\"syntheticscny\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T19:45:57.5795884Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:16:39.1087058Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticscny.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscny\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny/privateEndpointConnections/pe-syntheticscny.9884c0cc-4d3b-43ae-a149-b37abf040780\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/deid0921\",\"name\":\"deid0921\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-21T22:11:25.2178241Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-21T22:11:25.2178241Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deid0921.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanistesting2024\",\"name\":\"daszanistesting2024\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-03T16:17:22.3144659Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-03T16:17:22.3144659Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanistesting2024.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis202402\",\"name\":\"daszanis202402\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-03T18:11:45.7645355Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-03T18:11:45.7645355Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanis202402.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240404\",\"name\":\"testdeid20240404\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-04T21:33:53.4405002Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-04T21:33:53.4405002Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeid20240404.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240405\",\"name\":\"testdeid20240405\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-05T17:21:33.6289145Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-05T17:21:33.6289145Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeid20240405.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test689709c7-09b1-47ca-8\",\"name\":\"Test689709c7-09b1-47ca-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-12T23:56:49.2787259Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-12T23:56:49.2787259Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test689709c7-09b1-47ca-8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test773f4669-3a29-49fc-a\",\"name\":\"Test773f4669-3a29-49fc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:06:49.801438Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:06:49.801438Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test773f4669-3a29-49fc-a.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb939892-2d36-4af1-b\",\"name\":\"Testfb939892-2d36-4af1-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:55:16.2530902Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:55:16.2530902Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfb939892-2d36-4af1-b.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test636a77c6-bb93-4c48-9\",\"name\":\"Test636a77c6-bb93-4c48-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:56:49.9404785Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:56:49.9404785Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test636a77c6-bb93-4c48-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc469c263-d5cf-48a9-9\",\"name\":\"Testc469c263-d5cf-48a9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:55:16.4535138Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:55:16.4535138Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc469c263-d5cf-48a9-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testeabc36c7-733c-4eb8-a\",\"name\":\"Testeabc36c7-733c-4eb8-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:56:50.448085Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:56:50.448085Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testeabc36c7-733c-4eb8-a.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testec267f69-a8bf-4575-8\",\"name\":\"Testec267f69-a8bf-4575-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:05:17.4033647Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:05:17.4033647Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testec267f69-a8bf-4575-8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test86a1c01e-27ca-4506-9\",\"name\":\"Test86a1c01e-27ca-4506-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-16T18:46:56.1179547Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-16T18:46:56.1179547Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test86a1c01e-27ca-4506-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240416\",\"name\":\"daszanis20240416\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-16T20:36:46.8661158Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-16T20:36:46.8661158Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanis20240416.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/c041601\",\"name\":\"c041601\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-17T00:47:59.1402568Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-15T00:45:17.1793437Z\"},\"identity\":{\"principalId\":\"6e539289-0cfc-471c-9bcb-cbc69a2cee57\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gwfqcrezeqafatg4.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd7b005bb-5337-42a9-8\",\"name\":\"Testd7b005bb-5337-42a9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T00:56:03.5007718Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T00:56:03.5007718Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b5gvggdnd6btcrf4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3abb1b75-72ca-4dc3-9\",\"name\":\"Test3abb1b75-72ca-4dc3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:06:55.6174028Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:06:55.6174028Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://htaacnh7dndrffgt.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbfdd288c-7fea-48ec-9\",\"name\":\"Testbfdd288c-7fea-48ec-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:36:55.8693213Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:36:55.8693213Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g3bra2a4bfbzhwh4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5dcc63e3-df2e-4516-9\",\"name\":\"Test5dcc63e3-df2e-4516-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:46:55.7630063Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:46:55.7630063Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzb4ftfmcqg7cahr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test789c6bc9-679b-46ff-a\",\"name\":\"Test789c6bc9-679b-46ff-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T08:26:06.1766861Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T08:26:06.1766861Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dzc8h7hehfhze6ey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa6980ee4-2421-497e-9\",\"name\":\"Testa6980ee4-2421-497e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T14:26:55.3211498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T14:26:55.3211498Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpfmddfnd6c7d0ff.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53bbe941-ecf8-4e64-8\",\"name\":\"Test53bbe941-ecf8-4e64-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T17:46:12.2182371Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T17:46:12.2182371Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bjfmhzh8anhuacge.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test60cbbac8-cf49-46cd-a\",\"name\":\"Test60cbbac8-cf49-46cd-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T01:16:55.472584Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T01:16:55.472584Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hpe8hrhfd0f0bugm.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9ef5b7ba-12f1-451e-8\",\"name\":\"Test9ef5b7ba-12f1-451e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T05:46:17.5183098Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T05:46:17.5183098Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cxhah8g2ezexa9c3.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test684f4d00-b1d3-418b-b\",\"name\":\"Test684f4d00-b1d3-418b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T06:16:56.4082904Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T06:16:56.4082904Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b2hdb3gtb7edawe4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf66e2fb8-fe37-464c-a\",\"name\":\"Testf66e2fb8-fe37-464c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T12:56:55.427874Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T12:56:55.427874Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dvf0dufdbud8g7ec.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa69c6c6a-1c54-43a7-9\",\"name\":\"Testa69c6c6a-1c54-43a7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T15:26:56.3308432Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T15:26:56.3308432Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hahca8czaahfayeb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/c041801\",\"name\":\"c041801\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-18T19:34:43.4241066Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-18T19:34:43.4241066Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hshae9gwhudke2bd.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0419\",\"name\":\"test0419\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-19T16:55:49.9694669Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-19T16:55:49.9694669Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efhwdwdkdxhzd3cr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0423\",\"name\":\"test0423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T18:48:50.4444369Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cwg6c8hnamdfd2fw.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240423\",\"name\":\"daszanis20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T20:16:50.967515Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T20:16:50.967515Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aygfhrgyf3dddwd4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanisstringtest\",\"name\":\"daszanisstringtest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T20:48:07.9822169Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T20:48:07.9822169Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3eqhthegcbebda8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwithtags20240423\",\"name\":\"deidwithtags20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"test\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T21:25:59.6619497Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T21:26:34.327989Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fhfga7e0fkhgcqc0.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/danitagtest20240423\",\"name\":\"danitagtest20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"NonProd\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T22:19:45.4929556Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T22:19:45.4929556Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dbhmh3anfxgwddey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test774a83ad-b850-4275-a\",\"name\":\"Test774a83ad-b850-4275-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-25T16:07:44.1772498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-25T16:07:44.1772498Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gshxbph2gnh6bect.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240425\",\"name\":\"daszanis20240425\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-25T17:52:29.0785344Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-25T17:52:29.0785344Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hubfd9fxc4btcybf.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6dc7b759-44c6-40bb-a\",\"name\":\"Test6dc7b759-44c6-40bb-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-26T00:37:48.5866059Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-26T00:37:48.5866059Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkg0gmedgtfcaaba.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240430\",\"name\":\"testdeid20240430\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"prod\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-30T22:59:53.7170445Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-30T22:59:53.7170445Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dtbafdemctajayg8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoo-deid/providers/Microsoft.HealthDataAIServices/DeidServices/testresource\",\"name\":\"testresource\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-09T04:00:42.7519139Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-09T04:00:42.7519139Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hzaxc2cmgnh4fpcz.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8c26233c-3784-4c58-9\",\"name\":\"Test8c26233c-3784-4c58-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-13T07:38:19.1922537Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-13T07:38:19.1922537Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a4cwbhcsf4dqcbdb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3cd577fe-ccf5-47bd-9\",\"name\":\"Test3cd577fe-ccf5-47bd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T18:40:35.8341966Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T18:40:35.8341966Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aka6fgfcdcdjgqcp.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadeb2e2d-3427-4166-a\",\"name\":\"Testadeb2e2d-3427-4166-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-15T00:58:27.3004666Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-15T00:58:27.3004666Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bvdtcuagdsbkabcr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test600d8e71-b5c7-414a-b\",\"name\":\"Test600d8e71-b5c7-414a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T17:20:56.3643351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T17:20:56.3643351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gtd0g3d0hpf0cqau.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6a3294b5-2a1e-4504-9\",\"name\":\"Test6a3294b5-2a1e-4504-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T19:20:58.1160517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T19:20:58.1160517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dba6b5hxdwadf7ah.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3845680e-e8ad-45e7-8\",\"name\":\"Test3845680e-e8ad-45e7-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T21:51:33.7943111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T21:51:33.7943111Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c32fecf-8010-484f-a\",\"name\":\"Test4c32fecf-8010-484f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T21:54:45.3278696Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T21:54:45.3278696Z\"},\"identity\":{\"principalId\":\"e8302371-66e9-425c-87bf-3c8f0d76ad47\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfe015d69-5e8e-4db9-9\",\"name\":\"Testfe015d69-5e8e-4db9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T01:11:02.9479853Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T01:11:02.9479853Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://anc8cbgmgzdreuey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test51eb2ea0-227c-4a00-8\",\"name\":\"Test51eb2ea0-227c-4a00-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T01:28:31.9856996Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T01:28:31.9856996Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fjfkeqgvahfndzeh.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7783075a-2910-462c-b\",\"name\":\"Test7783075a-2910-462c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T02:08:32.7778744Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T02:08:32.7778744Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hgc0ead5htc3e6fp.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3af887a9-3bc4-41cd-8\",\"name\":\"Test3af887a9-3bc4-41cd-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T18:51:11.6799956Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T18:51:11.6799956Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daf7ejf0bnehbjc7.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9c0b39d6-d6aa-475f-9\",\"name\":\"Test9c0b39d6-d6aa-475f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-18T04:28:33.9687313Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-18T04:28:33.9687313Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gxh8acacatddbdcd.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9dbf2336-b2ec-4338-b\",\"name\":\"Test9dbf2336-b2ec-4338-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-22T05:31:32.0845694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-22T05:31:32.0845694Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://chfudxeygvc7dxau.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522\",\"name\":\"daszanis20240522\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T20:49:06.0137785Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T20:49:06.0137785Z\"},\"identity\":{\"principalId\":\"8110cbfe-f3ad-4a49-997b-d4eb60ddee10\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-dogfood/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-prtl-storagedogfood\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cpfbe0buawc9ftcr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste0dc89e3-c33e-4ae3-a\",\"name\":\"Teste0dc89e3-c33e-4ae3-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-22T20:59:13.3299697Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-22T20:59:13.3299697Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fbcadra9e5c8embk.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522test\",\"name\":\"daszanis20240522test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T21:36:43.3944001Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T21:36:43.3944001Z\"},\"identity\":{\"principalId\":\"9b38fc08-1656-443d-8821-d4c7d94ee1f0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-deid-test\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcbjdwagemhfg5an.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522nomi\",\"name\":\"daszanis20240522nomi\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T21:40:05.1624641Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T21:40:42.4963112Z\"},\"identity\":{\"principalId\":\"7feeda4e-c86d-4b99-a042-36c343485c8f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hybhfjg9avchasbw.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf90a630b-a35d-4f9b-a\",\"name\":\"Testf90a630b-a35d-4f9b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-23T18:46:45.7957393Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-23T18:46:45.7957393Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://csh6hza0gdf2d0dj.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testca65b6d3-2a97-48cf-a\",\"name\":\"Testca65b6d3-2a97-48cf-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-23T18:51:40.8224467Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-23T18:51:40.8224467Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://apf5cvckc2dqh2cg.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaab13d0d-8125-49de-9\",\"name\":\"Testaab13d0d-8125-49de-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-26T21:42:21.8688923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-26T21:42:21.8688923Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a9ckf5dddcc7h4fb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test827e783b-9474-4462-9\",\"name\":\"Test827e783b-9474-4462-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-28T18:50:04.3557874Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-28T18:50:04.3557874Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvdkfqeye2hjgcaq.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdd829060-0f10-41fd-8\",\"name\":\"Testdd829060-0f10-41fd-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T19:41:38.6128968Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T19:41:38.6128968Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf809b7a-8c49-44eb-9\",\"name\":\"Testbf809b7a-8c49-44eb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T20:33:58.7936914Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T20:33:58.7936914Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d161887-93d9-4323-b\",\"name\":\"Test6d161887-93d9-4323-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T21:51:38.5411648Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T21:51:38.5411648Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test891681e9-196d-40ae-9\",\"name\":\"Test891681e9-196d-40ae-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T22:31:38.6737266Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T22:31:38.6737266Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test89d7cdb6-6940-42ed-a\",\"name\":\"Test89d7cdb6-6940-42ed-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T22:51:39.0104824Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T22:51:39.0104824Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb2891ee5-e88b-43ac-8\",\"name\":\"Testb2891ee5-e88b-43ac-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T23:11:39.1197957Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T23:11:39.1197957Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test80079631-0116-43da-9\",\"name\":\"Test80079631-0116-43da-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T23:31:39.090987Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T23:31:39.090987Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6ba2a676-2516-4029-b\",\"name\":\"Test6ba2a676-2516-4029-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T00:03:59.7132209Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T00:03:59.7132209Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4f69f23-cb37-4705-b\",\"name\":\"Testd4f69f23-cb37-4705-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T01:43:59.5879161Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T01:43:59.5879161Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3374b9b3-03d4-4ee3-8\",\"name\":\"Test3374b9b3-03d4-4ee3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:25:15.2694455Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:25:15.2694455Z\"},\"identity\":{\"principalId\":\"2fb528ba-b590-4e27-94e8-39661649c648\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcd109a6d-d21f-4c30-9\",\"name\":\"Testcd109a6d-d21f-4c30-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:31:38.9365402Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:31:38.9365402Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdb7bce88-b82f-4ec7-9\",\"name\":\"Testdb7bce88-b82f-4ec7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:41:39.530014Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:41:39.530014Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test347eea87-86a1-4c6e-8\",\"name\":\"Test347eea87-86a1-4c6e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T03:31:38.9037178Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T03:31:38.9037178Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test753a4b03-f443-4738-8\",\"name\":\"Test753a4b03-f443-4738-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T03:51:39.1294278Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T03:51:39.1294278Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7c255c37-cbb6-455b-9\",\"name\":\"Test7c255c37-cbb6-455b-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T04:22:54.0101005Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T04:22:54.0101005Z\"},\"identity\":{\"principalId\":\"bea96f89-2aae-4568-b0d6-ff627c028de9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4b0c1b40-3c3a-4041-9\",\"name\":\"Test4b0c1b40-3c3a-4041-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T05:14:00.4477353Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T05:14:00.4477353Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe23f1c8-b066-4bfd-b\",\"name\":\"Testbe23f1c8-b066-4bfd-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T05:21:39.3794908Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T05:21:39.3794908Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test533d1087-fa1a-4d48-8\",\"name\":\"Test533d1087-fa1a-4d48-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T06:11:39.0430579Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T06:11:39.0430579Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test31016491-cc34-48ee-8\",\"name\":\"Test31016491-cc34-48ee-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T06:31:39.5467214Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T06:31:39.5467214Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb7034b34-8ba1-44cc-a\",\"name\":\"Testb7034b34-8ba1-44cc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:02:54.7424212Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:02:54.7424212Z\"},\"identity\":{\"principalId\":\"cffe13e0-04d4-4265-aad7-edec13a5c537\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testac380ad3-9242-4958-8\",\"name\":\"Testac380ad3-9242-4958-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:21:39.7639298Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:21:39.7639298Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test71fac46b-5c7f-420d-9\",\"name\":\"Test71fac46b-5c7f-420d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:54:00.6689223Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:54:00.6689223Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0d61a64-d510-4ef9-a\",\"name\":\"Testb0d61a64-d510-4ef9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:11:39.8407325Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:11:39.8407325Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test86c726fa-48a5-4a5a-a\",\"name\":\"Test86c726fa-48a5-4a5a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:24:02.0222694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:24:02.0222694Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5980e2bd-03d4-4565-9\",\"name\":\"Test5980e2bd-03d4-4565-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:51:39.9126155Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:51:39.9126155Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste043c2f4-882f-4552-b\",\"name\":\"Teste043c2f4-882f-4552-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:01:39.6096595Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:01:39.6096595Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75c11604-1975-45f8-9\",\"name\":\"Test75c11604-1975-45f8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:24:01.2383064Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:24:01.2383064Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaa6f6641-9ed9-43be-9\",\"name\":\"Testaa6f6641-9ed9-43be-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:45:16.617112Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:45:16.617112Z\"},\"identity\":{\"principalId\":\"0745d086-db0e-4fb1-95f0-8aebd32ba241\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7198b83b-6b3a-4dc3-8\",\"name\":\"Test7198b83b-6b3a-4dc3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T10:05:16.8085486Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T10:05:16.8085486Z\"},\"identity\":{\"principalId\":\"e03c7b85-3cc7-42b3-9da7-22dfbbfeaada\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4030ec65-8515-4a0d-a\",\"name\":\"Test4030ec65-8515-4a0d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T10:12:54.6732148Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T10:12:54.6732148Z\"},\"identity\":{\"principalId\":\"fa1d7f60-3a49-4b2a-bad8-28375a528cb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcafc9570-2b83-4cce-8\",\"name\":\"Testcafc9570-2b83-4cce-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:01:40.8270471Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:01:40.8270471Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2df465b-b2ac-496d-b\",\"name\":\"Teste2df465b-b2ac-496d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:11:39.8547744Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:11:39.8547744Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test76e0e1c1-d5c5-4938-8\",\"name\":\"Test76e0e1c1-d5c5-4938-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:21:39.6737222Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:21:39.6737222Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf11e191c-b75b-4123-8\",\"name\":\"Testf11e191c-b75b-4123-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T12:54:01.7129779Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T12:54:01.7129779Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc54697fe-46d1-4bb5-a\",\"name\":\"Testc54697fe-46d1-4bb5-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T14:32:54.5977307Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T14:32:54.5977307Z\"},\"identity\":{\"principalId\":\"902b6500-529a-4a15-a5a8-e726a7bb0eb1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf4e0b6d9-697d-4ad6-b\",\"name\":\"Testf4e0b6d9-697d-4ad6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:21:40.1775459Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:21:40.1775459Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdfbed109-a6c5-480a-b\",\"name\":\"Testdfbed109-a6c5-480a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:31:40.9668291Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:31:40.9668291Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb5b31ad2-6791-42b0-9\",\"name\":\"Testb5b31ad2-6791-42b0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:32:55.160759Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:32:55.160759Z\"},\"identity\":{\"principalId\":\"1bbba220-ae0c-4bfd-952c-f941a0937249\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcc3925b2-3a24-4ce5-8\",\"name\":\"Testcc3925b2-3a24-4ce5-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T16:24:02.9486206Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T16:24:02.9486206Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc2e2ef11-b48e-4722-a\",\"name\":\"Testc2e2ef11-b48e-4722-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T18:12:55.747161Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T18:12:55.747161Z\"},\"identity\":{\"principalId\":\"d21101cd-e5c4-4d45-98d9-8846b3d99eab\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf93ad24-0371-4edc-a\",\"name\":\"Testbf93ad24-0371-4edc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T18:21:40.4476683Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T18:21:40.4476683Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf04bf269-e865-4f9f-8\",\"name\":\"Testf04bf269-e865-4f9f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T19:05:18.7879983Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T19:05:18.7879983Z\"},\"identity\":{\"principalId\":\"6a131146-4e94-453b-abcb-2bc7c24e5f37\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaa56ce54-d5e3-49a4-a\",\"name\":\"Testaa56ce54-d5e3-49a4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T20:32:55.8138899Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T20:32:55.8138899Z\"},\"identity\":{\"principalId\":\"5b0586b9-fe11-4d77-ab7a-84e05ea69656\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfde27719-7f42-4eb3-9\",\"name\":\"Testfde27719-7f42-4eb3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T20:41:40.2770381Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T20:41:40.2770381Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbb708d2c-7750-490e-9\",\"name\":\"Testbb708d2c-7750-490e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T21:01:40.4120533Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T21:01:40.4120533Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9f7bb514-95da-4805-b\",\"name\":\"Test9f7bb514-95da-4805-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T21:11:39.7696278Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T21:11:39.7696278Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl\",\"name\":\"deidServiceTestPl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"tag1\":\"newtag\"},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-03T21:34:12.3839943Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-03T21:34:12.3839943Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://erhdhgfdc7gfbnha.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl/privateEndpointConnections/newPL.205ebeb8-8c5e-4a53-af5e-65a8b1742b6d\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/newPL\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl/privateEndpointConnections/deidprivend.f9aba2fb-1155-47fa-9340-fe3e400bfdb2\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/deidprivend\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/testPL\",\"name\":\"testPL\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-10T21:12:59.6131826Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-10T21:12:59.6131826Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fjbkh4cqdpe8hwet.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/sysAssignedId\",\"name\":\"sysAssignedId\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"tag1\":\"newtag\"},\"systemData\":{\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-13T17:37:14.3387424Z\"},\"identity\":{\"principalId\":\"9a1d969f-e6a8-49b4-8b7e-a5433995abb2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hvadefchfua6ftev.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6321f916-25fb-4fc8-8\",\"name\":\"Test6321f916-25fb-4fc8-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-21T16:40:05.0949754Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-21T16:40:05.0949754Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bdawgsb7hrbbe6bn.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test541e6e55-704c-44f2-a\",\"name\":\"Test541e6e55-704c-44f2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-22T03:20:10.7601885Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-22T03:20:10.7601885Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f6akaxfpafdxh0ar.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testPL2\",\"name\":\"testPL2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-24T19:33:59.0327006Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-24T19:33:59.0327006Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://avazb0ghcmcgakb2.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testPL2/privateEndpointConnections/deidPrivateEndpoint321.96cf71d4-af45-45be-96f2-3d8fc595ca36\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/deidPrivateEndpoint321\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved by johndoe@company.com\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste7a29369-726b-4c84-a\",\"name\":\"Teste7a29369-726b-4c84-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-25T21:20:06.3244568Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-25T21:20:06.3244568Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c8dagne0d5emhya9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f29e51f-926a-4677-9\",\"name\":\"Test7f29e51f-926a-4677-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-25T21:20:30.3680815Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-25T21:20:30.3680815Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hnaze8acb6dvhndg.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testDeidPlManual\",\"name\":\"testDeidPlManual\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-15T22:24:50.2812382Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-15T22:24:50.2812382Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzcqfdgrfkg2huhw.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled\",\"name\":\"pltestdisabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T19:16:27.8732354Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fzesd4dfenh6bsd9.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe770d1b-6980-4e18-9\",\"name\":\"Testbe770d1b-6980-4e18-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-17T20:23:18.4418245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-17T20:23:18.4418245Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fad7bjbneth9gzdf.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testcny002\",\"name\":\"testcny002\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-17T21:09:44.1667859Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T21:09:44.1667859Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efbedbeebubfdebs.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test84095079-4b98-4ec9-9\",\"name\":\"Test84095079-4b98-4ec9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-17T21:46:16.0393478Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-17T21:46:16.0393478Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4a5c3deevd3ezf4.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testdeidplauto2\",\"name\":\"testdeidplauto2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-17T22:29:37.8729156Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T22:29:37.8729156Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buf4cndqfaesgtcg.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testdeidplauto2/privateEndpointConnections/newPLManualTest123.e6577b74-5744-4234-8cf6-111c19d4057e\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/newPLManualTest123\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled2\",\"name\":\"pltestdisabled2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T00:28:31.2703799Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T00:28:31.2703799Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dycxeub6gfbcbzas.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled3\",\"name\":\"pltestdisabled3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T04:35:01.0885005Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T04:35:01.0885005Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c5cne0gtaxc2dzcx.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestenabled\",\"name\":\"pltestenabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T04:35:32.6234762Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T04:53:43.2223465Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gja2azg9bkcmbkgv.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste433caae-9c9b-4c16-b\",\"name\":\"Teste433caae-9c9b-4c16-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T14:37:31.2052991Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:14.3152293Z\"},\"identity\":{\"principalId\":\"1e798ce0-7a7a-4ee3-aa8f-7fc9bb9f707f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9h7b5a2ewg6e5du.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test91886748-2f52-447d-9\",\"name\":\"Test91886748-2f52-447d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T16:26:16.5199502Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-18T16:26:16.5199502Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hqg6h7cqecc0f2fy.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-sdk-dev-gthomas/providers/microsoft.healthdataaiservices/deidservices/deid-sdk-dev-gthomas-eup\",\"name\":\"deid-sdk-dev-gthomas-eup\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T17:13:41.2375465Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-23T00:06:59.7446283Z\"},\"identity\":{\"principalId\":\"0129a479-6294-4906-9e12-2e9e05dbefb7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dpg2gkb3a2bkfwg3.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testda62732d-0828-4397-b\",\"name\":\"Testda62732d-0828-4397-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T22:17:32.6395661Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:15.9234672Z\"},\"identity\":{\"principalId\":\"ed6bad84-1d9b-43b8-a161-1919e5dc00ed\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmavgea3baddhrgq.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cnydisableddelete\",\"name\":\"cnydisableddelete\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T01:08:30.63945Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T02:27:24.6559072Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hterfhf2e5aebfgx.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cny002alexa\",\"name\":\"cny002alexa\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T04:45:26.5402585Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T04:45:26.5402585Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d6a3cpanhvekf7d2.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cny002alexaenabled\",\"name\":\"cny002alexaenabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T05:04:17.5859606Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T05:05:37.6592602Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h2egckfgfpaaeqba.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6875fb8c-481b-44fb-b\",\"name\":\"Test6875fb8c-481b-44fb-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-19T18:07:33.8763819Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:16.6336799Z\"},\"identity\":{\"principalId\":\"41d0b01d-da21-42e0-952b-6d9008ea5bab\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gecxhydbh2cnerdb.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0722\",\"name\":\"test0722\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-22T13:19:49.4618059Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-23T21:20:04.7661563Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8f6c9axgyanfdaj.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0722/privateEndpointConnections/test0722pl.72fabf6a-01c1-4911-88f5-a96420ceb718\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0722pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1a880c9-e1d7-414e-8\",\"name\":\"Teste1a880c9-e1d7-414e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-23T02:15:13.2322497Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-23T02:15:13.2322497Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fnhza2e9avd8htep.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa073patch\",\"name\":\"alexa073patch\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-23T18:38:37.804077Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:29:08.1219026Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqadfygeagdkhygp.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0723\",\"name\":\"test0723\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-23T21:36:14.4676287Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-23T22:14:49.0339527Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brg9dsapavg2c6dk.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0723/privateEndpointConnections/test0723pl.3de8fd1e-d76f-4286-b90e-e4a75d9be521\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0723pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0725\",\"name\":\"test0725\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-25T21:35:17.4224809Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T22:50:45.2266916Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e5apabg2hnche4bv.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0725auto\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0725/privateEndpointConnections/test0725auto.99c3fb28-c9c2-4764-9754-962a5661c1ff\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0725manual\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0725/privateEndpointConnections/test0725manual.71316cb7-8f96-4078-8b93-1a55acc21f85\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725\",\"name\":\"alexa0725\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-25T23:54:40.0387919Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-25T23:55:33.4079214Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dvc4gmgpfdctc0c3.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725again2\",\"name\":\"alexa0725again2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-26T00:20:50.7189692Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:27:38.3288062Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g7d4e7hpdza2hgca.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725again3\",\"name\":\"alexa0725again3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-26T00:43:08.1376806Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:44:02.8776556Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h5emfaatg3bfefaz.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0729\",\"name\":\"test0729\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-29T13:30:21.5934928Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-16T20:47:56.5044908Z\"},\"identity\":{\"principalId\":\"075c8b2d-a1e2-4948-b9bd-56ae75b0072c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpf6cvhzh7g0h0dj.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0729v1\",\"name\":\"test0729v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T00:22:08.4404723Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-30T16:38:50.1818986Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://and2dtdxgnfcedd0.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/privateendpoint2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0729v1/privateEndpointConnections/privateendpoint2.ffc3ed5a-0f5b-4cd5-acc7-5d417356a16f\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0730v1\",\"name\":\"test0730v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T16:39:22.9446072Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-05T23:04:28.1814769Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ezcfh6hpdjf4e6as.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0730v1/privateEndpointConnections/test0806.e9cd3a40-e666-4c80-9aea-3d514c9c2bd3\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/test0806\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"}}}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0730demo\",\"name\":\"test0730demo\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T17:14:54.7706591Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-30T17:14:54.7706591Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c6czgkabb6gnh7d9.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801all\",\"name\":\"test0801all\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T00:09:57.9314888Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T00:07:40.714Z\"},\"identity\":{\"principalId\":\"4e596332-04f0-4743-95bf-e9c6ce3c76c0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://arh2bwaaeqewehhx.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801public\",\"name\":\"test0801public\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T00:58:54.8826933Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T00:07:41.903045Z\"},\"identity\":{\"principalId\":\"c6048863-1678-4608-a185-1e2bf49d250e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmdtg3dag0axaxfe.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801deid\",\"name\":\"test0801deid\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T12:24:14.486183Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T18:57:54.0730875Z\"},\"identity\":{\"principalId\":\"38185316-41b3-4dac-b0d9-b19efdb3be99\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoodeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-asmahmoodeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f9dybbdshvend4dz.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809euap\",\"name\":\"plval0809euap\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T21:43:51.418236Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-28T16:50:02.1741996Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eseebtd3ajaxgxh4.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-euap2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809euap/privateEndpointConnections/pl-euap2.f110014f-e8aa-4917-8663-e2e618c52017\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0809\",\"name\":\"alexa0809\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:46:47.3233012Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:46:47.3233012Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvffgqfecnhgaxef.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/alexa0809/privateEndpointConnections/peeuap.5f1a0318-ddf4-40f8-85b8-ce58ee5e85f7\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeuap\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0809/privateEndpointConnections/peeus0814manual.aeec8437-917c-470b-b148-b344a67efab9\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0814manual\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"approved pe\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/alexa0809/privateEndpointConnections/testpecrossregion.c8058284-0f31-4dd2-838d-7b966c490e9b\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpecrossregion\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814\",\"name\":\"test0814\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-14T20:14:19.4225466Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-30T20:20:46.1466584Z\"},\"identity\":{\"principalId\":\"5d8d9efd-4649-47d5-8a41-46df205b6a9d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvbhevf3bwfkg8h7.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0814manual2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/peeus0814manual2.c199e81e-9008-4e36-b847-ba1d0e98a57d\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testpe2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/testpe2.28ca2e9a-5e25-4870-b7af-5529c50605cb\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"reject\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/testpl.068fad0b-c8ac-40d7-a0fb-dccebc629644\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/pev2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814/privateEndpointConnections/pev2.d875c1a8-f613-49da-ab46-16eaf0b79ba2\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/private-endpoint\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814/privateEndpointConnections/private-endpoint.3db275cc-6678-4cde-824f-0cae45812cc7\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/demo0815auto\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/demo0815auto.f290340a-f490-4c8f-b4b7-90b76afe1e12\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/demo0815manual\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/demo0815manual.c5c54b02-454f-43ea-8e56-0f054096a405\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.HealthDataAIServices/DeidServices/msoenntest\",\"name\":\"msoenntest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"msoennichsen@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-19T18:51:13.8508128Z\",\"lastModifiedBy\":\"msoennichsen@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T18:57:11.3280852Z\"},\"identity\":{\"principalId\":\"84bdc5ea-f750-44d4-9b6d-bd2af1d6eb37\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-msoennicdeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5ffdxhkg7aua4g0.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/SwaggerResource\",\"name\":\"SwaggerResource\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-24T21:05:12.2878593Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-24T21:05:12.2878593Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gch5gycpe2f6apbb.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny-pl\",\"name\":\"syntheticscny-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T20:16:50.9705435Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:16:50.9705435Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aab7gvc5hkh6ejhz.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny-pl/privateEndpointConnections/pe-syntheticscny-pl.f8e97798-4c5b-406f-8c4e-692bc6413fa1\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscny-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuap1\",\"name\":\"testeuap1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-15T21:47:03.1351325Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-15T21:47:03.1351325Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Failed\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuapfix\",\"name\":\"testeuapfix\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-16T00:04:52.5975153Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-16T00:04:52.5975153Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e0h7f9cycfhwevg6.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuapfix/privateEndpointConnections/plfix.031101be-b2b3-4373-921d-4b0c25d3e530\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/plfix\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/test1015\",\"name\":\"test1015\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-16T00:09:04.4778867Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-16T00:09:04.4778867Z\"},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/deid-identity\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://atahbsdcdnahhveq.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/portalTest\",\"name\":\"portalTest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-22T05:36:35.3578903Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-22T05:36:35.3578903Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f8gxf3b2g7hgg3h8.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}]}", + "isContentBase64": false + } + }, + "Get-AzDeidService+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "23" ], + "x-ms-client-request-id": [ "a8b607c2-2430-4ed6-8cab-b384e1306fcf" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901a032-0000-0800-0000-671c1a3e0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "e76b9911-1ab0-4bae-a9da-f86177f54929" ], + "x-ms-correlation-request-id": [ "4fff723c-ff6e-4ea5-81c8-de4629e10a31" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T222901Z:4fff723c-ff6e-4ea5-81c8-de4629e10a31" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E859D5F4036646EA925ABFDABF6F4D93 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:29:01Z" ], + "Date": [ "Fri, 25 Oct 2024 22:29:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op\",\"name\":\"qkz9op\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:22:46.2407678Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:22:46.2407678Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e6g2dedxg0ccgvej.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Get-AzDeidService+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "24" ], + "x-ms-client-request-id": [ "78f79da5-acf6-4b76-9bea-be9bbf6cf213" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_List1" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "29d8696f-0ce5-4270-b478-d94d11289fde" ], + "x-ms-correlation-request-id": [ "9433a2b1-9434-4b9d-b3fd-03b99f1a4e1b" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T222902Z:9433a2b1-9434-4b9d-b3fd-03b99f1a4e1b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 3C0624C57439438BA840A2938EB331A7 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:29:01Z" ], + "Date": [ "Fri, 25 Oct 2024 22:29:01 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "2567" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op\",\"name\":\"qkz9op\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:22:46.2407678Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:22:46.2407678Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e6g2dedxg0ccgvej.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta\",\"name\":\"x9mpta\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:24:18.8831832Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:24:18.8831832Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fndahkgagbffe9ev.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/o6rwcu\",\"name\":\"o6rwcu\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:25:51.3491296Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:25:51.3491296Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cuf4adccdfbaene7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7\",\"name\":\"nxe5i7\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:27:24.2551919Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:27:24.2551919Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hkavhfd6b5b5gxcq.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}]}", + "isContentBase64": false + } + }, + "Get-AzDeidService+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "25" ], + "x-ms-client-request-id": [ "b0ad34db-5afb-451b-8019-8ee4af4edb54" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901a032-0000-0800-0000-671c1a3e0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "6d0139d3-2cbb-49fc-a0cc-3221f53133a7" ], + "x-ms-correlation-request-id": [ "a89dd8ba-7c23-444e-b559-8fd92f4d2250" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T222902Z:a89dd8ba-7c23-444e-b559-8fd92f4d2250" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2819A82DD5524C8D818790EE65235486 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:29:02Z" ], + "Date": [ "Fri, 25 Oct 2024 22:29:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op\",\"name\":\"qkz9op\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:22:46.2407678Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:22:46.2407678Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e6g2dedxg0ccgvej.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Get-AzDeidService+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "26" ], + "x-ms-client-request-id": [ "ddaf1648-8ef2-47cb-8052-cd594d4a2363" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_GetViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901a032-0000-0800-0000-671c1a3e0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "d0352ff7-79a0-4d2d-8a4e-b7483840b1ee" ], + "x-ms-correlation-request-id": [ "16d11dae-f0f7-4aac-a3e5-bb5f2b753d7a" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T222902Z:16d11dae-f0f7-4aac-a3e5-bb5f2b753d7a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 94EF13C005D940BB9F273AAB23BDF8C5 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:29:02Z" ], + "Date": [ "Fri, 25 Oct 2024 22:29:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op\",\"name\":\"qkz9op\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:22:46.2407678Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:22:46.2407678Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e6g2dedxg0ccgvej.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Get-AzDeidService.Tests.ps1 b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Get-AzDeidService.Tests.ps1 new file mode 100644 index 000000000000..cda44e916c27 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Get-AzDeidService.Tests.ps1 @@ -0,0 +1,48 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Get-AzDeidService')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzDeidService.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Get-AzDeidService' { + It 'List' { + { + $config = Get-AzDeidService + $config.Count | Should -BeGreaterThan 0 + } | Should -Not -Throw + } + + It 'Get' { + { + $config = Get-AzDeidService -Name $env.deidServiceName -ResourceGroupName $env.resourceGroupName + $config.Name | Should -Be $env.deidServiceName + } | Should -Not -Throw + } + + It 'List1' { + { + $config = Get-AzDeidService -ResourceGroupName $env.resourceGroupName + $config.Count | Should -BeGreaterThan 0 + $config[0].Name | Should -Not -BeNullOrEmpty + $config[0].ResourceGroupName | Should -Be $env.resourceGroupName + } | Should -Not -Throw + } + + It 'GetViaIdentity' { + { + $config = Get-AzDeidService -Name $env.deidServiceName -ResourceGroupName $env.resourceGroupName + $config2 = Get-AzDeidService -InputObject $config + $config2.Name | Should -Be $env.deidServiceName + } | Should -Not -Throw + } +} diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/New-AzDeidService.Recording.json b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/New-AzDeidService.Recording.json new file mode 100644 index 000000000000..781dc1db5246 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/New-AzDeidService.Recording.json @@ -0,0 +1,662 @@ +{ + "New-AzDeidService+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/aygw8q?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/aygw8q?api-version=2024-02-28-preview", + "Content": "{\n \"location\": \"eastus2\"\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "27" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"49010775-0000-0800-0000-671c1bb40000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "f457f251-81d2-4ab5-8002-b67ad948fcc0" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "ea384b5f-7fa0-440d-8db0-be3a06441c16" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8?api-version=2024-02-28-preview\u0026t=638654921489249593\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=VS9Ickrvt77tctRjuO1iVNuj0UgGYEbUD9SnQnrpB21_0sq-p2VaKmd3ZR-w17KWVW1Cj0qI-wm_DxFa3LxJL5pz7XOIWAiPzZQPHqXSratVGL0dfbNiU3fDELZajoVkniyF0Re0PEyRJe3weWcpqdOBG945qZto4vhp1Z4htbIx7uvke4VbNjRuCwzjHL9oRNR7cXdP9ZbIV7dhLT0e3M3cyMWTWGptlQpP4tm7T5DzVVNzNVmR_EGr2QA3FOkbg4Se1p8wVPwfC9mdn9cF_09phBM_vdeYnKZiNrIJLAfbnpOnDFMeUsLDseOWylMddVVmGXgss_25IulBfkqnLQ\u0026h=VoA1NpdZBGJXsaUYuy3AqIZPNHAWvhIClFYZgzOEJq4" ], + "x-ms-request-id": [ "d2a25e9f-4914-46bc-8733-9b3767f3de83" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T222908Z:ea384b5f-7fa0-440d-8db0-be3a06441c16" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 562141A4501B4EF4BD5163B2627BFEED Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:29:06Z" ], + "Date": [ "Fri, 25 Oct 2024 22:29:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "528" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/aygw8q\",\"name\":\"aygw8q\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:29:08.0969638Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:29:08.0969638Z\"},\"properties\":{\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8?api-version=2024-02-28-preview\u0026t=638654921489249593\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=VS9Ickrvt77tctRjuO1iVNuj0UgGYEbUD9SnQnrpB21_0sq-p2VaKmd3ZR-w17KWVW1Cj0qI-wm_DxFa3LxJL5pz7XOIWAiPzZQPHqXSratVGL0dfbNiU3fDELZajoVkniyF0Re0PEyRJe3weWcpqdOBG945qZto4vhp1Z4htbIx7uvke4VbNjRuCwzjHL9oRNR7cXdP9ZbIV7dhLT0e3M3cyMWTWGptlQpP4tm7T5DzVVNzNVmR_EGr2QA3FOkbg4Se1p8wVPwfC9mdn9cF_09phBM_vdeYnKZiNrIJLAfbnpOnDFMeUsLDseOWylMddVVmGXgss_25IulBfkqnLQ\u0026h=VoA1NpdZBGJXsaUYuy3AqIZPNHAWvhIClFYZgzOEJq4+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8?api-version=2024-02-28-preview\u0026t=638654921489249593\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=VS9Ickrvt77tctRjuO1iVNuj0UgGYEbUD9SnQnrpB21_0sq-p2VaKmd3ZR-w17KWVW1Cj0qI-wm_DxFa3LxJL5pz7XOIWAiPzZQPHqXSratVGL0dfbNiU3fDELZajoVkniyF0Re0PEyRJe3weWcpqdOBG945qZto4vhp1Z4htbIx7uvke4VbNjRuCwzjHL9oRNR7cXdP9ZbIV7dhLT0e3M3cyMWTWGptlQpP4tm7T5DzVVNzNVmR_EGr2QA3FOkbg4Se1p8wVPwfC9mdn9cF_09phBM_vdeYnKZiNrIJLAfbnpOnDFMeUsLDseOWylMddVVmGXgss_25IulBfkqnLQ\u0026h=VoA1NpdZBGJXsaUYuy3AqIZPNHAWvhIClFYZgzOEJq4", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "28" ], + "x-ms-client-request-id": [ "a5c02081-b076-4f33-bfa4-0c222049306d" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c035b82-0000-0800-0000-671c1bb40000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "8f172138-0d0a-4ca0-9100-f6fcc1d0fe40" ], + "x-ms-correlation-request-id": [ "eaf015c2-207f-4034-a960-1648a297307f" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T222939Z:eaf015c2-207f-4034-a960-1648a297307f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 54703996FDE04E40A5BA2F387542BD71 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:29:39Z" ], + "Date": [ "Fri, 25 Oct 2024 22:29:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8\",\"name\":\"d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/aygw8q\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T22:29:08.3304693Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8?api-version=2024-02-28-preview\u0026t=638654921489249593\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=VS9Ickrvt77tctRjuO1iVNuj0UgGYEbUD9SnQnrpB21_0sq-p2VaKmd3ZR-w17KWVW1Cj0qI-wm_DxFa3LxJL5pz7XOIWAiPzZQPHqXSratVGL0dfbNiU3fDELZajoVkniyF0Re0PEyRJe3weWcpqdOBG945qZto4vhp1Z4htbIx7uvke4VbNjRuCwzjHL9oRNR7cXdP9ZbIV7dhLT0e3M3cyMWTWGptlQpP4tm7T5DzVVNzNVmR_EGr2QA3FOkbg4Se1p8wVPwfC9mdn9cF_09phBM_vdeYnKZiNrIJLAfbnpOnDFMeUsLDseOWylMddVVmGXgss_25IulBfkqnLQ\u0026h=VoA1NpdZBGJXsaUYuy3AqIZPNHAWvhIClFYZgzOEJq4+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8?api-version=2024-02-28-preview\u0026t=638654921489249593\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=VS9Ickrvt77tctRjuO1iVNuj0UgGYEbUD9SnQnrpB21_0sq-p2VaKmd3ZR-w17KWVW1Cj0qI-wm_DxFa3LxJL5pz7XOIWAiPzZQPHqXSratVGL0dfbNiU3fDELZajoVkniyF0Re0PEyRJe3weWcpqdOBG945qZto4vhp1Z4htbIx7uvke4VbNjRuCwzjHL9oRNR7cXdP9ZbIV7dhLT0e3M3cyMWTWGptlQpP4tm7T5DzVVNzNVmR_EGr2QA3FOkbg4Se1p8wVPwfC9mdn9cF_09phBM_vdeYnKZiNrIJLAfbnpOnDFMeUsLDseOWylMddVVmGXgss_25IulBfkqnLQ\u0026h=VoA1NpdZBGJXsaUYuy3AqIZPNHAWvhIClFYZgzOEJq4", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "29" ], + "x-ms-client-request-id": [ "a5c02081-b076-4f33-bfa4-0c222049306d" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c035b82-0000-0800-0000-671c1bb40000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "be2a65c1-7c59-490c-8246-c9e239fa55da" ], + "x-ms-correlation-request-id": [ "e8b229c8-3bca-4529-bdcd-c9cc4c8ce335" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223009Z:e8b229c8-3bca-4529-bdcd-c9cc4c8ce335" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 23D188DE46784C95A176C703A9301907 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:30:09Z" ], + "Date": [ "Fri, 25 Oct 2024 22:30:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8\",\"name\":\"d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/aygw8q\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T22:29:08.3304693Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8?api-version=2024-02-28-preview\u0026t=638654921489249593\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=VS9Ickrvt77tctRjuO1iVNuj0UgGYEbUD9SnQnrpB21_0sq-p2VaKmd3ZR-w17KWVW1Cj0qI-wm_DxFa3LxJL5pz7XOIWAiPzZQPHqXSratVGL0dfbNiU3fDELZajoVkniyF0Re0PEyRJe3weWcpqdOBG945qZto4vhp1Z4htbIx7uvke4VbNjRuCwzjHL9oRNR7cXdP9ZbIV7dhLT0e3M3cyMWTWGptlQpP4tm7T5DzVVNzNVmR_EGr2QA3FOkbg4Se1p8wVPwfC9mdn9cF_09phBM_vdeYnKZiNrIJLAfbnpOnDFMeUsLDseOWylMddVVmGXgss_25IulBfkqnLQ\u0026h=VoA1NpdZBGJXsaUYuy3AqIZPNHAWvhIClFYZgzOEJq4+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8?api-version=2024-02-28-preview\u0026t=638654921489249593\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=VS9Ickrvt77tctRjuO1iVNuj0UgGYEbUD9SnQnrpB21_0sq-p2VaKmd3ZR-w17KWVW1Cj0qI-wm_DxFa3LxJL5pz7XOIWAiPzZQPHqXSratVGL0dfbNiU3fDELZajoVkniyF0Re0PEyRJe3weWcpqdOBG945qZto4vhp1Z4htbIx7uvke4VbNjRuCwzjHL9oRNR7cXdP9ZbIV7dhLT0e3M3cyMWTWGptlQpP4tm7T5DzVVNzNVmR_EGr2QA3FOkbg4Se1p8wVPwfC9mdn9cF_09phBM_vdeYnKZiNrIJLAfbnpOnDFMeUsLDseOWylMddVVmGXgss_25IulBfkqnLQ\u0026h=VoA1NpdZBGJXsaUYuy3AqIZPNHAWvhIClFYZgzOEJq4", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "30" ], + "x-ms-client-request-id": [ "a5c02081-b076-4f33-bfa4-0c222049306d" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c03a891-0000-0800-0000-671c1bf60000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "ffc20fb1-8a49-4ca7-902e-0e9fac421786" ], + "x-ms-correlation-request-id": [ "b568748d-b85e-4fa3-ab60-c236d2ae5767" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223039Z:b568748d-b85e-4fa3-ab60-c236d2ae5767" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DAAF57F3C34540849F5377827E1193F2 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:30:39Z" ], + "Date": [ "Fri, 25 Oct 2024 22:30:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "634" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8\",\"name\":\"d2a25e9f-4914-46bc-8733-9b3767f3de83*0496D3C8D5C05730B98444C2A584412251FA127B1773F776538D6E2D124457B8\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/aygw8q\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T22:29:08.3304693Z\",\"endTime\":\"2024-10-25T22:29:16.0046243Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/aygw8q?api-version=2024-02-28-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/aygw8q?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "31" ], + "x-ms-client-request-id": [ "a5c02081-b076-4f33-bfa4-0c222049306d" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901e875-0000-0800-0000-671c1bbc0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "67434fbf-2809-4907-83df-84a6a2fc6b80" ], + "x-ms-correlation-request-id": [ "b42f9653-3bf7-4879-89db-20ee8cc53b50" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223039Z:b42f9653-3bf7-4879-89db-20ee8cc53b50" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F7309DCEB6104305B0CFE678BE803F29 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:30:39Z" ], + "Date": [ "Fri, 25 Oct 2024 22:30:39 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/aygw8q\",\"name\":\"aygw8q\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:29:08.0969638Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:29:08.0969638Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ewcehde6eqe7g3df.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/v06dmp?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/v06dmp?api-version=2024-02-28-preview", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "100" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"49015780-0000-0800-0000-671c1c110000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "bd615ae6-0e56-4148-bc90-82c9ffafe6dd" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "a92bcad5-d712-405d-b381-c8e4294a7ec9" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640?api-version=2024-02-28-preview\u0026t=638654922417961165\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=fYCIch3ejIhYm5HnzLGoTGLUVArVmWjz4PT9lNplui5coGqnvj514JqygBqrNgW3hak_yAbtmlg1y07AS87YTRYRQUyuLDKSoC3hVdZoG0VkKVYLXRhV5tPkMfWMP8p14YVlAP5VexTnZStWSu4ZDe0mBhGPH4BwgG9Bjh0tspvSneMKsZTxQoFig8vLwBn1cFxo_JzRepVC2CQq6a-vIfjUqc8MpjfnM5REzugiaVEUS64tual3SYBWd0an4USXTZPjaFB6cW3ANBF-dkcXkAE8Pti7cFZdJi11GB9udfqy67o3Cna3dR1zlckw2JASK91tztSn_qcLztpKAdYklg\u0026h=MZYpxDQ8_1ihmRrit6f9B4G7Am0bQ-Bj2X-XTRMOnR0" ], + "x-ms-request-id": [ "7dc64b2d-7490-4077-9ee3-cd6920221482" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223041Z:a92bcad5-d712-405d-b381-c8e4294a7ec9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7B770C205D544A98A01FED5ED2B5DA07 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:30:39Z" ], + "Date": [ "Fri, 25 Oct 2024 22:30:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "560" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/v06dmp\",\"name\":\"v06dmp\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:30:41.0148561Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:30:41.0148561Z\"},\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640?api-version=2024-02-28-preview\u0026t=638654922417961165\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=fYCIch3ejIhYm5HnzLGoTGLUVArVmWjz4PT9lNplui5coGqnvj514JqygBqrNgW3hak_yAbtmlg1y07AS87YTRYRQUyuLDKSoC3hVdZoG0VkKVYLXRhV5tPkMfWMP8p14YVlAP5VexTnZStWSu4ZDe0mBhGPH4BwgG9Bjh0tspvSneMKsZTxQoFig8vLwBn1cFxo_JzRepVC2CQq6a-vIfjUqc8MpjfnM5REzugiaVEUS64tual3SYBWd0an4USXTZPjaFB6cW3ANBF-dkcXkAE8Pti7cFZdJi11GB9udfqy67o3Cna3dR1zlckw2JASK91tztSn_qcLztpKAdYklg\u0026h=MZYpxDQ8_1ihmRrit6f9B4G7Am0bQ-Bj2X-XTRMOnR0+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640?api-version=2024-02-28-preview\u0026t=638654922417961165\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=fYCIch3ejIhYm5HnzLGoTGLUVArVmWjz4PT9lNplui5coGqnvj514JqygBqrNgW3hak_yAbtmlg1y07AS87YTRYRQUyuLDKSoC3hVdZoG0VkKVYLXRhV5tPkMfWMP8p14YVlAP5VexTnZStWSu4ZDe0mBhGPH4BwgG9Bjh0tspvSneMKsZTxQoFig8vLwBn1cFxo_JzRepVC2CQq6a-vIfjUqc8MpjfnM5REzugiaVEUS64tual3SYBWd0an4USXTZPjaFB6cW3ANBF-dkcXkAE8Pti7cFZdJi11GB9udfqy67o3Cna3dR1zlckw2JASK91tztSn_qcLztpKAdYklg\u0026h=MZYpxDQ8_1ihmRrit6f9B4G7Am0bQ-Bj2X-XTRMOnR0", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "33" ], + "x-ms-client-request-id": [ "4d0dda4b-1756-4ce6-a146-dfb85871f8b6" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c032c98-0000-0800-0000-671c1c110000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "189e2a14-b2e0-43a6-a931-34e71958bcc6" ], + "x-ms-correlation-request-id": [ "c1ec0393-bcc4-49b5-a7e0-3d206d012f21" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223112Z:c1ec0393-bcc4-49b5-a7e0-3d206d012f21" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A83BE58F104547FA8A6B2FE352C8F33F Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:31:11Z" ], + "Date": [ "Fri, 25 Oct 2024 22:31:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "573" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640\",\"name\":\"7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/v06dmp\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T22:30:41.2731656Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640?api-version=2024-02-28-preview\u0026t=638654922417961165\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=fYCIch3ejIhYm5HnzLGoTGLUVArVmWjz4PT9lNplui5coGqnvj514JqygBqrNgW3hak_yAbtmlg1y07AS87YTRYRQUyuLDKSoC3hVdZoG0VkKVYLXRhV5tPkMfWMP8p14YVlAP5VexTnZStWSu4ZDe0mBhGPH4BwgG9Bjh0tspvSneMKsZTxQoFig8vLwBn1cFxo_JzRepVC2CQq6a-vIfjUqc8MpjfnM5REzugiaVEUS64tual3SYBWd0an4USXTZPjaFB6cW3ANBF-dkcXkAE8Pti7cFZdJi11GB9udfqy67o3Cna3dR1zlckw2JASK91tztSn_qcLztpKAdYklg\u0026h=MZYpxDQ8_1ihmRrit6f9B4G7Am0bQ-Bj2X-XTRMOnR0+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640?api-version=2024-02-28-preview\u0026t=638654922417961165\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=fYCIch3ejIhYm5HnzLGoTGLUVArVmWjz4PT9lNplui5coGqnvj514JqygBqrNgW3hak_yAbtmlg1y07AS87YTRYRQUyuLDKSoC3hVdZoG0VkKVYLXRhV5tPkMfWMP8p14YVlAP5VexTnZStWSu4ZDe0mBhGPH4BwgG9Bjh0tspvSneMKsZTxQoFig8vLwBn1cFxo_JzRepVC2CQq6a-vIfjUqc8MpjfnM5REzugiaVEUS64tual3SYBWd0an4USXTZPjaFB6cW3ANBF-dkcXkAE8Pti7cFZdJi11GB9udfqy67o3Cna3dR1zlckw2JASK91tztSn_qcLztpKAdYklg\u0026h=MZYpxDQ8_1ihmRrit6f9B4G7Am0bQ-Bj2X-XTRMOnR0", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "34" ], + "x-ms-client-request-id": [ "4d0dda4b-1756-4ce6-a146-dfb85871f8b6" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c032c98-0000-0800-0000-671c1c110000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "69f3b812-3d61-40a4-bd9b-d3dfcb6c9046" ], + "x-ms-correlation-request-id": [ "02767551-c837-4d9d-80bb-5594a4d31aaf" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223142Z:02767551-c837-4d9d-80bb-5594a4d31aaf" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B89851FD8143478BA3BAB224E007875D Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:31:42Z" ], + "Date": [ "Fri, 25 Oct 2024 22:31:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "573" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640\",\"name\":\"7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/v06dmp\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T22:30:41.2731656Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640?api-version=2024-02-28-preview\u0026t=638654922417961165\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=fYCIch3ejIhYm5HnzLGoTGLUVArVmWjz4PT9lNplui5coGqnvj514JqygBqrNgW3hak_yAbtmlg1y07AS87YTRYRQUyuLDKSoC3hVdZoG0VkKVYLXRhV5tPkMfWMP8p14YVlAP5VexTnZStWSu4ZDe0mBhGPH4BwgG9Bjh0tspvSneMKsZTxQoFig8vLwBn1cFxo_JzRepVC2CQq6a-vIfjUqc8MpjfnM5REzugiaVEUS64tual3SYBWd0an4USXTZPjaFB6cW3ANBF-dkcXkAE8Pti7cFZdJi11GB9udfqy67o3Cna3dR1zlckw2JASK91tztSn_qcLztpKAdYklg\u0026h=MZYpxDQ8_1ihmRrit6f9B4G7Am0bQ-Bj2X-XTRMOnR0+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640?api-version=2024-02-28-preview\u0026t=638654922417961165\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=fYCIch3ejIhYm5HnzLGoTGLUVArVmWjz4PT9lNplui5coGqnvj514JqygBqrNgW3hak_yAbtmlg1y07AS87YTRYRQUyuLDKSoC3hVdZoG0VkKVYLXRhV5tPkMfWMP8p14YVlAP5VexTnZStWSu4ZDe0mBhGPH4BwgG9Bjh0tspvSneMKsZTxQoFig8vLwBn1cFxo_JzRepVC2CQq6a-vIfjUqc8MpjfnM5REzugiaVEUS64tual3SYBWd0an4USXTZPjaFB6cW3ANBF-dkcXkAE8Pti7cFZdJi11GB9udfqy67o3Cna3dR1zlckw2JASK91tztSn_qcLztpKAdYklg\u0026h=MZYpxDQ8_1ihmRrit6f9B4G7Am0bQ-Bj2X-XTRMOnR0", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "35" ], + "x-ms-client-request-id": [ "4d0dda4b-1756-4ce6-a146-dfb85871f8b6" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c03c7a6-0000-0800-0000-671c1c530000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "a1b31de9-4e8e-42c3-8f27-90f0a8ff43f9" ], + "x-ms-correlation-request-id": [ "e32ba7b2-d0f4-4ee9-b692-12745c5c951e" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223212Z:e32ba7b2-d0f4-4ee9-b692-12745c5c951e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F1E6290DC32E487EB2603DAE8394F739 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:32:12Z" ], + "Date": [ "Fri, 25 Oct 2024 22:32:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "633" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640\",\"name\":\"7dc64b2d-7490-4077-9ee3-cd6920221482*30DEA43638705812E77F21F95A49BE63B40FBD4DCCC4AC57A59A9DD899EEB640\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/v06dmp\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T22:30:41.2731656Z\",\"endTime\":\"2024-10-25T22:30:49.0992369Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/v06dmp?api-version=2024-02-28-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/v06dmp?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "36" ], + "x-ms-client-request-id": [ "4d0dda4b-1756-4ce6-a146-dfb85871f8b6" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"49012481-0000-0800-0000-671c1c190000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "da69b9a9-e3d3-4705-b1ab-8c92a9cccb7c" ], + "x-ms-correlation-request-id": [ "93cb1ef8-35c9-48fe-8303-2b20ff331f46" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223212Z:93cb1ef8-35c9-48fe-8303-2b20ff331f46" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6614CC60F2934C799E5CED76BB63B777 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:32:12Z" ], + "Date": [ "Fri, 25 Oct 2024 22:32:11 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "637" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/v06dmp\",\"name\":\"v06dmp\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:30:41.0148561Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:30:41.0148561Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bvarbfgnashebyhz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonString+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/5dmvzt?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/5dmvzt?api-version=2024-02-28-preview", + "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "100" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901ce8a-0000-0800-0000-671c1c6e0000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "d5a20581-618f-4685-81e5-237809834fa1" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "029e9c9b-c190-46e9-a053-a3e8e9d29cf7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D?api-version=2024-02-28-preview\u0026t=638654923343219920\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3MmLc03BeYc_hnk5m7Z5NeAowLrahNU9KoQ2ixe6bu6un4Yo0XcljNvL4PqYSH8jn6U046GQSF0xWN6eZ2T6HLTqXcH72S5ZLJZ-A6bs9XQiZ-Wl8LTMxWnX_DWabqSQy1TnHIAsqt64j4-5gJlnnPXb073wKf4NvzEU0ozZyBxsiw85bcgruEfa5E5q_9CkGLZOmoCRV-tUhqqVvhJYeuikw2MabyymUV6qrfjsYfRVeVPygYrxfCNQVwmb7atH4trgb__-KQBZrtmu4_k99z2zWwsrhyiQueDHarxmS1aytscgNYYaBnxrtSa4BsCXXYgWdp6qD-3TFwcUN4LWAQ\u0026h=T9ULXoaVy5m6PDTUSq_YGuwUNfD576AIDplpx7ghk7M" ], + "x-ms-request-id": [ "46667d26-6ec9-45d9-bd4d-fb458fb54931" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223214Z:029e9c9b-c190-46e9-a053-a3e8e9d29cf7" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8651242539874812936D4680018BD339 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:32:12Z" ], + "Date": [ "Fri, 25 Oct 2024 22:32:13 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "560" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/5dmvzt\",\"name\":\"5dmvzt\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:32:13.5251101Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:32:13.5251101Z\"},\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D?api-version=2024-02-28-preview\u0026t=638654923343219920\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3MmLc03BeYc_hnk5m7Z5NeAowLrahNU9KoQ2ixe6bu6un4Yo0XcljNvL4PqYSH8jn6U046GQSF0xWN6eZ2T6HLTqXcH72S5ZLJZ-A6bs9XQiZ-Wl8LTMxWnX_DWabqSQy1TnHIAsqt64j4-5gJlnnPXb073wKf4NvzEU0ozZyBxsiw85bcgruEfa5E5q_9CkGLZOmoCRV-tUhqqVvhJYeuikw2MabyymUV6qrfjsYfRVeVPygYrxfCNQVwmb7atH4trgb__-KQBZrtmu4_k99z2zWwsrhyiQueDHarxmS1aytscgNYYaBnxrtSa4BsCXXYgWdp6qD-3TFwcUN4LWAQ\u0026h=T9ULXoaVy5m6PDTUSq_YGuwUNfD576AIDplpx7ghk7M+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D?api-version=2024-02-28-preview\u0026t=638654923343219920\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3MmLc03BeYc_hnk5m7Z5NeAowLrahNU9KoQ2ixe6bu6un4Yo0XcljNvL4PqYSH8jn6U046GQSF0xWN6eZ2T6HLTqXcH72S5ZLJZ-A6bs9XQiZ-Wl8LTMxWnX_DWabqSQy1TnHIAsqt64j4-5gJlnnPXb073wKf4NvzEU0ozZyBxsiw85bcgruEfa5E5q_9CkGLZOmoCRV-tUhqqVvhJYeuikw2MabyymUV6qrfjsYfRVeVPygYrxfCNQVwmb7atH4trgb__-KQBZrtmu4_k99z2zWwsrhyiQueDHarxmS1aytscgNYYaBnxrtSa4BsCXXYgWdp6qD-3TFwcUN4LWAQ\u0026h=T9ULXoaVy5m6PDTUSq_YGuwUNfD576AIDplpx7ghk7M", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "38" ], + "x-ms-client-request-id": [ "0c84a659-a0c1-449b-96b5-55fd796800a0" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c03eaac-0000-0800-0000-671c1c6d0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "94a18c93-d1ce-45b4-807e-a6a1557948f4" ], + "x-ms-correlation-request-id": [ "387e2d73-2b75-44e5-af51-56bae8111ce6" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223244Z:387e2d73-2b75-44e5-af51-56bae8111ce6" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BF9A161E364442A78AE4613622225B4F Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:32:44Z" ], + "Date": [ "Fri, 25 Oct 2024 22:32:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "573" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D\",\"name\":\"46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/5dmvzt\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T22:32:13.7724562Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D?api-version=2024-02-28-preview\u0026t=638654923343219920\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3MmLc03BeYc_hnk5m7Z5NeAowLrahNU9KoQ2ixe6bu6un4Yo0XcljNvL4PqYSH8jn6U046GQSF0xWN6eZ2T6HLTqXcH72S5ZLJZ-A6bs9XQiZ-Wl8LTMxWnX_DWabqSQy1TnHIAsqt64j4-5gJlnnPXb073wKf4NvzEU0ozZyBxsiw85bcgruEfa5E5q_9CkGLZOmoCRV-tUhqqVvhJYeuikw2MabyymUV6qrfjsYfRVeVPygYrxfCNQVwmb7atH4trgb__-KQBZrtmu4_k99z2zWwsrhyiQueDHarxmS1aytscgNYYaBnxrtSa4BsCXXYgWdp6qD-3TFwcUN4LWAQ\u0026h=T9ULXoaVy5m6PDTUSq_YGuwUNfD576AIDplpx7ghk7M+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D?api-version=2024-02-28-preview\u0026t=638654923343219920\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3MmLc03BeYc_hnk5m7Z5NeAowLrahNU9KoQ2ixe6bu6un4Yo0XcljNvL4PqYSH8jn6U046GQSF0xWN6eZ2T6HLTqXcH72S5ZLJZ-A6bs9XQiZ-Wl8LTMxWnX_DWabqSQy1TnHIAsqt64j4-5gJlnnPXb073wKf4NvzEU0ozZyBxsiw85bcgruEfa5E5q_9CkGLZOmoCRV-tUhqqVvhJYeuikw2MabyymUV6qrfjsYfRVeVPygYrxfCNQVwmb7atH4trgb__-KQBZrtmu4_k99z2zWwsrhyiQueDHarxmS1aytscgNYYaBnxrtSa4BsCXXYgWdp6qD-3TFwcUN4LWAQ\u0026h=T9ULXoaVy5m6PDTUSq_YGuwUNfD576AIDplpx7ghk7M", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "39" ], + "x-ms-client-request-id": [ "0c84a659-a0c1-449b-96b5-55fd796800a0" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c03eaac-0000-0800-0000-671c1c6d0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "62ae2ebf-2d64-4d4a-9448-bc63797d8974" ], + "x-ms-correlation-request-id": [ "8970201d-e5a3-4c1d-9a7b-6fd578684ff7" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223314Z:8970201d-e5a3-4c1d-9a7b-6fd578684ff7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8F297AA103C1475FA1F0FEF7B8CF96CE Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:33:14Z" ], + "Date": [ "Fri, 25 Oct 2024 22:33:14 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "573" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D\",\"name\":\"46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/5dmvzt\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T22:32:13.7724562Z\"}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D?api-version=2024-02-28-preview\u0026t=638654923343219920\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3MmLc03BeYc_hnk5m7Z5NeAowLrahNU9KoQ2ixe6bu6un4Yo0XcljNvL4PqYSH8jn6U046GQSF0xWN6eZ2T6HLTqXcH72S5ZLJZ-A6bs9XQiZ-Wl8LTMxWnX_DWabqSQy1TnHIAsqt64j4-5gJlnnPXb073wKf4NvzEU0ozZyBxsiw85bcgruEfa5E5q_9CkGLZOmoCRV-tUhqqVvhJYeuikw2MabyymUV6qrfjsYfRVeVPygYrxfCNQVwmb7atH4trgb__-KQBZrtmu4_k99z2zWwsrhyiQueDHarxmS1aytscgNYYaBnxrtSa4BsCXXYgWdp6qD-3TFwcUN4LWAQ\u0026h=T9ULXoaVy5m6PDTUSq_YGuwUNfD576AIDplpx7ghk7M+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D?api-version=2024-02-28-preview\u0026t=638654923343219920\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3MmLc03BeYc_hnk5m7Z5NeAowLrahNU9KoQ2ixe6bu6un4Yo0XcljNvL4PqYSH8jn6U046GQSF0xWN6eZ2T6HLTqXcH72S5ZLJZ-A6bs9XQiZ-Wl8LTMxWnX_DWabqSQy1TnHIAsqt64j4-5gJlnnPXb073wKf4NvzEU0ozZyBxsiw85bcgruEfa5E5q_9CkGLZOmoCRV-tUhqqVvhJYeuikw2MabyymUV6qrfjsYfRVeVPygYrxfCNQVwmb7atH4trgb__-KQBZrtmu4_k99z2zWwsrhyiQueDHarxmS1aytscgNYYaBnxrtSa4BsCXXYgWdp6qD-3TFwcUN4LWAQ\u0026h=T9ULXoaVy5m6PDTUSq_YGuwUNfD576AIDplpx7ghk7M", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "40" ], + "x-ms-client-request-id": [ "0c84a659-a0c1-449b-96b5-55fd796800a0" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c0341ba-0000-0800-0000-671c1cb00000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "9be6708b-b1b6-4b39-b062-1f015e8ee967" ], + "x-ms-correlation-request-id": [ "826d2c80-1f21-46c1-8783-b53511d63d4c" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223344Z:826d2c80-1f21-46c1-8783-b53511d63d4c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: A54485B4AF354BE59CBCC17A3E42CA39 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:33:44Z" ], + "Date": [ "Fri, 25 Oct 2024 22:33:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "633" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D\",\"name\":\"46667d26-6ec9-45d9-bd4d-fb458fb54931*2F1EC0E6FBFEC148464393178B717306A25CF4D9FFC786846F9CDF729FAEEB1D\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/5dmvzt\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T22:32:13.7724562Z\",\"endTime\":\"2024-10-25T22:32:21.6496965Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/5dmvzt?api-version=2024-02-28-preview+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/5dmvzt?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "41" ], + "x-ms-client-request-id": [ "0c84a659-a0c1-449b-96b5-55fd796800a0" ], + "CommandName": [ "New-AzDeidService" ], + "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901e88b-0000-0800-0000-671c1c750000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "2e90da66-4c60-4b86-b73e-023027945332" ], + "x-ms-correlation-request-id": [ "1fe18405-7c8f-403a-a4a2-d09da3991f05" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223345Z:1fe18405-7c8f-403a-a4a2-d09da3991f05" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E13173E926124E2FB141FB98806F1D02 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:33:44Z" ], + "Date": [ "Fri, 25 Oct 2024 22:33:44 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "637" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/5dmvzt\",\"name\":\"5dmvzt\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:32:13.5251101Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:32:13.5251101Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hhgnhghdhhewbdad.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/New-AzDeidService.Tests.ps1 b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/New-AzDeidService.Tests.ps1 new file mode 100644 index 000000000000..11e4427fc98b --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/New-AzDeidService.Tests.ps1 @@ -0,0 +1,42 @@ +if(($null -eq $TestName) -or ($TestName -contains 'New-AzDeidService')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzDeidService.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'New-AzDeidService' { + It 'CreateExpanded' { + { + $config = New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests1 -Location $env.location + $config.Name | Should -Be $env.deidServiceToCreateInTests1 + $config.ProvisioningState | Should -Be "Succeeded" + } | Should -Not -Throw + } + + It 'CreateViaJsonFilePath' { + { + $config = New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests2 -JsonFilePath (Join-Path $PSScriptRoot '.\jsonConfigs\deidServiceJson.json') + $config.Name | Should -Be $env.deidServiceToCreateInTests2 + $config.ProvisioningState | Should -Be "Succeeded" + } | Should -Not -Throw + } + + It 'CreateViaJsonString' { + { + $jsonString = Get-Content -Path (Join-Path $PSScriptRoot '.\jsonConfigs\deidServiceJson.json') -Raw + $config = New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests3 -JsonString $jsonString + $config.Name | Should -Be $env.deidServiceToCreateInTests3 + $config.ProvisioningState | Should -Be "Succeeded" + } | Should -Not -Throw + } +} diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/README.md b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/README.md new file mode 100644 index 000000000000..1969200c6a09 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/README.md @@ -0,0 +1,17 @@ +# Test +This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `../custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. + +## Info +- Modifiable: yes +- Generated: partial +- Committed: yes +- Packaged: no + +## Details +We allow three testing modes: *live*, *record*, and *playback*. These can be selected using the `-Live`, `-Record`, and `-Playback` switches respectively on the `test-module.ps1` script. This script will run through any `.Tests.ps1` scripts in the `test` folder. If you choose the *record* mode, it will create a `.Recording.json` file of the REST calls between the client and server. Then, when you choose *playback* mode, it will use the `.Recording.json` file to mock the communication between server and client. The *live* mode runs the same as the *record* mode; however, it doesn't create the `.Recording.json` file. + +## Purpose +Custom cmdlets generally encompass additional functionality not described in the REST specification, or combines functionality generated from the REST spec. To validate this functionality continues to operate as intended, creating tests that can be ran and re-ran against custom cmdlets is part of the framework. + +## Usage +To execute tests, run the `test-module.ps1`. To write tests, [this example](https://github.com/pester/Pester/blob/8b9cf4248315e44f1ac6673be149f7e0d7f10466/Examples/Planets/Get-Planet.Tests.ps1#L1) from the Pester repository is very useful for getting started. \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Remove-AzDeidService.Recording.json b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Remove-AzDeidService.Recording.json new file mode 100644 index 000000000000..c6661a022169 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Remove-AzDeidService.Recording.json @@ -0,0 +1,726 @@ +{ + "Remove-AzDeidService+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/o6rwcu?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/o6rwcu?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "42" ], + "x-ms-client-request-id": [ "c62117cf-9152-4ad5-8509-5cd679b4db76" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901d696-0000-0800-0000-671c1cd00000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924323073184\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=Azx0N80liCysl8Oo1uHUazVHbQab6w0Nd8LnTyAI44boe38-J4fKoGMyoyj29vwiL5v-s0sGeDX0EdNGwxiic-Nxs9XNuBZD3Iw-_fuHx3REJS5XV2yOBpieHRB4HjU_PDGVFd-jY-4Q4BSXPz2oHKtlRQ5OC_Gcy0yGP-vD0lfyG0fH9BHcLTCZE-PCdfCaXyx8F89Zbw7m6fX7rnapTb-50_Za4czu_3I0Kad9pH_eCl8ZbqvUXOZWx1D-j6uOZes6S6xJ0y1suuZvlVHDM7mL0pf14jlJ1rQ7mua18_ZkS2PTVpfYHIB7cCyVkmkbmiPBF6RDUyNSco667ifNag\u0026h=b6eX4gzZ_EqLZOnCuj1WUxHLejG1a-FeZAfrzO9DNLE" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924322916892\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=SBlhnE7_BjyCWD6-p5pBYl_FJqctv7XbJ0KZJiHiTm_mxn3qre-_pAkQFuYJuY-Z_YMP14CNuFrVk22_PwgGKEQoEgJe0-Sp7cKUyeQbl7AQeXIVTDNyPcUWoUdfQa2ICwQh0QrX-xJYQ0fTy84u6RtdxVnfVsqmMzZgk42Q7n2Y-XS9yYHjN9ORxSG79yyX3kZaCygevo1LnSFK9uF4EDiMO7t-fHkAv88K4MmU7b7Vjy8wpgnRFr5KR892vDhjZ5REBy7kIAeK82Q3zIBnXevGDt6z1J6kLt3D6L4JNK6KxNXy2jj99A3eBgOX9Z99rhc-kMkhkj2zMmfssqVewA\u0026h=EWvwQBmOOUN-BvSBF53BkZXkseby1sJxMVOy2sVf45Y" ], + "x-ms-request-id": [ "5172e93d-e5d5-4567-9d9a-ea60e71d5e87" ], + "x-ms-correlation-request-id": [ "5e6abfb0-1268-44b2-b7bd-404e9f9fc155" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223352Z:5e6abfb0-1268-44b2-b7bd-404e9f9fc155" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 28826AB4E41345E3B9A4E312A4ADB438 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:33:50Z" ], + "Date": [ "Fri, 25 Oct 2024 22:33:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "bnVsbA==", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924322916892\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=SBlhnE7_BjyCWD6-p5pBYl_FJqctv7XbJ0KZJiHiTm_mxn3qre-_pAkQFuYJuY-Z_YMP14CNuFrVk22_PwgGKEQoEgJe0-Sp7cKUyeQbl7AQeXIVTDNyPcUWoUdfQa2ICwQh0QrX-xJYQ0fTy84u6RtdxVnfVsqmMzZgk42Q7n2Y-XS9yYHjN9ORxSG79yyX3kZaCygevo1LnSFK9uF4EDiMO7t-fHkAv88K4MmU7b7Vjy8wpgnRFr5KR892vDhjZ5REBy7kIAeK82Q3zIBnXevGDt6z1J6kLt3D6L4JNK6KxNXy2jj99A3eBgOX9Z99rhc-kMkhkj2zMmfssqVewA\u0026h=EWvwQBmOOUN-BvSBF53BkZXkseby1sJxMVOy2sVf45Y+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924322916892\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=SBlhnE7_BjyCWD6-p5pBYl_FJqctv7XbJ0KZJiHiTm_mxn3qre-_pAkQFuYJuY-Z_YMP14CNuFrVk22_PwgGKEQoEgJe0-Sp7cKUyeQbl7AQeXIVTDNyPcUWoUdfQa2ICwQh0QrX-xJYQ0fTy84u6RtdxVnfVsqmMzZgk42Q7n2Y-XS9yYHjN9ORxSG79yyX3kZaCygevo1LnSFK9uF4EDiMO7t-fHkAv88K4MmU7b7Vjy8wpgnRFr5KR892vDhjZ5REBy7kIAeK82Q3zIBnXevGDt6z1J6kLt3D6L4JNK6KxNXy2jj99A3eBgOX9Z99rhc-kMkhkj2zMmfssqVewA\u0026h=EWvwQBmOOUN-BvSBF53BkZXkseby1sJxMVOy2sVf45Y", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "43" ], + "x-ms-client-request-id": [ "c62117cf-9152-4ad5-8509-5cd679b4db76" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c0383c1-0000-0800-0000-671c1ccf0000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924624820554\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=H_RDphmsIp0wPGlKUbhYiDPGo9ofCZnW_Y_HhSaAIuvNXTLrykWlr0ILS5Ei9EnNIbNnPym7gd7AzLL9A6QDD7DylnDsYKrDIB5J_bGHNuq8IiT2CeORSaHT7VMx2htlNN_N6gKhvu2jjpzIO8EQcvb54c5n3ja7DG2DQyGAmRakRuXgkOCHjHWEDViSZPk_aODCaZNS4LOX74FLQcMXRYwwG8BN_Wq9K-RTEiZTAWH5zZZd4X_pRLn7fUAykXmoyJp3E-Uw7bColuviVYM7kRfp7Cy7xc1YP64XHWDktwhUgfOajFdmoTzEjkhDZsEkjzr5YIGOfuNQ-S0mQiVuVA\u0026h=Fa9ZF_G8X3wnfIcs74dC0Wmc84eXdYSyqsH8i2C_hmM" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924624820554\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=H_RDphmsIp0wPGlKUbhYiDPGo9ofCZnW_Y_HhSaAIuvNXTLrykWlr0ILS5Ei9EnNIbNnPym7gd7AzLL9A6QDD7DylnDsYKrDIB5J_bGHNuq8IiT2CeORSaHT7VMx2htlNN_N6gKhvu2jjpzIO8EQcvb54c5n3ja7DG2DQyGAmRakRuXgkOCHjHWEDViSZPk_aODCaZNS4LOX74FLQcMXRYwwG8BN_Wq9K-RTEiZTAWH5zZZd4X_pRLn7fUAykXmoyJp3E-Uw7bColuviVYM7kRfp7Cy7xc1YP64XHWDktwhUgfOajFdmoTzEjkhDZsEkjzr5YIGOfuNQ-S0mQiVuVA\u0026h=Fa9ZF_G8X3wnfIcs74dC0Wmc84eXdYSyqsH8i2C_hmM" ], + "x-ms-request-id": [ "63f8c035-8f3e-45c8-a6c1-b2aa91093547" ], + "x-ms-correlation-request-id": [ "739bf5fd-8a7c-4ffc-8398-a8cfcc8c845c" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223422Z:739bf5fd-8a7c-4ffc-8398-a8cfcc8c845c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 5E447C8F7F19428FB6CCE55E9E4A265F Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:34:22Z" ], + "Date": [ "Fri, 25 Oct 2024 22:34:21 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"name\":\"5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/o6rwcu\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T22:33:51.7944432Z\"}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924624820554\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=H_RDphmsIp0wPGlKUbhYiDPGo9ofCZnW_Y_HhSaAIuvNXTLrykWlr0ILS5Ei9EnNIbNnPym7gd7AzLL9A6QDD7DylnDsYKrDIB5J_bGHNuq8IiT2CeORSaHT7VMx2htlNN_N6gKhvu2jjpzIO8EQcvb54c5n3ja7DG2DQyGAmRakRuXgkOCHjHWEDViSZPk_aODCaZNS4LOX74FLQcMXRYwwG8BN_Wq9K-RTEiZTAWH5zZZd4X_pRLn7fUAykXmoyJp3E-Uw7bColuviVYM7kRfp7Cy7xc1YP64XHWDktwhUgfOajFdmoTzEjkhDZsEkjzr5YIGOfuNQ-S0mQiVuVA\u0026h=Fa9ZF_G8X3wnfIcs74dC0Wmc84eXdYSyqsH8i2C_hmM+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924624820554\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=H_RDphmsIp0wPGlKUbhYiDPGo9ofCZnW_Y_HhSaAIuvNXTLrykWlr0ILS5Ei9EnNIbNnPym7gd7AzLL9A6QDD7DylnDsYKrDIB5J_bGHNuq8IiT2CeORSaHT7VMx2htlNN_N6gKhvu2jjpzIO8EQcvb54c5n3ja7DG2DQyGAmRakRuXgkOCHjHWEDViSZPk_aODCaZNS4LOX74FLQcMXRYwwG8BN_Wq9K-RTEiZTAWH5zZZd4X_pRLn7fUAykXmoyJp3E-Uw7bColuviVYM7kRfp7Cy7xc1YP64XHWDktwhUgfOajFdmoTzEjkhDZsEkjzr5YIGOfuNQ-S0mQiVuVA\u0026h=Fa9ZF_G8X3wnfIcs74dC0Wmc84eXdYSyqsH8i2C_hmM", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "44" ], + "x-ms-client-request-id": [ "c62117cf-9152-4ad5-8509-5cd679b4db76" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c0383c1-0000-0800-0000-671c1ccf0000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924927261086\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=DfXLCU4STT070L77JQf5UyqndbynZJTmb_SFV_9ojTioKizrOb000Q2qGad0ir5KiFFtlsUkfrIhZj-to8plTRtyRNMDyliELGyAl9Jl04IDvlZ2gY2XSD4ez1QTC_BVNy1dhszx0h2IH2Fjl4rU6yTKH6xoXR1c2FtGXwwDpI7zim15P-7Q6MWIAozTP5bR7nXp3uvAHLn8rrDDZ2AUC9yNxalEWmiGM5jbm3RI5BBn-qxAoHiWjO3ed0fwaJNXBozMUG0xrN8wqdPrT_sAWHRV46v7gSRGIOgV8HoHRjFEjJ9kDIAWbPIGxlOi1lfo7FUNwB7FaJoCSoImKFlZxQ\u0026h=bJO0-MgJ__o23snoXHe5PKhrnn8j3AZCdV7DxODqTpM" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924927105530\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=YRxFctaE-HzrVVfXLLlAKQI70sM4aggX1R123hKDQxp-h877gMTcnazgJuQnFeaZwP9IyB2iin3UEA7MUa_fm42O5szZ54XxQFhqBmoMMhr1AYuhqMoiwxAFnWfLXszzRb0MNhGUm211ZBAWngdSQus2NszV6Qrx1y8PZkTfN9HpiLze2SAotMVJEYI1ORgiXY2wLPrMfNxlFX00qs9JLK3QfEY7vqT63-p83n8XTK1QtH45EeV33y1Hyo1IVA6flZuPqB8mODs1JEIoXnH96MmZnd8brEyTHpP5YGvlG7f1TObrlnwME3zRJvw1pk_kZlKOXxVl4V8YZ2YKIZpBaw\u0026h=sWWv1KEeKf_jkk3JbAuIKZWDBe1O3Qvcth6DaOBRxEA" ], + "x-ms-request-id": [ "ddee71ee-493b-42ea-8227-1a4f84a9b2d5" ], + "x-ms-correlation-request-id": [ "83307f96-9f93-4e06-b136-1d702bb6442e" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223452Z:83307f96-9f93-4e06-b136-1d702bb6442e" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 25F90780F20947138AFB83EF89D60BC1 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:34:52Z" ], + "Date": [ "Fri, 25 Oct 2024 22:34:51 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"name\":\"5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/o6rwcu\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T22:33:51.7944432Z\"}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924927105530\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=YRxFctaE-HzrVVfXLLlAKQI70sM4aggX1R123hKDQxp-h877gMTcnazgJuQnFeaZwP9IyB2iin3UEA7MUa_fm42O5szZ54XxQFhqBmoMMhr1AYuhqMoiwxAFnWfLXszzRb0MNhGUm211ZBAWngdSQus2NszV6Qrx1y8PZkTfN9HpiLze2SAotMVJEYI1ORgiXY2wLPrMfNxlFX00qs9JLK3QfEY7vqT63-p83n8XTK1QtH45EeV33y1Hyo1IVA6flZuPqB8mODs1JEIoXnH96MmZnd8brEyTHpP5YGvlG7f1TObrlnwME3zRJvw1pk_kZlKOXxVl4V8YZ2YKIZpBaw\u0026h=sWWv1KEeKf_jkk3JbAuIKZWDBe1O3Qvcth6DaOBRxEA+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924927105530\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=YRxFctaE-HzrVVfXLLlAKQI70sM4aggX1R123hKDQxp-h877gMTcnazgJuQnFeaZwP9IyB2iin3UEA7MUa_fm42O5szZ54XxQFhqBmoMMhr1AYuhqMoiwxAFnWfLXszzRb0MNhGUm211ZBAWngdSQus2NszV6Qrx1y8PZkTfN9HpiLze2SAotMVJEYI1ORgiXY2wLPrMfNxlFX00qs9JLK3QfEY7vqT63-p83n8XTK1QtH45EeV33y1Hyo1IVA6flZuPqB8mODs1JEIoXnH96MmZnd8brEyTHpP5YGvlG7f1TObrlnwME3zRJvw1pk_kZlKOXxVl4V8YZ2YKIZpBaw\u0026h=sWWv1KEeKf_jkk3JbAuIKZWDBe1O3Qvcth6DaOBRxEA", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "45" ], + "x-ms-client-request-id": [ "c62117cf-9152-4ad5-8509-5cd679b4db76" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c0383c1-0000-0800-0000-671c1ccf0000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654925229570606\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=6Jb-LOGDxl9fW2H04aDnVtIvnFENUTx3-NEtsqqHM5VwbBUaMxLMmuyMDEHeVAihYHSrrQB_GEm08--e_DLuVpKkVOqix4ZycaGNdNR8w7TwJVfUSkOJMy3085JQRaKVTVcK_WPZKMpx5_o3Xvb_k2Kurg63bVXfZIlqcShXdEo5Fh66Wwu7ota1FRS4GDmED4PNqeZZYFmoyA8XXAMOtju4uruTlTfovMBLijVVv_2QjAKMbXnm29V0XSqUJ4aTEB5BCNZbghE0hG2V5JfH3bsBByexjufUS2RWwppg5YFaY43JQksLxCoStoRT6GBsB4YI8NbnmiffCocajMtHdA\u0026h=LF8FC3_ZQh_vYhrBTo26_ZrrCN-fHEof08Yu7SeIVac" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654925229570606\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=6Jb-LOGDxl9fW2H04aDnVtIvnFENUTx3-NEtsqqHM5VwbBUaMxLMmuyMDEHeVAihYHSrrQB_GEm08--e_DLuVpKkVOqix4ZycaGNdNR8w7TwJVfUSkOJMy3085JQRaKVTVcK_WPZKMpx5_o3Xvb_k2Kurg63bVXfZIlqcShXdEo5Fh66Wwu7ota1FRS4GDmED4PNqeZZYFmoyA8XXAMOtju4uruTlTfovMBLijVVv_2QjAKMbXnm29V0XSqUJ4aTEB5BCNZbghE0hG2V5JfH3bsBByexjufUS2RWwppg5YFaY43JQksLxCoStoRT6GBsB4YI8NbnmiffCocajMtHdA\u0026h=LF8FC3_ZQh_vYhrBTo26_ZrrCN-fHEof08Yu7SeIVac" ], + "x-ms-request-id": [ "43bbb238-2ed4-46fb-8c1c-da410d2b90dc" ], + "x-ms-correlation-request-id": [ "86728895-c458-41cf-8f86-10bd00762e16" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223522Z:86728895-c458-41cf-8f86-10bd00762e16" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2C9A17812B564A5DB59CBEBC9F651FC5 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:35:22Z" ], + "Date": [ "Fri, 25 Oct 2024 22:35:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"name\":\"5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/o6rwcu\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T22:33:51.7944432Z\"}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654925229570606\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=6Jb-LOGDxl9fW2H04aDnVtIvnFENUTx3-NEtsqqHM5VwbBUaMxLMmuyMDEHeVAihYHSrrQB_GEm08--e_DLuVpKkVOqix4ZycaGNdNR8w7TwJVfUSkOJMy3085JQRaKVTVcK_WPZKMpx5_o3Xvb_k2Kurg63bVXfZIlqcShXdEo5Fh66Wwu7ota1FRS4GDmED4PNqeZZYFmoyA8XXAMOtju4uruTlTfovMBLijVVv_2QjAKMbXnm29V0XSqUJ4aTEB5BCNZbghE0hG2V5JfH3bsBByexjufUS2RWwppg5YFaY43JQksLxCoStoRT6GBsB4YI8NbnmiffCocajMtHdA\u0026h=LF8FC3_ZQh_vYhrBTo26_ZrrCN-fHEof08Yu7SeIVac+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654925229570606\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=6Jb-LOGDxl9fW2H04aDnVtIvnFENUTx3-NEtsqqHM5VwbBUaMxLMmuyMDEHeVAihYHSrrQB_GEm08--e_DLuVpKkVOqix4ZycaGNdNR8w7TwJVfUSkOJMy3085JQRaKVTVcK_WPZKMpx5_o3Xvb_k2Kurg63bVXfZIlqcShXdEo5Fh66Wwu7ota1FRS4GDmED4PNqeZZYFmoyA8XXAMOtju4uruTlTfovMBLijVVv_2QjAKMbXnm29V0XSqUJ4aTEB5BCNZbghE0hG2V5JfH3bsBByexjufUS2RWwppg5YFaY43JQksLxCoStoRT6GBsB4YI8NbnmiffCocajMtHdA\u0026h=LF8FC3_ZQh_vYhrBTo26_ZrrCN-fHEof08Yu7SeIVac", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "46" ], + "x-ms-client-request-id": [ "c62117cf-9152-4ad5-8509-5cd679b4db76" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c0383c1-0000-0800-0000-671c1ccf0000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654925531654177\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=NqouHbkA3XRs3S00VR8NjcqA6VdWlHy61zYI-i3DE-BeV3ktzcVEHbJANfF0plfjtoRkvejrI_2zjElQzzRiTUOYPNkM0UlGO7ySdeg9KOkxv-vz83EM-wq2X-qy1jhh3ZRxC32fwPzzGYz7Vi671wwXQYyfH2-t1VIRpRK0UA92gWfWW-bI-F09ZozkTy_avah-Z-zrGqH5WiGeIU0l2_XZg-I6XaSU3wxT7Pi-iypfSvgJiLRwiHzcmTNa-o39uMXlHoMuDgFaWIlmPAf-SpyYcrTEHQY4HutxVK8TiCSv1OKR9UHTvBi1VUihI9RHTHflbw1WeD1FbbWTECY1Zg\u0026h=p-4Sb0H3_yxzKTd_I6xGvZf_8w9J58uxKRyx-JnM4vE" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654925531497982\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=08XO0deJDy-ue-SFPk1ztsfPgNLJWg4LXG5L3b9G-aMHRgYhI-Rb0rHmEArmdfZDakxb63advOZque5M4Wh2nrllj5tSRL-jMh2omVacxHYTLS7BBQXfSM4p_hPGpv-9G_m7xqfm4cfXnitWn20fKNeKkbbi-fAv4vlwFZA5cZCLiQDnoQCgZHFk7ix4SZe14X8iHRrknewHjF5F766z3gljZALf9B6nrs96GHtrPttYF7qCvPy7c9po4JxEq8vr07iCCWH3Sq-eESQDdQrUNUmAOxJMvJWzxXW6uxUX1g3p_kKWMK-nLkDHmIgDcKCTP-6dY7hmUg-DLiDEzYGhwQ\u0026h=I9noWQKIJQWjNFAFJNyppHJLmttQktjNpxVs176yZBw" ], + "x-ms-request-id": [ "66f21bf2-5899-42bf-a212-a695f5bc3c50" ], + "x-ms-correlation-request-id": [ "903dfc70-a254-4ea9-9ca5-2809aedd9912" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223553Z:903dfc70-a254-4ea9-9ca5-2809aedd9912" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 71F0263D33624D13B063EF685430D496 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:35:53Z" ], + "Date": [ "Fri, 25 Oct 2024 22:35:52 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"name\":\"5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/o6rwcu\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T22:33:51.7944432Z\"}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654925531497982\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=08XO0deJDy-ue-SFPk1ztsfPgNLJWg4LXG5L3b9G-aMHRgYhI-Rb0rHmEArmdfZDakxb63advOZque5M4Wh2nrllj5tSRL-jMh2omVacxHYTLS7BBQXfSM4p_hPGpv-9G_m7xqfm4cfXnitWn20fKNeKkbbi-fAv4vlwFZA5cZCLiQDnoQCgZHFk7ix4SZe14X8iHRrknewHjF5F766z3gljZALf9B6nrs96GHtrPttYF7qCvPy7c9po4JxEq8vr07iCCWH3Sq-eESQDdQrUNUmAOxJMvJWzxXW6uxUX1g3p_kKWMK-nLkDHmIgDcKCTP-6dY7hmUg-DLiDEzYGhwQ\u0026h=I9noWQKIJQWjNFAFJNyppHJLmttQktjNpxVs176yZBw+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654925531497982\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=08XO0deJDy-ue-SFPk1ztsfPgNLJWg4LXG5L3b9G-aMHRgYhI-Rb0rHmEArmdfZDakxb63advOZque5M4Wh2nrllj5tSRL-jMh2omVacxHYTLS7BBQXfSM4p_hPGpv-9G_m7xqfm4cfXnitWn20fKNeKkbbi-fAv4vlwFZA5cZCLiQDnoQCgZHFk7ix4SZe14X8iHRrknewHjF5F766z3gljZALf9B6nrs96GHtrPttYF7qCvPy7c9po4JxEq8vr07iCCWH3Sq-eESQDdQrUNUmAOxJMvJWzxXW6uxUX1g3p_kKWMK-nLkDHmIgDcKCTP-6dY7hmUg-DLiDEzYGhwQ\u0026h=I9noWQKIJQWjNFAFJNyppHJLmttQktjNpxVs176yZBw", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "47" ], + "x-ms-client-request-id": [ "c62117cf-9152-4ad5-8509-5cd679b4db76" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c0357d8-0000-0800-0000-671c1d4e0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "d3c83a11-30d1-4a1b-a699-6376cb0c1fff" ], + "x-ms-correlation-request-id": [ "5a37cd73-342b-40e4-9733-140ba50a5fae" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223623Z:5a37cd73-342b-40e4-9733-140ba50a5fae" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1166A2C9240E4CAC8E09B1A75F7B1250 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:36:23Z" ], + "Date": [ "Fri, 25 Oct 2024 22:36:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "593" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"name\":\"5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/o6rwcu\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T22:33:51.7944432Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924323073184\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=Azx0N80liCysl8Oo1uHUazVHbQab6w0Nd8LnTyAI44boe38-J4fKoGMyoyj29vwiL5v-s0sGeDX0EdNGwxiic-Nxs9XNuBZD3Iw-_fuHx3REJS5XV2yOBpieHRB4HjU_PDGVFd-jY-4Q4BSXPz2oHKtlRQ5OC_Gcy0yGP-vD0lfyG0fH9BHcLTCZE-PCdfCaXyx8F89Zbw7m6fX7rnapTb-50_Za4czu_3I0Kad9pH_eCl8ZbqvUXOZWx1D-j6uOZes6S6xJ0y1suuZvlVHDM7mL0pf14jlJ1rQ7mua18_ZkS2PTVpfYHIB7cCyVkmkbmiPBF6RDUyNSco667ifNag\u0026h=b6eX4gzZ_EqLZOnCuj1WUxHLejG1a-FeZAfrzO9DNLE+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF?api-version=2024-02-28-preview\u0026t=638654924323073184\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=Azx0N80liCysl8Oo1uHUazVHbQab6w0Nd8LnTyAI44boe38-J4fKoGMyoyj29vwiL5v-s0sGeDX0EdNGwxiic-Nxs9XNuBZD3Iw-_fuHx3REJS5XV2yOBpieHRB4HjU_PDGVFd-jY-4Q4BSXPz2oHKtlRQ5OC_Gcy0yGP-vD0lfyG0fH9BHcLTCZE-PCdfCaXyx8F89Zbw7m6fX7rnapTb-50_Za4czu_3I0Kad9pH_eCl8ZbqvUXOZWx1D-j6uOZes6S6xJ0y1suuZvlVHDM7mL0pf14jlJ1rQ7mua18_ZkS2PTVpfYHIB7cCyVkmkbmiPBF6RDUyNSco667ifNag\u0026h=b6eX4gzZ_EqLZOnCuj1WUxHLejG1a-FeZAfrzO9DNLE", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "48" ], + "x-ms-client-request-id": [ "c62117cf-9152-4ad5-8509-5cd679b4db76" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c0357d8-0000-0800-0000-671c1d4e0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-request-id": [ "33b513ef-0a1c-4dfa-b489-c489e4d23d71" ], + "x-ms-correlation-request-id": [ "32dbce3e-a3fc-406d-98a8-3f5b94d37ada" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223623Z:32dbce3e-a3fc-406d-98a8-3f5b94d37ada" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B09C5DD6DE2D472F909D4C74AFE5EBE9 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:36:23Z" ], + "Date": [ "Fri, 25 Oct 2024 22:36:22 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "593" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"name\":\"5172e93d-e5d5-4567-9d9a-ea60e71d5e87*41F3E41D07AC69F06E4F116CEE0B0BA165DE557E41234AD18F4A41CCA663A1BF\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/o6rwcu\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T22:33:51.7944432Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+DeleteNonexistent+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nonexistent?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nonexistent?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "49" ], + "x-ms-client-request-id": [ "4aa7ca59-f248-471e-809c-836052f89418" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 204, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-request-id": [ "8a46c62f-f460-41a9-be53-d240c1d312e7" ], + "x-ms-correlation-request-id": [ "8a46c62f-f460-41a9-be53-d240c1d312e7" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223623Z:8a46c62f-f460-41a9-be53-d240c1d312e7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: AD5569AF832A45D989188ECAA3CF7161 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:36:23Z" ], + "Date": [ "Fri, 25 Oct 2024 22:36:22 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "50" ], + "x-ms-client-request-id": [ "6ab66a55-6106-40af-947b-5130daa648cb" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"49012d6a-0000-0800-0000-671c1b540000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "bd224d4e-54d9-4010-89c1-d2001fce9c96" ], + "x-ms-correlation-request-id": [ "43cd9316-4f4b-4b11-8618-7d3556533f20" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223624Z:43cd9316-4f4b-4b11-8618-7d3556533f20" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: ED873C9F12854334AFBB6627733F9F53 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:36:23Z" ], + "Date": [ "Fri, 25 Oct 2024 22:36:23 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7\",\"name\":\"nxe5i7\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:27:24.2551919Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:27:24.2551919Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hkavhfd6b5b5gxcq.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7?api-version=2024-02-28-preview+2": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "51" ], + "x-ms-client-request-id": [ "ecfd7296-ed8b-4854-b017-fddd5c1eabbe" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"490121a9-0000-0800-0000-671c1d690000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654925853295307\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=2LjbPCl9QolqUs95gWo4devmrrlBFvWNG6w6OpJx0HQNXJCJ8j3xlkzvXtUOodoDVdnPBjgB5KwocskBvSgDTmqMTqeJWP6kZ3hRlBcBwdkLv2ffgbF2T5VnnBF5VgGaBGGxL8VPgtmdJz7DnBEy4wRIx2PEv4u5qokaB8y62QuQy6kSInLO46lud0FOxQn7MrfsPWz85U8BC98XKAy_6oYaxL-rhfYIWbWDnPbMP8wh9b5EFuSBLnNen0wxOyTJPovplpeWgGiJIdea8xkIO5ivDJPlKfyJmasc993exE289vFsVFT_ir3uohELrQOyYBcO_NaLpkM1R-rHliPYXQ\u0026h=4vvwFGFAlIp9EZDdoVGPYBdAzDbhiy5He4ATTAWnAso" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654925853295307\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=2LjbPCl9QolqUs95gWo4devmrrlBFvWNG6w6OpJx0HQNXJCJ8j3xlkzvXtUOodoDVdnPBjgB5KwocskBvSgDTmqMTqeJWP6kZ3hRlBcBwdkLv2ffgbF2T5VnnBF5VgGaBGGxL8VPgtmdJz7DnBEy4wRIx2PEv4u5qokaB8y62QuQy6kSInLO46lud0FOxQn7MrfsPWz85U8BC98XKAy_6oYaxL-rhfYIWbWDnPbMP8wh9b5EFuSBLnNen0wxOyTJPovplpeWgGiJIdea8xkIO5ivDJPlKfyJmasc993exE289vFsVFT_ir3uohELrQOyYBcO_NaLpkM1R-rHliPYXQ\u0026h=4vvwFGFAlIp9EZDdoVGPYBdAzDbhiy5He4ATTAWnAso" ], + "x-ms-request-id": [ "d3e70ae3-6d0d-4659-a239-e36fcbe673a6" ], + "x-ms-correlation-request-id": [ "86963fa3-b27c-48bb-898b-ff65181c820d" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223625Z:86963fa3-b27c-48bb-898b-ff65181c820d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8CEE563F9CBF4DE980D639167F04C142 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:36:24Z" ], + "Date": [ "Fri, 25 Oct 2024 22:36:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "4" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "bnVsbA==", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654925853295307\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=2LjbPCl9QolqUs95gWo4devmrrlBFvWNG6w6OpJx0HQNXJCJ8j3xlkzvXtUOodoDVdnPBjgB5KwocskBvSgDTmqMTqeJWP6kZ3hRlBcBwdkLv2ffgbF2T5VnnBF5VgGaBGGxL8VPgtmdJz7DnBEy4wRIx2PEv4u5qokaB8y62QuQy6kSInLO46lud0FOxQn7MrfsPWz85U8BC98XKAy_6oYaxL-rhfYIWbWDnPbMP8wh9b5EFuSBLnNen0wxOyTJPovplpeWgGiJIdea8xkIO5ivDJPlKfyJmasc993exE289vFsVFT_ir3uohELrQOyYBcO_NaLpkM1R-rHliPYXQ\u0026h=4vvwFGFAlIp9EZDdoVGPYBdAzDbhiy5He4ATTAWnAso+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654925853295307\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=2LjbPCl9QolqUs95gWo4devmrrlBFvWNG6w6OpJx0HQNXJCJ8j3xlkzvXtUOodoDVdnPBjgB5KwocskBvSgDTmqMTqeJWP6kZ3hRlBcBwdkLv2ffgbF2T5VnnBF5VgGaBGGxL8VPgtmdJz7DnBEy4wRIx2PEv4u5qokaB8y62QuQy6kSInLO46lud0FOxQn7MrfsPWz85U8BC98XKAy_6oYaxL-rhfYIWbWDnPbMP8wh9b5EFuSBLnNen0wxOyTJPovplpeWgGiJIdea8xkIO5ivDJPlKfyJmasc993exE289vFsVFT_ir3uohELrQOyYBcO_NaLpkM1R-rHliPYXQ\u0026h=4vvwFGFAlIp9EZDdoVGPYBdAzDbhiy5He4ATTAWnAso", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "52" ], + "x-ms-client-request-id": [ "ecfd7296-ed8b-4854-b017-fddd5c1eabbe" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c03ffdc-0000-0800-0000-671c1d680000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926155685724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=m13-B4b_s_BcvVuglpjLFqeiJ5aDRKdyveyqKkc5qHeovF5eA_EPzXswt1Op3GfKtQhFGZf9nppP8yly-uwgUpIYahvDXJTRkrbLA8XT9fedQel1AYaP3Hq_J1ZFBBbPS-tmWlXgeeNdkWLePOPFkpH7Qk1xASuwPtUFS8gav45xHjh_SFIuwcbPN1zeS5zssmZX1ywanMTzv380ePYqs9jeCS1sv3-cx2nf6ujZ2MiiTyx0SOZeF2A7sxp23wS3DKnUbYEGvZAEiAqAuYPbXxdwO9HxglkutJzhFslZVMifSRvbcEkAjjvjG8N8zA768EjKCe1xKt42EctHePoZkQ\u0026h=zQIrSvVV9rLP5Uap7HZJUcSMlQatz6zlGQvi_IHf4ug" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926155529468\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=g_GMA7Nc_Od6aRufX5aK7_PMBIE0YJLnlaClljd9wBqRe03dhzKk4CPCACgSK_aXqi62g2OSC7p2Sc1W1ilFiJ96OXnDw7frbLKx6_u5hIbrWw5xGiN_MBPU-NRhSUTmuAk7cY9FNwcL3sVs4T1T_jlqBR5-5PCwkL766akvFHiz-Xi8Gbb5nPmgMMIrooJV72qelVPLYupfW319XQMyZ8bB50evHedpDRHUV9l4mzJ8yMl1Dzdt40uWJdikwh7gKSisrvKsU7a1eSe4_YMS160ncGiL3auupGBzLZXmpL7Tg5zIeXhJWTNF-b3Hbu6oDc4-yowvhkqY-HGDZFkSHw\u0026h=ah3py64-P35mj1Cd2DXbKUDk1xcadY5CKW_vpg6Ai0g" ], + "x-ms-request-id": [ "139f4c06-3e86-46d8-97ce-437cb0634bd8" ], + "x-ms-correlation-request-id": [ "517e66ba-fb8b-4571-bf27-31553afaa872" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223655Z:517e66ba-fb8b-4571-bf27-31553afaa872" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DE5EEBA3157446A8B738D1788F7CCD3B Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:36:55Z" ], + "Date": [ "Fri, 25 Oct 2024 22:36:54 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"name\":\"d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T22:36:24.8053366Z\"}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926155529468\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=g_GMA7Nc_Od6aRufX5aK7_PMBIE0YJLnlaClljd9wBqRe03dhzKk4CPCACgSK_aXqi62g2OSC7p2Sc1W1ilFiJ96OXnDw7frbLKx6_u5hIbrWw5xGiN_MBPU-NRhSUTmuAk7cY9FNwcL3sVs4T1T_jlqBR5-5PCwkL766akvFHiz-Xi8Gbb5nPmgMMIrooJV72qelVPLYupfW319XQMyZ8bB50evHedpDRHUV9l4mzJ8yMl1Dzdt40uWJdikwh7gKSisrvKsU7a1eSe4_YMS160ncGiL3auupGBzLZXmpL7Tg5zIeXhJWTNF-b3Hbu6oDc4-yowvhkqY-HGDZFkSHw\u0026h=ah3py64-P35mj1Cd2DXbKUDk1xcadY5CKW_vpg6Ai0g+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926155529468\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=g_GMA7Nc_Od6aRufX5aK7_PMBIE0YJLnlaClljd9wBqRe03dhzKk4CPCACgSK_aXqi62g2OSC7p2Sc1W1ilFiJ96OXnDw7frbLKx6_u5hIbrWw5xGiN_MBPU-NRhSUTmuAk7cY9FNwcL3sVs4T1T_jlqBR5-5PCwkL766akvFHiz-Xi8Gbb5nPmgMMIrooJV72qelVPLYupfW319XQMyZ8bB50evHedpDRHUV9l4mzJ8yMl1Dzdt40uWJdikwh7gKSisrvKsU7a1eSe4_YMS160ncGiL3auupGBzLZXmpL7Tg5zIeXhJWTNF-b3Hbu6oDc4-yowvhkqY-HGDZFkSHw\u0026h=ah3py64-P35mj1Cd2DXbKUDk1xcadY5CKW_vpg6Ai0g", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "53" ], + "x-ms-client-request-id": [ "ecfd7296-ed8b-4854-b017-fddd5c1eabbe" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c03ffdc-0000-0800-0000-671c1d680000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926458394267\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=DUw_PAgbqbefpwL6aIpDU56QkgWxgvrdOusByWAJc9w-L8kTNtPtdQFoosIGnTxon0LW828ok4Q4_4AK03FQaH2bE6BM-ZH3-FofO00kFsIhWckyyX4R5zdiQIPDh6ueWqvpcIix6R4kouvpXHI7CB6ZESNYFBiA89-a8O09dEqOQk8uDPYH_18KQ7DVt61oLuUIb2ewI1xnDJ78KpX5F7aUyn2iyHcON4JUyaLYT3SLAzcmDUFXnBv2uQnyu17mgvjjlRJjNo3vCuOPPKQDBdNJnKdYj_VIMxGPQS82BDrRe6hoVNnr42e7cqXVslgYdYz58ZaRKjXZO2oud1AomA\u0026h=aHKmg38tofgiVwARH-Yuz3XVXDjq6XcFdMq-XpcDbR0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926458394267\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=DUw_PAgbqbefpwL6aIpDU56QkgWxgvrdOusByWAJc9w-L8kTNtPtdQFoosIGnTxon0LW828ok4Q4_4AK03FQaH2bE6BM-ZH3-FofO00kFsIhWckyyX4R5zdiQIPDh6ueWqvpcIix6R4kouvpXHI7CB6ZESNYFBiA89-a8O09dEqOQk8uDPYH_18KQ7DVt61oLuUIb2ewI1xnDJ78KpX5F7aUyn2iyHcON4JUyaLYT3SLAzcmDUFXnBv2uQnyu17mgvjjlRJjNo3vCuOPPKQDBdNJnKdYj_VIMxGPQS82BDrRe6hoVNnr42e7cqXVslgYdYz58ZaRKjXZO2oud1AomA\u0026h=aHKmg38tofgiVwARH-Yuz3XVXDjq6XcFdMq-XpcDbR0" ], + "x-ms-request-id": [ "f34369ce-1cd1-4d78-bb21-35b7f0afa1c1" ], + "x-ms-correlation-request-id": [ "73d8778e-29a8-4a74-9b34-09e84f1a77e3" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223725Z:73d8778e-29a8-4a74-9b34-09e84f1a77e3" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FE4AE9E9D15945AA827015926B4448A2 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:37:25Z" ], + "Date": [ "Fri, 25 Oct 2024 22:37:24 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"name\":\"d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T22:36:24.8053366Z\"}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926458394267\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=DUw_PAgbqbefpwL6aIpDU56QkgWxgvrdOusByWAJc9w-L8kTNtPtdQFoosIGnTxon0LW828ok4Q4_4AK03FQaH2bE6BM-ZH3-FofO00kFsIhWckyyX4R5zdiQIPDh6ueWqvpcIix6R4kouvpXHI7CB6ZESNYFBiA89-a8O09dEqOQk8uDPYH_18KQ7DVt61oLuUIb2ewI1xnDJ78KpX5F7aUyn2iyHcON4JUyaLYT3SLAzcmDUFXnBv2uQnyu17mgvjjlRJjNo3vCuOPPKQDBdNJnKdYj_VIMxGPQS82BDrRe6hoVNnr42e7cqXVslgYdYz58ZaRKjXZO2oud1AomA\u0026h=aHKmg38tofgiVwARH-Yuz3XVXDjq6XcFdMq-XpcDbR0+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926458394267\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=DUw_PAgbqbefpwL6aIpDU56QkgWxgvrdOusByWAJc9w-L8kTNtPtdQFoosIGnTxon0LW828ok4Q4_4AK03FQaH2bE6BM-ZH3-FofO00kFsIhWckyyX4R5zdiQIPDh6ueWqvpcIix6R4kouvpXHI7CB6ZESNYFBiA89-a8O09dEqOQk8uDPYH_18KQ7DVt61oLuUIb2ewI1xnDJ78KpX5F7aUyn2iyHcON4JUyaLYT3SLAzcmDUFXnBv2uQnyu17mgvjjlRJjNo3vCuOPPKQDBdNJnKdYj_VIMxGPQS82BDrRe6hoVNnr42e7cqXVslgYdYz58ZaRKjXZO2oud1AomA\u0026h=aHKmg38tofgiVwARH-Yuz3XVXDjq6XcFdMq-XpcDbR0", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "54" ], + "x-ms-client-request-id": [ "ecfd7296-ed8b-4854-b017-fddd5c1eabbe" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c03ffdc-0000-0800-0000-671c1d680000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926760265891\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=EDhjBicdlmb3n8vCPO0rtmiNFsO8k8kZQlvr9xikKvrfWeywsZKfmI0yIc9tZEP6gpjAwKfEboeVRjBwUKVyk6Dbz8FiKXxUCRxMWhV2gloFXub-RVuQ57W_zJ1tA8DWo5KCnofcrElpg3wD4cJ1v0LYSOU381CfzH_qkvks2pEHuRLPXd8wxOvSrUiJhGiNXbQta6XOY0l4614hVO204y6Ifx8pox0_5LxJ4PLPTE228el_h_7mLPiBlkb5FpkKpCi9XwT_JcWzx9ahv0xn-UY6YmmtJ3BZYDSZXWbu7wfFw60pouTOrAia4jNWxMb50cbeh7Dxl_Tw5ugFG9hhtA\u0026h=zBRLR1Ecins5r-cHUhOt5t6SWRX-m7pNgKOMxNu7P7A" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926760109579\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ooA_689c5ZDMBV5cE-mbvBd8O3l9TkNQUqHQAQd0FOaSMi4ezgbtFpaRUusuyhj8ez6OBYGj0VbKC6jDRfprmb-dr4-brMtsITATJxR8Q5QZiKZQzFv0Kz160OVEbamK_INlRFvzb8aKJ28EgOxfJet6QtiD--Xs23ghnShaauW0nEgP8mmVEiGqqttbO8Y7Cvx8yXn_FSi9gOXc1WPTrpRPvSY1dq32jQ98L682u-8GrqD7fYHyllHfyE2wTNkuGJYlyETeLadwoTNirkC1jUWFUrCG4E7tRoBeMOm09nlBL92wpvldULQUYFqpvwIJElrCHo_X5s3nmJ2E-igdkA\u0026h=UvCA0z92U0QJocT1gqrIhCUvsYqNU8W_oktIkS_b7X0" ], + "x-ms-request-id": [ "21be6596-48de-42af-a3d3-22934a663cfb" ], + "x-ms-correlation-request-id": [ "1e4b109c-158e-41df-8aaa-6997baf2e74a" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223756Z:1e4b109c-158e-41df-8aaa-6997baf2e74a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 42BB39DC9B7A45BDBE942A04C64D0FDF Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:37:55Z" ], + "Date": [ "Fri, 25 Oct 2024 22:37:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"name\":\"d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T22:36:24.8053366Z\"}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926760109579\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ooA_689c5ZDMBV5cE-mbvBd8O3l9TkNQUqHQAQd0FOaSMi4ezgbtFpaRUusuyhj8ez6OBYGj0VbKC6jDRfprmb-dr4-brMtsITATJxR8Q5QZiKZQzFv0Kz160OVEbamK_INlRFvzb8aKJ28EgOxfJet6QtiD--Xs23ghnShaauW0nEgP8mmVEiGqqttbO8Y7Cvx8yXn_FSi9gOXc1WPTrpRPvSY1dq32jQ98L682u-8GrqD7fYHyllHfyE2wTNkuGJYlyETeLadwoTNirkC1jUWFUrCG4E7tRoBeMOm09nlBL92wpvldULQUYFqpvwIJElrCHo_X5s3nmJ2E-igdkA\u0026h=UvCA0z92U0QJocT1gqrIhCUvsYqNU8W_oktIkS_b7X0+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654926760109579\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=ooA_689c5ZDMBV5cE-mbvBd8O3l9TkNQUqHQAQd0FOaSMi4ezgbtFpaRUusuyhj8ez6OBYGj0VbKC6jDRfprmb-dr4-brMtsITATJxR8Q5QZiKZQzFv0Kz160OVEbamK_INlRFvzb8aKJ28EgOxfJet6QtiD--Xs23ghnShaauW0nEgP8mmVEiGqqttbO8Y7Cvx8yXn_FSi9gOXc1WPTrpRPvSY1dq32jQ98L682u-8GrqD7fYHyllHfyE2wTNkuGJYlyETeLadwoTNirkC1jUWFUrCG4E7tRoBeMOm09nlBL92wpvldULQUYFqpvwIJElrCHo_X5s3nmJ2E-igdkA\u0026h=UvCA0z92U0QJocT1gqrIhCUvsYqNU8W_oktIkS_b7X0", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "55" ], + "x-ms-client-request-id": [ "ecfd7296-ed8b-4854-b017-fddd5c1eabbe" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 202, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c03ffdc-0000-0800-0000-671c1d680000\"" ], + "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654927062805469\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Fv5XhR8DbT89JAVgh7goZbpM8iB46EYRBeg7f1zmjF1sb6fCIdp8AUKezOb80GPDyyi-iSBuF2TM5005yfkRTlMHKnNxTNa4Ge5as9ukj5D3F15S7mISCEH3-HSJrLMx77RaWOnKMK8sL_UYNaZ31apkW2t2BRv1mUdT0mSdbgK4MH9jJFVFq9MKAZY39LJnPEWVhzx8Xt9ZKwwSgaOeXBEoMPP5t_KhhlMdaK-bEKE10LJdploMMg39o59tr8pXW9dbPN1FsJdQNAe7IrsbVUKa207nIctMuBWhTum4xtS45uo1tUKzeWZZ8eO134FtrdJe8umG7oHNLODvFbNApA\u0026h=bWa0yYLrXxeeZkffI0TJpZYY3nj6GX38XeIKItkkuFc" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654927062649313\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Bga4fsKg5_QtV6nJSVDeOe5N5FCfJh1M9ExZgFs1NMflC7Wj6QQZSAq-YMJ4k6vtEWCamTDoizvt-YhiLeaFJL6ryUyhj-Wep0Rpy9pOSOiZJA_IABxwNgE-NwicFjH1e07pDmwSdUNMcQqqm8sJunurXKswz2JGhOfB5ex7ohccC4bHCM4pPtJEurtNLHBPoM6noNjGzZD84rLxdRYYnNNmLRe2kR0j6nxbVwIQRHLI6AqH2HSMKydtB3DXhiduLABB55zh1xHJ82JE-uao4MLQwCpZargD8Z2mGZCa17QbdiQ9m_m4CRWfiFLAeKDshcp53bvKLzhr6nJWmr0-vg\u0026h=1p-qqxzg4oSKAc0zVBhW31u9Ktcs-FH4aXDf_z3s2Fg" ], + "x-ms-request-id": [ "ca481e45-84eb-4953-8c7e-d258ac58553b" ], + "x-ms-correlation-request-id": [ "6eec6c91-e009-40f5-9d5d-7918ad1c75f7" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223826Z:6eec6c91-e009-40f5-9d5d-7918ad1c75f7" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 9912E40F08684D7391B9F39391611D4F Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:38:26Z" ], + "Date": [ "Fri, 25 Oct 2024 22:38:25 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"name\":\"d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T22:36:24.8053366Z\"}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654927062649313\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Bga4fsKg5_QtV6nJSVDeOe5N5FCfJh1M9ExZgFs1NMflC7Wj6QQZSAq-YMJ4k6vtEWCamTDoizvt-YhiLeaFJL6ryUyhj-Wep0Rpy9pOSOiZJA_IABxwNgE-NwicFjH1e07pDmwSdUNMcQqqm8sJunurXKswz2JGhOfB5ex7ohccC4bHCM4pPtJEurtNLHBPoM6noNjGzZD84rLxdRYYnNNmLRe2kR0j6nxbVwIQRHLI6AqH2HSMKydtB3DXhiduLABB55zh1xHJ82JE-uao4MLQwCpZargD8Z2mGZCa17QbdiQ9m_m4CRWfiFLAeKDshcp53bvKLzhr6nJWmr0-vg\u0026h=1p-qqxzg4oSKAc0zVBhW31u9Ktcs-FH4aXDf_z3s2Fg+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654927062649313\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Bga4fsKg5_QtV6nJSVDeOe5N5FCfJh1M9ExZgFs1NMflC7Wj6QQZSAq-YMJ4k6vtEWCamTDoizvt-YhiLeaFJL6ryUyhj-Wep0Rpy9pOSOiZJA_IABxwNgE-NwicFjH1e07pDmwSdUNMcQqqm8sJunurXKswz2JGhOfB5ex7ohccC4bHCM4pPtJEurtNLHBPoM6noNjGzZD84rLxdRYYnNNmLRe2kR0j6nxbVwIQRHLI6AqH2HSMKydtB3DXhiduLABB55zh1xHJ82JE-uao4MLQwCpZargD8Z2mGZCa17QbdiQ9m_m4CRWfiFLAeKDshcp53bvKLzhr6nJWmr0-vg\u0026h=1p-qqxzg4oSKAc0zVBhW31u9Ktcs-FH4aXDf_z3s2Fg", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "56" ], + "x-ms-client-request-id": [ "ecfd7296-ed8b-4854-b017-fddd5c1eabbe" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c0343f4-0000-0800-0000-671c1de60000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "3cdbf794-5c63-429c-9dac-d665867b79a3" ], + "x-ms-correlation-request-id": [ "675ce0ee-2675-4d81-8215-92ce1fecd50b" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223856Z:675ce0ee-2675-4d81-8215-92ce1fecd50b" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 71C3565F32FB4BEDA9B07AABCB903B79 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:38:56Z" ], + "Date": [ "Fri, 25 Oct 2024 22:38:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "593" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"name\":\"d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T22:36:24.8053366Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654925853295307\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=2LjbPCl9QolqUs95gWo4devmrrlBFvWNG6w6OpJx0HQNXJCJ8j3xlkzvXtUOodoDVdnPBjgB5KwocskBvSgDTmqMTqeJWP6kZ3hRlBcBwdkLv2ffgbF2T5VnnBF5VgGaBGGxL8VPgtmdJz7DnBEy4wRIx2PEv4u5qokaB8y62QuQy6kSInLO46lud0FOxQn7MrfsPWz85U8BC98XKAy_6oYaxL-rhfYIWbWDnPbMP8wh9b5EFuSBLnNen0wxOyTJPovplpeWgGiJIdea8xkIO5ivDJPlKfyJmasc993exE289vFsVFT_ir3uohELrQOyYBcO_NaLpkM1R-rHliPYXQ\u0026h=4vvwFGFAlIp9EZDdoVGPYBdAzDbhiy5He4ATTAWnAso+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D?api-version=2024-02-28-preview\u0026t=638654925853295307\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=2LjbPCl9QolqUs95gWo4devmrrlBFvWNG6w6OpJx0HQNXJCJ8j3xlkzvXtUOodoDVdnPBjgB5KwocskBvSgDTmqMTqeJWP6kZ3hRlBcBwdkLv2ffgbF2T5VnnBF5VgGaBGGxL8VPgtmdJz7DnBEy4wRIx2PEv4u5qokaB8y62QuQy6kSInLO46lud0FOxQn7MrfsPWz85U8BC98XKAy_6oYaxL-rhfYIWbWDnPbMP8wh9b5EFuSBLnNen0wxOyTJPovplpeWgGiJIdea8xkIO5ivDJPlKfyJmasc993exE289vFsVFT_ir3uohELrQOyYBcO_NaLpkM1R-rHliPYXQ\u0026h=4vvwFGFAlIp9EZDdoVGPYBdAzDbhiy5He4ATTAWnAso", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "57" ], + "x-ms-client-request-id": [ "ecfd7296-ed8b-4854-b017-fddd5c1eabbe" ], + "CommandName": [ "Remove-AzDeidService" ], + "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c0343f4-0000-0800-0000-671c1de60000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "36dea6b9-f509-4708-ae52-fb3442158ac4" ], + "x-ms-correlation-request-id": [ "6ba8c401-c370-4875-903a-3ea37aec1b50" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223856Z:6ba8c401-c370-4875-903a-3ea37aec1b50" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 54EF00426F714AABACB269F96D7BBD40 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:38:56Z" ], + "Date": [ "Fri, 25 Oct 2024 22:38:55 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "593" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"name\":\"d3e70ae3-6d0d-4659-a239-e36fcbe673a6*D2347C91468313C1DCD1BB6967C0CF5BF01BCFB6714BFBFC5B98577B7D76416D\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nxe5i7\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T22:36:24.8053366Z\",\"properties\":null}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Remove-AzDeidService.Tests.ps1 b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Remove-AzDeidService.Tests.ps1 new file mode 100644 index 000000000000..1366afb7c5b4 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Remove-AzDeidService.Tests.ps1 @@ -0,0 +1,36 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Remove-AzDeidService')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzDeidService.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Remove-AzDeidService' { + It 'Delete' { + { + Remove-AzDeidService -Name $env.deidServiceNameToDelete1 -ResourceGroupName $env.resourceGroupName + } | Should -Not -Throw + } + + It 'DeleteNonexistent' { + { + Remove-AzDeidService -Name "nonexistent" -ResourceGroupName $env.resourceGroupName + } | Should -Not -Throw + } + + It 'DeleteViaIdentity' { + { + $config = Get-AzDeidService -Name $env.deidServiceNameToDelete2 -ResourceGroupName $env.resourceGroupName + Remove-AzDeidService -InputObject $config + } | Should -Not -Throw + } +} diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Update-AzDeidService.Recording.json b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Update-AzDeidService.Recording.json new file mode 100644 index 000000000000..4beb60fc0584 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Update-AzDeidService.Recording.json @@ -0,0 +1,577 @@ +{ + "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "58" ], + "x-ms-client-request-id": [ "73fbf806-2eed-4230-a06e-231839218a51" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901a032-0000-0800-0000-671c1a3e0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1098" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "977e57d9-5326-40b7-9559-1e1cfb50381d" ], + "x-ms-correlation-request-id": [ "a2c53f98-99a8-432b-b3e9-98f76c7f1c0d" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16498" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223900Z:a2c53f98-99a8-432b-b3e9-98f76c7f1c0d" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 79E90AA2533C45A48DAC8A546A6B2802 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:39:00Z" ], + "Date": [ "Fri, 25 Oct 2024 22:38:59 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op\",\"name\":\"qkz9op\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:22:46.2407678Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:22:46.2407678Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e6g2dedxg0ccgvej.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview+2": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview", + "Content": "{\n \"location\": \"eastus2\",\n \"properties\": {\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n }\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "138" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"490177bc-0000-0800-0000-671c1e070000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "e3e6fbdb-04e4-46ba-bf70-78b5c2a32daa" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "13255f7e-a7fb-4b52-aea9-4e61414e9bc8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634?api-version=2024-02-28-preview\u0026t=638654927433722619\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aWceAP0lN_Y0UZipcDwfWD2W2qa3uzeYAnDLDiFUw9U05ACdnX2eqjpB9cBhtoNxP9aU5mz3KR2tIE-j6gL3_i7dLQ3_zky4HI5xEF7PtqoFAF4trGGqUlKnjh6pz1EweNPCVCB4L-o3B1AJ4XHKyWnw7XZ-XDvtdv2FJKXXyQ2Rx04UDMiftsydaHHkXZs6I7wZo_4g2IwoCSfamY8LAS6Jkg_In4Iiv1WO6HYxkj_YzhabQ_f9l9d-6Ctwhf8MdmzLAlXRlgiHlbJlI-5YutJiML5F6bUslhX0Lh4A85KPmQpAH0I-B4gB8lBxtv7kwzBJAPWQaHFxSkWe6hUZpQ\u0026h=g6nwaEGYTIjt6yJfWrGEOM2set8XI0gcYMxP9973LPg" ], + "x-ms-request-id": [ "908605e0-800b-461f-a88a-470d270982cb" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223903Z:13255f7e-a7fb-4b52-aea9-4e61414e9bc8" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 706D64A56D0B472E9C881E4143B9D465 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:39:00Z" ], + "Date": [ "Fri, 25 Oct 2024 22:39:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "778" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op\",\"name\":\"qkz9op\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:22:46.2407678Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:39:01.8097536Z\"},\"identity\":{\"principalId\":\"4e06eca0-8970-4c69-852b-cd4595049969\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"serviceUrl\":\"https://e6g2dedxg0ccgvej.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634?api-version=2024-02-28-preview\u0026t=638654927433722619\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aWceAP0lN_Y0UZipcDwfWD2W2qa3uzeYAnDLDiFUw9U05ACdnX2eqjpB9cBhtoNxP9aU5mz3KR2tIE-j6gL3_i7dLQ3_zky4HI5xEF7PtqoFAF4trGGqUlKnjh6pz1EweNPCVCB4L-o3B1AJ4XHKyWnw7XZ-XDvtdv2FJKXXyQ2Rx04UDMiftsydaHHkXZs6I7wZo_4g2IwoCSfamY8LAS6Jkg_In4Iiv1WO6HYxkj_YzhabQ_f9l9d-6Ctwhf8MdmzLAlXRlgiHlbJlI-5YutJiML5F6bUslhX0Lh4A85KPmQpAH0I-B4gB8lBxtv7kwzBJAPWQaHFxSkWe6hUZpQ\u0026h=g6nwaEGYTIjt6yJfWrGEOM2set8XI0gcYMxP9973LPg+3": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634?api-version=2024-02-28-preview\u0026t=638654927433722619\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aWceAP0lN_Y0UZipcDwfWD2W2qa3uzeYAnDLDiFUw9U05ACdnX2eqjpB9cBhtoNxP9aU5mz3KR2tIE-j6gL3_i7dLQ3_zky4HI5xEF7PtqoFAF4trGGqUlKnjh6pz1EweNPCVCB4L-o3B1AJ4XHKyWnw7XZ-XDvtdv2FJKXXyQ2Rx04UDMiftsydaHHkXZs6I7wZo_4g2IwoCSfamY8LAS6Jkg_In4Iiv1WO6HYxkj_YzhabQ_f9l9d-6Ctwhf8MdmzLAlXRlgiHlbJlI-5YutJiML5F6bUslhX0Lh4A85KPmQpAH0I-B4gB8lBxtv7kwzBJAPWQaHFxSkWe6hUZpQ\u0026h=g6nwaEGYTIjt6yJfWrGEOM2set8XI0gcYMxP9973LPg", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "60" ], + "x-ms-client-request-id": [ "73fbf806-2eed-4230-a06e-231839218a51" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c0395fa-0000-0800-0000-671c1e060000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "b05d7ecd-c269-496e-a6a7-83ccb66be447" ], + "x-ms-correlation-request-id": [ "077c9b1f-9776-4500-b5d5-e795ba2579c8" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T223933Z:077c9b1f-9776-4500-b5d5-e795ba2579c8" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 562F3BA8938A4710867AD74C59853BE8 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:39:33Z" ], + "Date": [ "Fri, 25 Oct 2024 22:39:32 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634\",\"name\":\"908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T22:39:02.7604994Z\"}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634?api-version=2024-02-28-preview\u0026t=638654927433722619\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aWceAP0lN_Y0UZipcDwfWD2W2qa3uzeYAnDLDiFUw9U05ACdnX2eqjpB9cBhtoNxP9aU5mz3KR2tIE-j6gL3_i7dLQ3_zky4HI5xEF7PtqoFAF4trGGqUlKnjh6pz1EweNPCVCB4L-o3B1AJ4XHKyWnw7XZ-XDvtdv2FJKXXyQ2Rx04UDMiftsydaHHkXZs6I7wZo_4g2IwoCSfamY8LAS6Jkg_In4Iiv1WO6HYxkj_YzhabQ_f9l9d-6Ctwhf8MdmzLAlXRlgiHlbJlI-5YutJiML5F6bUslhX0Lh4A85KPmQpAH0I-B4gB8lBxtv7kwzBJAPWQaHFxSkWe6hUZpQ\u0026h=g6nwaEGYTIjt6yJfWrGEOM2set8XI0gcYMxP9973LPg+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634?api-version=2024-02-28-preview\u0026t=638654927433722619\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aWceAP0lN_Y0UZipcDwfWD2W2qa3uzeYAnDLDiFUw9U05ACdnX2eqjpB9cBhtoNxP9aU5mz3KR2tIE-j6gL3_i7dLQ3_zky4HI5xEF7PtqoFAF4trGGqUlKnjh6pz1EweNPCVCB4L-o3B1AJ4XHKyWnw7XZ-XDvtdv2FJKXXyQ2Rx04UDMiftsydaHHkXZs6I7wZo_4g2IwoCSfamY8LAS6Jkg_In4Iiv1WO6HYxkj_YzhabQ_f9l9d-6Ctwhf8MdmzLAlXRlgiHlbJlI-5YutJiML5F6bUslhX0Lh4A85KPmQpAH0I-B4gB8lBxtv7kwzBJAPWQaHFxSkWe6hUZpQ\u0026h=g6nwaEGYTIjt6yJfWrGEOM2set8XI0gcYMxP9973LPg", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "61" ], + "x-ms-client-request-id": [ "73fbf806-2eed-4230-a06e-231839218a51" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6c0395fa-0000-0800-0000-671c1e060000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "c1a41df2-387a-4ee9-897c-80967b8dbd55" ], + "x-ms-correlation-request-id": [ "5a4f704b-58f1-47f3-a088-ad113af7f599" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T224003Z:5a4f704b-58f1-47f3-a088-ad113af7f599" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 493456797F7242F492D3F128ACD3CBAD Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:40:03Z" ], + "Date": [ "Fri, 25 Oct 2024 22:40:02 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634\",\"name\":\"908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T22:39:02.7604994Z\"}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634?api-version=2024-02-28-preview\u0026t=638654927433722619\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aWceAP0lN_Y0UZipcDwfWD2W2qa3uzeYAnDLDiFUw9U05ACdnX2eqjpB9cBhtoNxP9aU5mz3KR2tIE-j6gL3_i7dLQ3_zky4HI5xEF7PtqoFAF4trGGqUlKnjh6pz1EweNPCVCB4L-o3B1AJ4XHKyWnw7XZ-XDvtdv2FJKXXyQ2Rx04UDMiftsydaHHkXZs6I7wZo_4g2IwoCSfamY8LAS6Jkg_In4Iiv1WO6HYxkj_YzhabQ_f9l9d-6Ctwhf8MdmzLAlXRlgiHlbJlI-5YutJiML5F6bUslhX0Lh4A85KPmQpAH0I-B4gB8lBxtv7kwzBJAPWQaHFxSkWe6hUZpQ\u0026h=g6nwaEGYTIjt6yJfWrGEOM2set8XI0gcYMxP9973LPg+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634?api-version=2024-02-28-preview\u0026t=638654927433722619\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aWceAP0lN_Y0UZipcDwfWD2W2qa3uzeYAnDLDiFUw9U05ACdnX2eqjpB9cBhtoNxP9aU5mz3KR2tIE-j6gL3_i7dLQ3_zky4HI5xEF7PtqoFAF4trGGqUlKnjh6pz1EweNPCVCB4L-o3B1AJ4XHKyWnw7XZ-XDvtdv2FJKXXyQ2Rx04UDMiftsydaHHkXZs6I7wZo_4g2IwoCSfamY8LAS6Jkg_In4Iiv1WO6HYxkj_YzhabQ_f9l9d-6Ctwhf8MdmzLAlXRlgiHlbJlI-5YutJiML5F6bUslhX0Lh4A85KPmQpAH0I-B4gB8lBxtv7kwzBJAPWQaHFxSkWe6hUZpQ\u0026h=g6nwaEGYTIjt6yJfWrGEOM2set8XI0gcYMxP9973LPg", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "62" ], + "x-ms-client-request-id": [ "73fbf806-2eed-4230-a06e-231839218a51" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6d034006-0000-0800-0000-671c1e480000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "99332311-0bf4-4471-9f94-e5cf143b3894" ], + "x-ms-correlation-request-id": [ "34ef2997-4769-4b79-a0e6-22bf8dca0b71" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T224034Z:34ef2997-4769-4b79-a0e6-22bf8dca0b71" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BFC3969CF4A645709758970C30854FB5 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:40:33Z" ], + "Date": [ "Fri, 25 Oct 2024 22:40:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "634" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634\",\"name\":\"908605e0-800b-461f-a88a-470d270982cb*820822F853E9C233B0A0F2F43877B628FCD42D1F65648DF2A896B06889036634\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T22:39:02.7604994Z\",\"endTime\":\"2024-10-25T22:39:11.8663047Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "63" ], + "x-ms-client-request-id": [ "73fbf806-2eed-4230-a06e-231839218a51" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901b0bd-0000-0800-0000-671c1e100000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "176d01d1-57d4-4c81-b05a-30dc0288b28a" ], + "x-ms-correlation-request-id": [ "74d2b0e2-c07b-4981-a71f-f66010686c21" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T224034Z:74d2b0e2-c07b-4981-a71f-f66010686c21" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0389EAA33D614C26B4505A9E4782E0E8 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:40:34Z" ], + "Date": [ "Fri, 25 Oct 2024 22:40:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "779" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/qkz9op\",\"name\":\"qkz9op\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:22:46.2407678Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:39:01.8097536Z\"},\"identity\":{\"principalId\":\"4e06eca0-8970-4c69-852b-cd4595049969\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e6g2dedxg0ccgvej.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta?api-version=2024-02-28-preview+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "64" ], + "x-ms-client-request-id": [ "38fab992-181f-43d3-85bc-973af7e8e5b8" ], + "CommandName": [ "Get-AzDeidService" ], + "FullCommandName": [ "Get-AzDeidService_Get" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901983f-0000-0800-0000-671c1a9a0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "d0b61d90-7441-4480-80d0-3db511e4301a" ], + "x-ms-correlation-request-id": [ "37d1437d-7647-4ab5-aa50-b893b5ae870a" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T224034Z:37d1437d-7647-4ab5-aa50-b893b5ae870a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B900B70E92894B96A5D40B67B383EA6C Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:40:34Z" ], + "Date": [ "Fri, 25 Oct 2024 22:40:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta\",\"name\":\"x9mpta\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:24:18.8831832Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:24:18.8831832Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fndahkgagbffe9ev.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta?api-version=2024-02-28-preview+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "65" ], + "x-ms-client-request-id": [ "8cf05741-f284-481f-8a96-07fd0a4a304f" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901983f-0000-0800-0000-671c1a9a0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "74ad516e-d548-469e-98c4-e77c663ca1fa" ], + "x-ms-correlation-request-id": [ "c231333d-7a9b-4d17-b462-d6b850d5d4e1" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T224034Z:c231333d-7a9b-4d17-b462-d6b850d5d4e1" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 90A9F316E76F4AEFAA10A8FCF71BEA77 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:40:34Z" ], + "Date": [ "Fri, 25 Oct 2024 22:40:33 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "638" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta\",\"name\":\"x9mpta\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:24:18.8831832Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:24:18.8831832Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fndahkgagbffe9ev.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta?api-version=2024-02-28-preview+3": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta?api-version=2024-02-28-preview", + "Content": "{\n \"tags\": {\n \"AzPwshTestKey\": \"AzPwshTestValue\"\n },\n \"location\": \"eastus2\",\n \"properties\": {\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n }\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "194" ] + } + }, + "Response": { + "StatusCode": 201, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901dbd1-0000-0800-0000-671c1e650000\"" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], + "x-ms-providerhub-traffic": [ "True" ], + "mise-correlation-id": [ "5f3e8ba3-7065-46c6-861d-673be1fcb72e" ], + "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], + "x-ms-correlation-request-id": [ "bcd4d89b-7004-47c6-8cb5-8d6f51e97691" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525?api-version=2024-02-28-preview\u0026t=638654928376537645\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=w2BTTfUpJ6zNeinu9ScY3w8W6pVEzm3s1n72rBKJjktliUBegqLryWBIPuNb17tCnXbt1rSPwnvQL7oH6AVg-KjhoXmShdwnWjL5l3Yhr2V1Tj5mg9dhh9Bhun1TroXI-I7cqHMVcLldDOYl95vS2yL4z9wBKZNaNu2h7xCdABONVEsSq-fP3Xzw_jmhS-q08BOvEoZk2D607D3g8zw898N8Ywxu7MA63bMx6LlTot4gBI8VZKBKAsn5IVJs1rN-eLE2Md2e7pKcne3q3ru4mVlBWcsacaaoccoT2zatD7CoMQ8z7g3IXF9VQ69OxTKyC-3YieAO8FQKrNbh_E2JHg\u0026h=7CMqksqUIo9pO-lG3dZKjB1wNmuQYFL5vcqGbBrnbR8" ], + "x-ms-request-id": [ "c12556c0-5f1c-4318-8b91-61b5ff326b70" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T224037Z:bcd4d89b-7004-47c6-8cb5-8d6f51e97691" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 215D89049A0644E5954F672186B2E8E0 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:40:34Z" ], + "Date": [ "Fri, 25 Oct 2024 22:40:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "811" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta\",\"name\":\"x9mpta\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:24:18.8831832Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:40:35.8099037Z\"},\"identity\":{\"principalId\":\"e8166291-df08-4870-b521-32697c1787d2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"serviceUrl\":\"https://fndahkgagbffe9ev.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525?api-version=2024-02-28-preview\u0026t=638654928376537645\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=w2BTTfUpJ6zNeinu9ScY3w8W6pVEzm3s1n72rBKJjktliUBegqLryWBIPuNb17tCnXbt1rSPwnvQL7oH6AVg-KjhoXmShdwnWjL5l3Yhr2V1Tj5mg9dhh9Bhun1TroXI-I7cqHMVcLldDOYl95vS2yL4z9wBKZNaNu2h7xCdABONVEsSq-fP3Xzw_jmhS-q08BOvEoZk2D607D3g8zw898N8Ywxu7MA63bMx6LlTot4gBI8VZKBKAsn5IVJs1rN-eLE2Md2e7pKcne3q3ru4mVlBWcsacaaoccoT2zatD7CoMQ8z7g3IXF9VQ69OxTKyC-3YieAO8FQKrNbh_E2JHg\u0026h=7CMqksqUIo9pO-lG3dZKjB1wNmuQYFL5vcqGbBrnbR8+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525?api-version=2024-02-28-preview\u0026t=638654928376537645\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=w2BTTfUpJ6zNeinu9ScY3w8W6pVEzm3s1n72rBKJjktliUBegqLryWBIPuNb17tCnXbt1rSPwnvQL7oH6AVg-KjhoXmShdwnWjL5l3Yhr2V1Tj5mg9dhh9Bhun1TroXI-I7cqHMVcLldDOYl95vS2yL4z9wBKZNaNu2h7xCdABONVEsSq-fP3Xzw_jmhS-q08BOvEoZk2D607D3g8zw898N8Ywxu7MA63bMx6LlTot4gBI8VZKBKAsn5IVJs1rN-eLE2Md2e7pKcne3q3ru4mVlBWcsacaaoccoT2zatD7CoMQ8z7g3IXF9VQ69OxTKyC-3YieAO8FQKrNbh_E2JHg\u0026h=7CMqksqUIo9pO-lG3dZKjB1wNmuQYFL5vcqGbBrnbR8", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "67" ], + "x-ms-client-request-id": [ "8cf05741-f284-481f-8a96-07fd0a4a304f" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6d03080c-0000-0800-0000-671c1e640000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "7d38a4de-d809-4786-9caa-4c85822f3fec" ], + "x-ms-correlation-request-id": [ "e7e5cbcd-4b06-4cca-be20-79171ec123ee" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T224107Z:e7e5cbcd-4b06-4cca-be20-79171ec123ee" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E79DE1E39A0E4F95B4C9FCE380396CCB Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:41:07Z" ], + "Date": [ "Fri, 25 Oct 2024 22:41:06 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525\",\"name\":\"c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T22:40:36.7564821Z\"}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525?api-version=2024-02-28-preview\u0026t=638654928376537645\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=w2BTTfUpJ6zNeinu9ScY3w8W6pVEzm3s1n72rBKJjktliUBegqLryWBIPuNb17tCnXbt1rSPwnvQL7oH6AVg-KjhoXmShdwnWjL5l3Yhr2V1Tj5mg9dhh9Bhun1TroXI-I7cqHMVcLldDOYl95vS2yL4z9wBKZNaNu2h7xCdABONVEsSq-fP3Xzw_jmhS-q08BOvEoZk2D607D3g8zw898N8Ywxu7MA63bMx6LlTot4gBI8VZKBKAsn5IVJs1rN-eLE2Md2e7pKcne3q3ru4mVlBWcsacaaoccoT2zatD7CoMQ8z7g3IXF9VQ69OxTKyC-3YieAO8FQKrNbh_E2JHg\u0026h=7CMqksqUIo9pO-lG3dZKjB1wNmuQYFL5vcqGbBrnbR8+5": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525?api-version=2024-02-28-preview\u0026t=638654928376537645\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=w2BTTfUpJ6zNeinu9ScY3w8W6pVEzm3s1n72rBKJjktliUBegqLryWBIPuNb17tCnXbt1rSPwnvQL7oH6AVg-KjhoXmShdwnWjL5l3Yhr2V1Tj5mg9dhh9Bhun1TroXI-I7cqHMVcLldDOYl95vS2yL4z9wBKZNaNu2h7xCdABONVEsSq-fP3Xzw_jmhS-q08BOvEoZk2D607D3g8zw898N8Ywxu7MA63bMx6LlTot4gBI8VZKBKAsn5IVJs1rN-eLE2Md2e7pKcne3q3ru4mVlBWcsacaaoccoT2zatD7CoMQ8z7g3IXF9VQ69OxTKyC-3YieAO8FQKrNbh_E2JHg\u0026h=7CMqksqUIo9pO-lG3dZKjB1wNmuQYFL5vcqGbBrnbR8", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "68" ], + "x-ms-client-request-id": [ "8cf05741-f284-481f-8a96-07fd0a4a304f" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6d03080c-0000-0800-0000-671c1e640000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "6f509eab-b075-417f-9a33-7f25a1bf27a4" ], + "x-ms-correlation-request-id": [ "4a04e5dc-c1d2-4d52-a7b1-1dd5ab4cc2dd" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T224138Z:4a04e5dc-c1d2-4d52-a7b1-1dd5ab4cc2dd" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E4CF4FCEBD304350AEC0E4E2AC492670 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:41:37Z" ], + "Date": [ "Fri, 25 Oct 2024 22:41:38 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "574" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525\",\"name\":\"c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T22:40:36.7564821Z\"}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525?api-version=2024-02-28-preview\u0026t=638654928376537645\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=w2BTTfUpJ6zNeinu9ScY3w8W6pVEzm3s1n72rBKJjktliUBegqLryWBIPuNb17tCnXbt1rSPwnvQL7oH6AVg-KjhoXmShdwnWjL5l3Yhr2V1Tj5mg9dhh9Bhun1TroXI-I7cqHMVcLldDOYl95vS2yL4z9wBKZNaNu2h7xCdABONVEsSq-fP3Xzw_jmhS-q08BOvEoZk2D607D3g8zw898N8Ywxu7MA63bMx6LlTot4gBI8VZKBKAsn5IVJs1rN-eLE2Md2e7pKcne3q3ru4mVlBWcsacaaoccoT2zatD7CoMQ8z7g3IXF9VQ69OxTKyC-3YieAO8FQKrNbh_E2JHg\u0026h=7CMqksqUIo9pO-lG3dZKjB1wNmuQYFL5vcqGbBrnbR8+6": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525?api-version=2024-02-28-preview\u0026t=638654928376537645\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=w2BTTfUpJ6zNeinu9ScY3w8W6pVEzm3s1n72rBKJjktliUBegqLryWBIPuNb17tCnXbt1rSPwnvQL7oH6AVg-KjhoXmShdwnWjL5l3Yhr2V1Tj5mg9dhh9Bhun1TroXI-I7cqHMVcLldDOYl95vS2yL4z9wBKZNaNu2h7xCdABONVEsSq-fP3Xzw_jmhS-q08BOvEoZk2D607D3g8zw898N8Ywxu7MA63bMx6LlTot4gBI8VZKBKAsn5IVJs1rN-eLE2Md2e7pKcne3q3ru4mVlBWcsacaaoccoT2zatD7CoMQ8z7g3IXF9VQ69OxTKyC-3YieAO8FQKrNbh_E2JHg\u0026h=7CMqksqUIo9pO-lG3dZKjB1wNmuQYFL5vcqGbBrnbR8", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "69" ], + "x-ms-client-request-id": [ "8cf05741-f284-481f-8a96-07fd0a4a304f" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"6d037d17-0000-0800-0000-671c1ea60000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-request-id": [ "5c737f77-fd87-4f38-969c-094d86714272" ], + "x-ms-correlation-request-id": [ "a860d22d-de68-411a-9664-a45053ece20f" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T224208Z:a860d22d-de68-411a-9664-a45053ece20f" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1C944ADF63C8482386678E1881F089C1 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:42:08Z" ], + "Date": [ "Fri, 25 Oct 2024 22:42:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "634" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525\",\"name\":\"c12556c0-5f1c-4318-8b91-61b5ff326b70*F16DBC0714A7DA7D1621855F837550106A963E36D47BC7071DE01F044ABBF525\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T22:40:36.7564821Z\",\"endTime\":\"2024-10-25T22:40:45.8437654Z\",\"properties\":null}", + "isContentBase64": false + } + }, + "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta?api-version=2024-02-28-preview+7": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta?api-version=2024-02-28-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "70" ], + "x-ms-client-request-id": [ "8cf05741-f284-481f-8a96-07fd0a4a304f" ], + "CommandName": [ "Update-AzDeidService" ], + "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDataAiServices/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "ETag": [ "\"4901cdd2-0000-0800-0000-671c1e6d0000\"" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], + "x-ms-providerhub-traffic": [ "True" ], + "x-ms-request-id": [ "38221385-be45-4d12-a851-2a2a17750dc3" ], + "x-ms-correlation-request-id": [ "236094ab-5e67-4b3a-83d5-73951342469c" ], + "x-ms-routing-request-id": [ "WESTUS2:20241025T224208Z:236094ab-5e67-4b3a-83d5-73951342469c" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 2A962135EF784C27B074201EF5A66427 Ref B: CO6AA3150220019 Ref C: 2024-10-25T22:42:08Z" ], + "Date": [ "Fri, 25 Oct 2024 22:42:08 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "812" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/x9mpta\",\"name\":\"x9mpta\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T22:24:18.8831832Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T22:40:35.8099037Z\"},\"identity\":{\"principalId\":\"e8166291-df08-4870-b521-32697c1787d2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fndahkgagbffe9ev.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Update-AzDeidService.Tests.ps1 b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Update-AzDeidService.Tests.ps1 new file mode 100644 index 000000000000..3ec6a0daba13 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/Update-AzDeidService.Tests.ps1 @@ -0,0 +1,38 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Update-AzDeidService')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzDeidService.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Update-AzDeidService' { + It 'UpdateExpanded' { + { + $config = Update-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName -EnableSystemAssignedIdentity:$true -PublicNetworkAccess "Disabled" + $config.Name | Should -Be $env.deidServiceName + $config.PublicNetworkAccess | Should -Be "Disabled" + $config.IdentityType | Should -Be "SystemAssigned" + } | Should -Not -Throw + } + + It 'UpdateViaIdentityExpanded' { + { + $config = Get-AzDeidService -Name $env.deidServiceName2 -ResourceGroupName $env.resourceGroupName + $config2 = Update-AzDeidService -InputObject $config -EnableSystemAssignedIdentity $true -PublicNetworkAccess "Disabled" -Tag @{ + AzPwshTestKey = "AzPwshTestValue" + } + $config2.Name | Should -Be $env.deidServiceName2 + $config2.PublicNetworkAccess | Should -Be "Disabled" + $config2.IdentityType | Should -Be "SystemAssigned" + } | Should -Not -Throw + } +} diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/env.json b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/env.json new file mode 100644 index 000000000000..376f6463bd57 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/env.json @@ -0,0 +1,13 @@ +{ + "location": "eastus2", + "deidServiceToCreateInTests1": "aygw8q", + "deidServiceName": "qkz9op", + "SubscriptionId": "a49b70b4-60ee-4422-a7e2-3a5223f5fae4", + "deidServiceToCreateInTests3": "5dmvzt", + "resourceGroupName": "azps-test-rg-eus2", + "deidServiceNameToDelete1": "o6rwcu", + "deidServiceName2": "x9mpta", + "deidServiceNameToDelete2": "nxe5i7", + "deidServiceToCreateInTests2": "v06dmp", + "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47" +} diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/jsonConfigs/deidServiceJson.json b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/jsonConfigs/deidServiceJson.json new file mode 100644 index 000000000000..7edb1a7f4333 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/jsonConfigs/deidServiceJson.json @@ -0,0 +1,6 @@ +{ + "location": "eastus", + "properties": { + "publicNetworkAccess": "Disabled" + } +} \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/loadEnv.ps1 b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/loadEnv.ps1 new file mode 100644 index 000000000000..6a7c385c6b7d --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/loadEnv.ps1 @@ -0,0 +1,29 @@ +# ---------------------------------------------------------------------------------- +# 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. +# ---------------------------------------------------------------------------------- +$envFile = 'env.json' +if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' +} + +if (Test-Path -Path (Join-Path $PSScriptRoot $envFile)) { + $envFilePath = Join-Path $PSScriptRoot $envFile +} else { + $envFilePath = Join-Path $PSScriptRoot '..\$envFile' +} +$env = @{} +if (Test-Path -Path $envFilePath) { + $env = Get-Content (Join-Path $PSScriptRoot $envFile) | ConvertFrom-Json + $PSDefaultParameterValues=@{"*:Tenant"=$env.Tenant} +} \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/utils.ps1 b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/utils.ps1 new file mode 100644 index 000000000000..f2255cb8c5de --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/test/utils.ps1 @@ -0,0 +1,93 @@ +function RandomString([bool]$allChars, [int32]$len) { + if ($allChars) { + return -join ((33..126) | Get-Random -Count $len | % {[char]$_}) + } else { + return -join ((48..57) + (97..122) | Get-Random -Count $len | % {[char]$_}) + } +} +function Start-TestSleep { + [CmdletBinding(DefaultParameterSetName = 'SleepBySeconds')] + param( + [parameter(Mandatory = $true, Position = 0, ParameterSetName = 'SleepBySeconds')] + [ValidateRange(0.0, 2147483.0)] + [double] $Seconds, + + [parameter(Mandatory = $true, ParameterSetName = 'SleepByMilliseconds')] + [ValidateRange('NonNegative')] + [Alias('ms')] + [int] $Milliseconds + ) + + if ($TestMode -ne 'playback') { + switch ($PSCmdlet.ParameterSetName) { + 'SleepBySeconds' { + Start-Sleep -Seconds $Seconds + } + 'SleepByMilliseconds' { + Start-Sleep -Milliseconds $Milliseconds + } + } + } +} + +$env = @{} +if ($UsePreviousConfigForRecord) { + $previousEnv = Get-Content (Join-Path $PSScriptRoot 'env.json') | ConvertFrom-Json + $previousEnv.psobject.properties | Foreach-Object { $env[$_.Name] = $_.Value } +} +# Add script method called AddWithCache to $env, when useCache is set true, it will try to get the value from the $env first. +# example: $val = $env.AddWithCache('key', $val, $true) +$env | Add-Member -Type ScriptMethod -Value { param( [string]$key, [object]$val, [bool]$useCache) if ($this.Contains($key) -and $useCache) { return $this[$key] } else { $this[$key] = $val; return $val } } -Name 'AddWithCache' +function setupEnv() { + # Preload subscriptionId and tenant from context, which will be used in test + # as default. You could change them if needed. + $env.AddWithCache("SubscriptionId", (Get-AzContext).Subscription.Id, $true) + $env.AddWithCache("Tenant", (Get-AzContext).Tenant.Id, $true) + + $env.AddWithCache("location", "eastus2", $true) + + # Create the test resource group + Write-Host "Creating test resource group" + $resourceGroup = "azps-test-rg-eus2" + $env.AddWithCache("resourceGroupName", $resourceGroup, $true) + New-AzResourceGroup -Name $env.resourceGroupName -Location $env.location + Write-Host "Resource group created" + + $deidServiceName = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceName", $deidServiceName, $true) + $deidServiceName2 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceName2", $deidServiceName2, $true) + $deidServiceNameToDelete1 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceNameToDelete1", $deidServiceNameToDelete1, $true) + $deidServiceNameToDelete2 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceNameToDelete2", $deidServiceNameToDelete2, $true) + $deidServiceToCreateInTests1 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceToCreateInTests1", $deidServiceToCreateInTests1, $true) + $deidServiceToCreateInTests2 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceToCreateInTests2", $deidServiceToCreateInTests2, $true) + $deidServiceToCreateInTests3 = RandomString -allChars $false -len 6 + $env.AddWithCache("deidServiceToCreateInTests3", $deidServiceToCreateInTests3, $true) + + # Create resources to use in tests + Write-Output "Creating DeID services" + New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName -Location $env.location + New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName2 -Location $env.location + New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceNameToDelete1 -Location $env.location + New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceNameToDelete2 -Location $env.location + Write-Output "Finished creating DeID services" + + # For any resources you created for test, you should add it to $env here. + $envFile = 'env.json' + if ($TestMode -eq 'live') { + $envFile = 'localEnv.json' + } + set-content -Path (Join-Path $PSScriptRoot $envFile) -Value (ConvertTo-Json $env) +} +function cleanupEnv() { + # Clean resources you create for testing + $resourceGroup = "azps-test-rg-eus2" + $env.AddWithCache("resourceGroupName", $resourceGroup, $true) + Remove-AzResourceGroup -Name $env.resourceGroupName + Write-Host "Resource group deleted" +} + diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 b/src/HealthDataAIServices/HealthDataAIServices.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 new file mode 100644 index 000000000000..5319862d3372 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 @@ -0,0 +1,7 @@ +param() +if ($env:AzPSAutorestTestPlaybackMode) { + $loadEnvPath = Join-Path $PSScriptRoot '..' 'test' 'loadEnv.ps1' + . ($loadEnvPath) + return $env.SubscriptionId +} +return (Get-AzContext).Subscription.Id \ No newline at end of file diff --git a/src/HealthDataAIServices/HealthDataAIServices.Autorest/utils/Unprotect-SecureString.ps1 b/src/HealthDataAIServices/HealthDataAIServices.Autorest/utils/Unprotect-SecureString.ps1 new file mode 100644 index 000000000000..cb05b51a6220 --- /dev/null +++ b/src/HealthDataAIServices/HealthDataAIServices.Autorest/utils/Unprotect-SecureString.ps1 @@ -0,0 +1,16 @@ +#This script converts securestring to plaintext + +param( + [Parameter(Mandatory, ValueFromPipeline)] + [System.Security.SecureString] + ${SecureString} +) + +$ssPtr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SecureString) +try { + $plaintext = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($ssPtr) +} finally { + [System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($ssPtr) +} + +return $plaintext \ No newline at end of file From 79391b3eaa2687f0971e51b1985136ec959cf2b7 Mon Sep 17 00:00:00 2001 From: NanxiangLiu <33285578+Nickcandy@users.noreply.github.com> Date: Tue, 29 Oct 2024 15:36:13 +0800 Subject: [PATCH 15/16] =?UTF-8?q?Delete=20src/HealthDeidentification/Healt?= =?UTF-8?q?hDeidentification.Autorest=20dir=E2=80=A6=20(#26517)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Delete src/HealthDeidentification/HealthDeidentification.Autorest directory * Update README.md --- .../ADDomainServices.Autorest/README.md | 2 +- .../.gitattributes | 1 - .../.gitignore | 18 - .../Properties/AssemblyInfo.cs | 26 - .../HealthDeidentification.Autorest/README.md | 78 -- .../deidServices.json | 85 -- .../custom/README.md | 41 - .../docs/Az.HealthDeidentification.md | 25 - .../docs/Get-AzDeidService.md | 183 ----- .../docs/New-AzDeidService.md | 345 --------- .../docs/README.md | 11 - .../docs/Remove-AzDeidService.md | 209 ----- .../docs/Update-AzDeidService.md | 316 -------- .../examples/Get-AzDeidService.md | 45 -- .../examples/New-AzDeidService.md | 61 -- .../examples/Remove-AzDeidService.md | 7 - .../examples/Update-AzDeidService.md | 64 -- .../HealthDeidentification.Autorest/how-to.md | 58 -- .../resources/README.md | 11 - .../test/Get-AzDeidService.Recording.json | 225 ------ .../test/Get-AzDeidService.Tests.ps1 | 48 -- .../test/New-AzDeidService.Recording.json | 662 ---------------- .../test/New-AzDeidService.Tests.ps1 | 42 - .../test/README.md | 17 - .../test/Remove-AzDeidService.Recording.json | 726 ------------------ .../test/Remove-AzDeidService.Tests.ps1 | 36 - .../test/Update-AzDeidService.Recording.json | 577 -------------- .../test/Update-AzDeidService.Tests.ps1 | 38 - .../test/env.json | 13 - .../test/jsonConfigs/deidServiceJson.json | 6 - .../test/loadEnv.ps1 | 29 - .../test/utils.ps1 | 93 --- .../utils/Get-SubscriptionIdTestSafe.ps1 | 7 - .../utils/Unprotect-SecureString.ps1 | 16 - 34 files changed, 1 insertion(+), 4120 deletions(-) delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/.gitattributes delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/.gitignore delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/Properties/AssemblyInfo.cs delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/README.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/custom/README.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/docs/Az.HealthDeidentification.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/docs/Get-AzDeidService.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/docs/New-AzDeidService.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/docs/README.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/docs/Remove-AzDeidService.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/docs/Update-AzDeidService.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/examples/Get-AzDeidService.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/examples/New-AzDeidService.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/examples/Remove-AzDeidService.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/examples/Update-AzDeidService.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/how-to.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/resources/README.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Recording.json delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Tests.ps1 delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Recording.json delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Tests.ps1 delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/README.md delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Recording.json delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Tests.ps1 delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Recording.json delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Tests.ps1 delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/env.json delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/jsonConfigs/deidServiceJson.json delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/loadEnv.ps1 delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/test/utils.ps1 delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 delete mode 100644 src/HealthDeidentification/HealthDeidentification.Autorest/utils/Unprotect-SecureString.ps1 diff --git a/src/ADDomainServices/ADDomainServices.Autorest/README.md b/src/ADDomainServices/ADDomainServices.Autorest/README.md index 3644e254f16e..22e5d47d2e78 100644 --- a/src/ADDomainServices/ADDomainServices.Autorest/README.md +++ b/src/ADDomainServices/ADDomainServices.Autorest/README.md @@ -148,7 +148,7 @@ directive: - Name - DomainName - Location - - Sku + - Sku labels: DomainName: Domain Name ``` diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/.gitattributes b/src/HealthDeidentification/HealthDeidentification.Autorest/.gitattributes deleted file mode 100644 index 2125666142eb..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -* text=auto \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/.gitignore b/src/HealthDeidentification/HealthDeidentification.Autorest/.gitignore deleted file mode 100644 index ccbe8d018341..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/.gitignore +++ /dev/null @@ -1,18 +0,0 @@ -bin -obj -.vs -generated -internal -exports -tools -custom/*.psm1 -custom/autogen-model-cmdlets -test/*-TestResults.xml -license.txt -/*.ps1 -/*.psd1 -/*.ps1xml -/*.psm1 -/*.snk -/*.csproj -/*.nuspec \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/Properties/AssemblyInfo.cs b/src/HealthDeidentification/HealthDeidentification.Autorest/Properties/AssemblyInfo.cs deleted file mode 100644 index 9604bddc5084..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,26 +0,0 @@ -// 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 - HealthDeidentification")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("0.1.0.0")] -[assembly: System.Reflection.AssemblyVersionAttribute("0.1.0.0")] -[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] -[assembly: System.CLSCompliantAttribute(false)] \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/README.md b/src/HealthDeidentification/HealthDeidentification.Autorest/README.md deleted file mode 100644 index a9d00d566ca5..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/README.md +++ /dev/null @@ -1,78 +0,0 @@ - -# Az.HealthDeidentification -This directory contains the PowerShell module for the HealthDeidentification service. - ---- -## Info -- Modifiable: yes -- Generated: all -- Committed: yes -- Packaged: yes - ---- -## Detail -This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension. - -## Module Requirements -- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.7.5 or greater - -## Authentication -AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent. - -## Development -For information on how to develop for `Az.HealthDeidentification`, see [how-to.md](how-to.md). - - -### AutoRest Configuration -> see https://aka.ms/autorest - -```yaml -# pin the swagger version by using the commit id instead of branch name -commit: cde61328a54d392000b36882fec169fce5a983c1 -tag: package-2024-02-28-preview -require: -# readme.azure.noprofile.md is the common configuration file - - $(this-folder)/../../readme.azure.noprofile.md - - $(repo)/specification/healthdataaiservices/resource-manager/readme.md -# If the swagger has not been put in the repo, you may uncomment the following line and refer to it locally -# - (this-folder)/relative-path-to-your-local-readme.md - -try-require: - - $(repo)/specification/healthdataaiservices/resource-manager/readme.powershell.md - -# For new RP, the version is 0.1.0 -module-version: 0.1.0 -# Normally, title is the service name -title: HealthDeidentification -subject-prefix: Deid - -# The next three configurations are exclusive to v3, and in v4, they are activated by default. If you are still using v3, please uncomment them. -# identity-correction-for-post: true -# resourcegroup-append: true -# nested-object-to-string: true - -directive: - # Following are common directives which are normally required in all the RPs - # 1. Remove the unexpanded parameter set - # 2. For New-* cmdlets, ViaIdentity is not required - # Following two directives are v4 specific - - where: - variant: ^(Create|Update)(?!.*?(Expanded|JsonFilePath|JsonString)) - remove: true - - where: - variant: ^CreateViaIdentity.*$ - remove: true - # Remove cmdlet for PrivateLink resource - - where: - subject: .*PrivateLink.* - remove: true - # Follow directive is v3 specific. If you are using v3, uncomment following directive and comments out two directives above - #- where: - # variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ - # remove: true - - # Remove the set-* cmdlet - - where: - verb: Set - remove: true -``` diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json b/src/HealthDeidentification/HealthDeidentification.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json deleted file mode 100644 index 8c27557ce00d..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/UX/Microsoft.HealthDataAIServices/deidServices.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "resourceType": "deidServices", - "apiVersion": "2024-02-28-preview", - "learnMore": { - "url": "https://learn.microsoft.com/powershell/module/az.healthdeidentification" - }, - "commands": [ - { - "name": "Get-AzDeidService", - "description": "Get a DeidService", - "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthDataAIServices/deidServices/{deidServiceName}", - "help": { - "learnMore": { - "url": "https://learn.microsoft.com/powershell/module/az.healthdeidentification/get-azdeidservice" - }, - "parameterSets": [ - { - "parameters": [ - "-Name ", - "-ResourceGroupName ", - "[-SubscriptionId ]" - ] - } - ] - }, - "examples": [ - { - "description": "Get a DeidService", - "parameters": [ - { - "name": "-Name", - "value": "[Path.deidServiceName]" - }, - { - "name": "-ResourceGroupName", - "value": "[Path.resourceGroupName]" - }, - { - "name": "-SubscriptionId", - "value": "[Path.subscriptionId]" - } - ] - } - ] - }, - { - "name": "Remove-AzDeidService", - "description": "Delete a DeidService", - "path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HealthDataAIServices/deidServices/{deidServiceName}", - "help": { - "learnMore": { - "url": "https://learn.microsoft.com/powershell/module/az.healthdeidentification/remove-azdeidservice" - }, - "parameterSets": [ - { - "parameters": [ - "-Name ", - "-ResourceGroupName ", - "[-SubscriptionId ]" - ] - } - ] - }, - "examples": [ - { - "description": "Delete a DeidService", - "parameters": [ - { - "name": "-Name", - "value": "[Path.deidServiceName]" - }, - { - "name": "-ResourceGroupName", - "value": "[Path.resourceGroupName]" - }, - { - "name": "-SubscriptionId", - "value": "[Path.subscriptionId]" - } - ] - } - ] - } - ] -} diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/custom/README.md b/src/HealthDeidentification/HealthDeidentification.Autorest/custom/README.md deleted file mode 100644 index 79714ef09540..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/custom/README.md +++ /dev/null @@ -1,41 +0,0 @@ -# Custom -This directory contains custom implementation for non-generated cmdlets for the `Az.HealthDeidentification` module. Both scripts (`.ps1`) and C# files (`.cs`) can be implemented here. They will be used during the build process in `build-module.ps1`, and create cmdlets into the `../exports` folder. The only generated file into this folder is the `Az.HealthDeidentification.custom.psm1`. This file should not be modified. - -## Info -- Modifiable: yes -- Generated: partial -- Committed: yes -- Packaged: yes - -## Details -For `Az.HealthDeidentification` to use custom cmdlets, it does this two different ways. We **highly recommend** creating script cmdlets, as they are easier to write and allow access to the other exported cmdlets. C# cmdlets *cannot access exported cmdlets*. - -For C# cmdlets, they are compiled with the rest of the generated low-level cmdlets into the `./bin/Az.HealthDeidentification.private.dll`. The names of the cmdlets (methods) and files must follow the `[cmdletName]_[variantName]` syntax used for generated cmdlets. The `variantName` is used as the `ParameterSetName`, so use something appropriate that doesn't clash with already created variant or parameter set names. You cannot use the `ParameterSetName` property in the `Parameter` attribute on C# cmdlets. Each cmdlet must be separated into variants using the same pattern as seen in the `generated/cmdlets` folder. - -For script cmdlets, these are loaded via the `Az.HealthDeidentification.custom.psm1`. Then, during the build process, this module is loaded and processed in the same manner as the C# cmdlets. The fundamental difference is the script cmdlets use the `ParameterSetName` attribute and C# cmdlets do not. To create a script cmdlet variant of a generated cmdlet, simply decorate all parameters in the script with the new `ParameterSetName` in the `Parameter` attribute. This will appropriately treat each parameter set as a separate variant when processed to be exported during the build. - -## Purpose -This allows the modules to have cmdlets that were not defined in the REST specification. It also allows combining logic using generated cmdlets. This is a level of customization beyond what can be done using the [readme configuration options](https://github.com/Azure/autorest/blob/master/docs/powershell/options.md) that are currently available. These custom cmdlets are then referenced by the cmdlets created at build-time in the `../exports` folder. - -## Usage -The easiest way currently to start developing custom cmdlets is to copy an existing cmdlet. For C# cmdlets, copy one from the `generated/cmdlets` folder. For script cmdlets, build the project using `build-module.ps1` and copy one of the scripts from the `../exports` folder. After that, if you want to add new parameter sets, follow the guidelines in the `Details` section above. For implementing a new cmdlets, at minimum, please keep these parameters: -- Break -- DefaultProfile -- HttpPipelineAppend -- HttpPipelinePrepend -- Proxy -- ProxyCredential -- ProxyUseDefaultCredentials - -These provide functionality to our HTTP pipeline and other useful features. In script, you can forward these parameters using `$PSBoundParameters` to the other cmdlets you're calling within `Az.HealthDeidentification`. For C#, follow the usage seen in the `ProcessRecordAsync` method. - -### Attributes -For processing the cmdlets, we've created some additional attributes: -- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.DescriptionAttribute` - - Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts. -- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.DoNotExportAttribute` - - Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.HealthDeidentification`. -- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.InternalExportAttribute` - - Used in C# cmdlets to route exported cmdlets to the `../internal`, which are *not exposed* by `Az.HealthDeidentification`. For more information, see [README.md](../internal/README.md) in the `../internal` folder. -- `Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.ProfileAttribute` - - Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules. \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Az.HealthDeidentification.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Az.HealthDeidentification.md deleted file mode 100644 index 453003e9e1f2..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Az.HealthDeidentification.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -Module Name: Az.HealthDeidentification -Module Guid: d0c593a2-a3c6-4104-82e6-889857c5c3ef -Download Help Link: https://learn.microsoft.com/powershell/module/az.healthdeidentification -Help Version: 1.0.0.0 -Locale: en-US ---- - -# Az.HealthDeidentification Module -## Description -Microsoft Azure PowerShell: HealthDeidentification cmdlets - -## Az.HealthDeidentification Cmdlets -### [Get-AzDeidService](Get-AzDeidService.md) -Get a DeidService - -### [New-AzDeidService](New-AzDeidService.md) -create a DeidService - -### [Remove-AzDeidService](Remove-AzDeidService.md) -Delete a DeidService - -### [Update-AzDeidService](Update-AzDeidService.md) -update a DeidService - diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Get-AzDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Get-AzDeidService.md deleted file mode 100644 index 2e51a499fee9..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Get-AzDeidService.md +++ /dev/null @@ -1,183 +0,0 @@ ---- -external help file: -Module Name: Az.HealthDeidentification -online version: https://learn.microsoft.com/powershell/module/az.healthdeidentification/get-azdeidservice -schema: 2.0.0 ---- - -# Get-AzDeidService - -## SYNOPSIS -Get a DeidService - -## SYNTAX - -### List (Default) -``` -Get-AzDeidService [-SubscriptionId ] [-DefaultProfile ] [] -``` - -### Get -``` -Get-AzDeidService -Name -ResourceGroupName [-SubscriptionId ] - [-DefaultProfile ] [] -``` - -### GetViaIdentity -``` -Get-AzDeidService -InputObject [-DefaultProfile ] - [] -``` - -### List1 -``` -Get-AzDeidService -ResourceGroupName [-SubscriptionId ] [-DefaultProfile ] - [] -``` - -## DESCRIPTION -Get a DeidService - -## EXAMPLES - -### Example 1: Get a De-identification Service resource by name -```powershell -Get-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg -``` - -```output -Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService1 -IdentityPrincipalId : -IdentityTenantId : -IdentityType : None -IdentityUserAssignedIdentity : { - } -Location : eastus2 -Name : azpwshDeidService1 -PrivateEndpointConnection : -ProvisioningState : Succeeded -PublicNetworkAccess : Enabled -ResourceGroupName : azpwsh-test-rg -ServiceUrl : https://vebsefg7b9cackat.api.eus2001.deid.azure.com -SystemDataCreatedAt : 10/21/2024 12:00:35 AM -SystemDataCreatedBy : contoso@microsoft.com -SystemDataCreatedByType : User -SystemDataLastModifiedAt : 10/21/2024 12:00:35 AM -SystemDataLastModifiedBy : contoso@microsoft.com -SystemDataLastModifiedByType : User -Tag : { - } -Type : microsoft.healthdataaiservices/deidservices -``` - -Gets a De-identification Service by its name and the resource group it belongs to. - -### Example 2: List all De-identification Service resources in a resource group -```powershell -Get-AzDeidService -ResourceGroupName azpwsh-test-rg -``` - -```output -Location Name SystemDataCreatedAt SystemDataCreatedBy SystemDataCreatedByType SystemDataLastModifiedAt SystemDataLastModifiedBy SystemDataLastModifiedByType ResourceGroupName --------- ---- ------------------- ------------------- ----------------------- ------------------------ ------------------------ ---------------------------- ----------------- -eastus2 azpwshDeidService1 10/21/2024 12:00:35 AM contoso@microsoft.com User 10/21/2024 12:00:35 AM contoso@microsoft.com User azpwsh-test-rg -eastus2 azpwshDeidService2 10/21/2024 12:01:06 AM contoso@microsoft.com User 10/21/2024 12:01:06 AM contoso@microsoft.com User azpwsh-test-rg -``` - -Lists all De-identification Service resources in the specified resource group. - -## PARAMETERS - -### -DefaultProfile -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 -Parameter Sets: (All) -Aliases: AzureRMContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -InputObject -Identity Parameter - -```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity -Parameter Sets: GetViaIdentity -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -Name -The name of the deid service - -```yaml -Type: System.String -Parameter Sets: Get -Aliases: DeidServiceName - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceGroupName -The name of the resource group. -The name is case insensitive. - -```yaml -Type: System.String -Parameter Sets: Get, List1 -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -SubscriptionId -The ID of the target subscription. -The value must be an UUID. - -```yaml -Type: System.String[] -Parameter Sets: Get, List, List1 -Aliases: - -Required: False -Position: Named -Default value: (Get-AzContext).Subscription.Id -Accept pipeline input: False -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). - -## INPUTS - -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity - -## OUTPUTS - -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IDeidService - -## NOTES - -## RELATED LINKS - diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/New-AzDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/New-AzDeidService.md deleted file mode 100644 index bb2fe0f443be..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/New-AzDeidService.md +++ /dev/null @@ -1,345 +0,0 @@ ---- -external help file: -Module Name: Az.HealthDeidentification -online version: https://learn.microsoft.com/powershell/module/az.healthdeidentification/new-azdeidservice -schema: 2.0.0 ---- - -# New-AzDeidService - -## SYNOPSIS -create a DeidService - -## SYNTAX - -### CreateExpanded (Default) -``` -New-AzDeidService -Name -ResourceGroupName -Location [-SubscriptionId ] - [-EnableSystemAssignedIdentity] [-PublicNetworkAccess ] [-Tag ] - [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] - [] -``` - -### CreateViaJsonFilePath -``` -New-AzDeidService -Name -ResourceGroupName -JsonFilePath [-SubscriptionId ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] -``` - -### CreateViaJsonString -``` -New-AzDeidService -Name -ResourceGroupName -JsonString [-SubscriptionId ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] -``` - -## DESCRIPTION -create a DeidService - -## EXAMPLES - -### Example 1: Create a new De-identification Service resource -```powershell -New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -Location eastus2 -EnableSystemAssignedIdentity -PublicNetworkAccess "Disabled" -``` - -```output -Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService -IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa -IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 -IdentityType : SystemAssigned -IdentityUserAssignedIdentity : { - } -Location : eastus2 -Name : myHealthDeidService -PrivateEndpointConnection : -ProvisioningState : Succeeded -PublicNetworkAccess : Disabled -ResourceGroupName : azpwsh-test-rg -ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com -SystemDataCreatedAt : 10/21/2024 5:26:15 AM -SystemDataCreatedBy : contoso@microsoft.com -SystemDataCreatedByType : User -SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM -SystemDataLastModifiedBy : contoso@microsoft.com -SystemDataLastModifiedByType : User -Tag : { - } -Type : microsoft.healthdataaiservices/deidservices -``` - -Creates a new De-identification Service resource in the specified resource group and location. - -### Example 2: Create a new De-identification Service resource from a JSON file -```powershell -New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -JsonFilePath path/to/json.json -``` - -```output -Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService -IdentityUserAssignedIdentity : { - } -Location : eastus2 -Name : myHealthDeidService -PrivateEndpointConnection : -ProvisioningState : Succeeded -PublicNetworkAccess : Disabled -ResourceGroupName : azpwsh-test-rg -ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com -SystemDataCreatedAt : 10/21/2024 5:26:15 AM -SystemDataCreatedBy : contoso@microsoft.com -SystemDataCreatedByType : User -SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM -SystemDataLastModifiedBy : contoso@microsoft.com -SystemDataLastModifiedByType : User -Tag : { - } -Type : microsoft.healthdataaiservices/deidservices -``` - -Creates a new De-identification Service resource with location and properties specified in the JSON file. - -## PARAMETERS - -### -AsJob -Run the command as a job - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -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. - -```yaml -Type: System.Management.Automation.PSObject -Parameter Sets: (All) -Aliases: AzureRMContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -EnableSystemAssignedIdentity -Decides if enable a system assigned identity for the resource. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -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 -``` - -### -Location -The geo-location where the resource lives - -```yaml -Type: System.String -Parameter Sets: CreateExpanded -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Name -The name of the deid service - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: DeidServiceName - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -NoWait -Run the command asynchronously - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PublicNetworkAccess -Gets or sets allow or disallow public network access to resource - -```yaml -Type: System.String -Parameter Sets: CreateExpanded -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceGroupName -The name of the resource group. -The name is case insensitive. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -SubscriptionId -The ID of the target subscription. -The value must be an UUID. - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: (Get-AzContext).Subscription.Id -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Tag -Resource tags. - -```yaml -Type: System.Collections.Hashtable -Parameter Sets: CreateExpanded -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 -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -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). - -## INPUTS - -## OUTPUTS - -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IDeidService - -## NOTES - -## RELATED LINKS - diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/README.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/README.md deleted file mode 100644 index 9f2e3fc309fc..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# Docs -This directory contains the documentation of the cmdlets for the `Az.HealthDeidentification` module. To run documentation generation, use the `generate-help.ps1` script at the root module folder. Files in this folder will *always be overridden on regeneration*. To update documentation examples, please use the `../examples` folder. - -## Info -- Modifiable: no -- Generated: all -- Committed: yes -- Packaged: yes - -## Details -The process of documentation generation loads `Az.HealthDeidentification` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `../exports` folder. Additionally, when writing custom cmdlets in the `../custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `../examples` folder. \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Remove-AzDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Remove-AzDeidService.md deleted file mode 100644 index ae2dabf490a8..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Remove-AzDeidService.md +++ /dev/null @@ -1,209 +0,0 @@ ---- -external help file: -Module Name: Az.HealthDeidentification -online version: https://learn.microsoft.com/powershell/module/az.healthdeidentification/remove-azdeidservice -schema: 2.0.0 ---- - -# Remove-AzDeidService - -## SYNOPSIS -Delete a DeidService - -## SYNTAX - -### Delete (Default) -``` -Remove-AzDeidService -Name -ResourceGroupName [-SubscriptionId ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] -``` - -### DeleteViaIdentity -``` -Remove-AzDeidService -InputObject [-DefaultProfile ] [-AsJob] - [-NoWait] [-PassThru] [-Confirm] [-WhatIf] [] -``` - -## DESCRIPTION -Delete a DeidService - -## EXAMPLES - -### Example: Remove a De-identification Service resource by name -```powershell -Remove-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg -``` - -Deletes the specifies De-identification Service resource. - -## PARAMETERS - -### -AsJob -Run the command as a job - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -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. - -```yaml -Type: System.Management.Automation.PSObject -Parameter Sets: (All) -Aliases: AzureRMContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -InputObject -Identity Parameter - -```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity -Parameter Sets: DeleteViaIdentity -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -Name -The name of the deid service - -```yaml -Type: System.String -Parameter Sets: Delete -Aliases: DeidServiceName - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -NoWait -Run the command asynchronously - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PassThru -Returns true when the command succeeds - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceGroupName -The name of the resource group. -The name is case insensitive. - -```yaml -Type: System.String -Parameter Sets: Delete -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -SubscriptionId -The ID of the target subscription. -The value must be an UUID. - -```yaml -Type: System.String -Parameter Sets: Delete -Aliases: - -Required: False -Position: Named -Default value: (Get-AzContext).Subscription.Id -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -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). - -## INPUTS - -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity - -## OUTPUTS - -### System.Boolean - -## NOTES - -## RELATED LINKS - diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Update-AzDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Update-AzDeidService.md deleted file mode 100644 index d7f049977a70..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/docs/Update-AzDeidService.md +++ /dev/null @@ -1,316 +0,0 @@ ---- -external help file: -Module Name: Az.HealthDeidentification -online version: https://learn.microsoft.com/powershell/module/az.healthdeidentification/update-azdeidservice -schema: 2.0.0 ---- - -# Update-AzDeidService - -## SYNOPSIS -update a DeidService - -## SYNTAX - -### UpdateExpanded (Default) -``` -Update-AzDeidService -Name -ResourceGroupName [-SubscriptionId ] - [-EnableSystemAssignedIdentity ] [-PublicNetworkAccess ] [-Tag ] - [-UserAssignedIdentity ] [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] - [] -``` - -### UpdateViaIdentityExpanded -``` -Update-AzDeidService -InputObject [-EnableSystemAssignedIdentity ] - [-PublicNetworkAccess ] [-Tag ] [-UserAssignedIdentity ] - [-DefaultProfile ] [-AsJob] [-NoWait] [-Confirm] [-WhatIf] [] -``` - -## DESCRIPTION -update a DeidService - -## EXAMPLES - -### Example 1: Update a De-identification service to create a System Assigned Managed Identity -```powershell -Update-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $true -``` - -```output -Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService -IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa -IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 -IdentityType : SystemAssigned -IdentityUserAssignedIdentity : { - } -Location : eastus2 -Name : myHealthDeidService -PrivateEndpointConnection : -ProvisioningState : Succeeded -PublicNetworkAccess : Disabled -ResourceGroupName : azpwsh-test-rg -ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com -SystemDataCreatedAt : 10/21/2024 5:26:15 AM -SystemDataCreatedBy : contoso@microsoft.com -SystemDataCreatedByType : User -SystemDataLastModifiedAt : 10/21/2024 6:56:12 PM -SystemDataLastModifiedBy : contoso@microsoft.com -SystemDataLastModifiedByType : User -Tag : { - } -Type : microsoft.healthdataaiservices/deidservices -``` - -Updates an existing De-identification service to create a System Assigned Managed Identity. - -### Example 2: Update the public network access and tags of a De-identification service -```powershell -Update-AzDeidService -Name azpwshDeidService2 -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $false -PublicNetworkAccess "Enabled" -Tag @{ AzPwshTestKey = "AzPwshTestValue" } -``` - -```output -Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService2 -IdentityPrincipalId : -IdentityTenantId : -IdentityType : None -IdentityUserAssignedIdentity : { - } -Location : eastus2 -Name : azpwshDeidService2 -PrivateEndpointConnection : -ProvisioningState : Succeeded -PublicNetworkAccess : Enabled -ResourceGroupName : azpwsh-test-rg -ServiceUrl : https://f4cag7feawaubgbv.api.eus2001.deid.azure.com -SystemDataCreatedAt : 10/21/2024 12:01:06 AM -SystemDataCreatedBy : contoso@microsoft.com -SystemDataCreatedByType : User -SystemDataLastModifiedAt : 10/21/2024 5:43:35 AM -SystemDataLastModifiedBy : contoso@microsoft.com -SystemDataLastModifiedByType : User -Tag : { - "AzPwshTestKey": "AzPwshTestValue" - } -Type : microsoft.healthdataaiservices/deidservices -``` - -Update a De-identification Service by enabling public network access, removing the System Assigned Managed Identity and adding tags. - -## PARAMETERS - -### -AsJob -Run the command as a job - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -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. - -```yaml -Type: System.Management.Automation.PSObject -Parameter Sets: (All) -Aliases: AzureRMContext, AzureCredential - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -EnableSystemAssignedIdentity -Decides if enable a system assigned identity for the resource. - -```yaml -Type: System.Nullable`1[[System.Boolean, System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -InputObject -Identity Parameter - -```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity -Parameter Sets: UpdateViaIdentityExpanded -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - -### -Name -The name of the deid service - -```yaml -Type: System.String -Parameter Sets: UpdateExpanded -Aliases: DeidServiceName - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -NoWait -Run the command asynchronously - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -PublicNetworkAccess -Gets or sets allow or disallow public network access to resource - -```yaml -Type: System.String -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -ResourceGroupName -The name of the resource group. -The name is case insensitive. - -```yaml -Type: System.String -Parameter Sets: UpdateExpanded -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -SubscriptionId -The ID of the target subscription. -The value must be an UUID. - -```yaml -Type: System.String -Parameter Sets: UpdateExpanded -Aliases: - -Required: False -Position: Named -Default value: (Get-AzContext).Subscription.Id -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Tag -Resource tags. - -```yaml -Type: System.Collections.Hashtable -Parameter Sets: (All) -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: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -Confirm -Prompts you for confirmation before running the cmdlet. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: cf - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - -### -WhatIf -Shows what would happen if the cmdlet runs. -The cmdlet is not run. - -```yaml -Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) -Aliases: wi - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -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). - -## INPUTS - -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IHealthDeidentificationIdentity - -## OUTPUTS - -### Microsoft.Azure.PowerShell.Cmdlets.HealthDeidentification.Models.IDeidService - -## NOTES - -## RELATED LINKS - diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Get-AzDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Get-AzDeidService.md deleted file mode 100644 index 045fbb69a013..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Get-AzDeidService.md +++ /dev/null @@ -1,45 +0,0 @@ -### Example 1: Get a De-identification Service resource by name -```powershell -Get-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg -``` - -```output -Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService1 -IdentityPrincipalId : -IdentityTenantId : -IdentityType : None -IdentityUserAssignedIdentity : { - } -Location : eastus2 -Name : azpwshDeidService1 -PrivateEndpointConnection : -ProvisioningState : Succeeded -PublicNetworkAccess : Enabled -ResourceGroupName : azpwsh-test-rg -ServiceUrl : https://vebsefg7b9cackat.api.eus2001.deid.azure.com -SystemDataCreatedAt : 10/21/2024 12:00:35 AM -SystemDataCreatedBy : contoso@microsoft.com -SystemDataCreatedByType : User -SystemDataLastModifiedAt : 10/21/2024 12:00:35 AM -SystemDataLastModifiedBy : contoso@microsoft.com -SystemDataLastModifiedByType : User -Tag : { - } -Type : microsoft.healthdataaiservices/deidservices -``` - -Gets a De-identification Service by its name and the resource group it belongs to. - -### Example 2: List all De-identification Service resources in a resource group -```powershell -Get-AzDeidService -ResourceGroupName azpwsh-test-rg -``` - -```output -Location Name SystemDataCreatedAt SystemDataCreatedBy SystemDataCreatedByType SystemDataLastModifiedAt SystemDataLastModifiedBy SystemDataLastModifiedByType ResourceGroupName --------- ---- ------------------- ------------------- ----------------------- ------------------------ ------------------------ ---------------------------- ----------------- -eastus2 azpwshDeidService1 10/21/2024 12:00:35 AM contoso@microsoft.com User 10/21/2024 12:00:35 AM contoso@microsoft.com User azpwsh-test-rg -eastus2 azpwshDeidService2 10/21/2024 12:01:06 AM contoso@microsoft.com User 10/21/2024 12:01:06 AM contoso@microsoft.com User azpwsh-test-rg -``` - -Lists all De-identification Service resources in the specified resource group. \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/examples/New-AzDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/New-AzDeidService.md deleted file mode 100644 index 47546fbcb7e9..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/examples/New-AzDeidService.md +++ /dev/null @@ -1,61 +0,0 @@ - -### Example 1: Create a new De-identification Service resource -```powershell -New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -Location eastus2 -EnableSystemAssignedIdentity -PublicNetworkAccess "Disabled" -``` - -```output -Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService -IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa -IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 -IdentityType : SystemAssigned -IdentityUserAssignedIdentity : { - } -Location : eastus2 -Name : myHealthDeidService -PrivateEndpointConnection : -ProvisioningState : Succeeded -PublicNetworkAccess : Disabled -ResourceGroupName : azpwsh-test-rg -ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com -SystemDataCreatedAt : 10/21/2024 5:26:15 AM -SystemDataCreatedBy : contoso@microsoft.com -SystemDataCreatedByType : User -SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM -SystemDataLastModifiedBy : contoso@microsoft.com -SystemDataLastModifiedByType : User -Tag : { - } -Type : microsoft.healthdataaiservices/deidservices -``` - -Creates a new De-identification Service resource in the specified resource group and location. - -### Example 2: Create a new De-identification Service resource from a JSON file -```powershell -New-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -JsonFilePath path/to/json.json -``` - -```output -Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService -IdentityUserAssignedIdentity : { - } -Location : eastus2 -Name : myHealthDeidService -PrivateEndpointConnection : -ProvisioningState : Succeeded -PublicNetworkAccess : Disabled -ResourceGroupName : azpwsh-test-rg -ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com -SystemDataCreatedAt : 10/21/2024 5:26:15 AM -SystemDataCreatedBy : contoso@microsoft.com -SystemDataCreatedByType : User -SystemDataLastModifiedAt : 10/21/2024 5:26:15 AM -SystemDataLastModifiedBy : contoso@microsoft.com -SystemDataLastModifiedByType : User -Tag : { - } -Type : microsoft.healthdataaiservices/deidservices -``` - -Creates a new De-identification Service resource with location and properties specified in the JSON file. diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Remove-AzDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Remove-AzDeidService.md deleted file mode 100644 index ee289ebc53e1..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Remove-AzDeidService.md +++ /dev/null @@ -1,7 +0,0 @@ - -### Example: Remove a De-identification Service resource by name -```powershell -Remove-AzDeidService -Name azpwshDeidService1 -ResourceGroupName azpwsh-test-rg -``` - -Deletes the specifies De-identification Service resource. diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Update-AzDeidService.md b/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Update-AzDeidService.md deleted file mode 100644 index 1c0a3de6efde..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/examples/Update-AzDeidService.md +++ /dev/null @@ -1,64 +0,0 @@ -### Example 1: Update a De-identification service to create a System Assigned Managed Identity -```powershell -Update-AzDeidService -Name myHealthDeidService -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $true -``` - -```output -Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService -IdentityPrincipalId : efab95dd-6969-4c43-bd96-4126dc372bfa -IdentityTenantId : 72f988bf-86f1-41af-91ab-2d7cd011db47 -IdentityType : SystemAssigned -IdentityUserAssignedIdentity : { - } -Location : eastus2 -Name : myHealthDeidService -PrivateEndpointConnection : -ProvisioningState : Succeeded -PublicNetworkAccess : Disabled -ResourceGroupName : azpwsh-test-rg -ServiceUrl : https://h8bxaqamerbxd9a7.api.eus2001.deid.azure.com -SystemDataCreatedAt : 10/21/2024 5:26:15 AM -SystemDataCreatedBy : contoso@microsoft.com -SystemDataCreatedByType : User -SystemDataLastModifiedAt : 10/21/2024 6:56:12 PM -SystemDataLastModifiedBy : contoso@microsoft.com -SystemDataLastModifiedByType : User -Tag : { - } -Type : microsoft.healthdataaiservices/deidservices -``` - -Updates an existing De-identification service to create a System Assigned Managed Identity. - -### Example 2: Update the public network access and tags of a De-identification service -```powershell -Update-AzDeidService -Name azpwshDeidService2 -ResourceGroupName azpwsh-test-rg -EnableSystemAssignedIdentity $false -PublicNetworkAccess "Enabled" -Tag @{ AzPwshTestKey = "AzPwshTestValue" } -``` - -```output -Id : /subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService2 -IdentityPrincipalId : -IdentityTenantId : -IdentityType : None -IdentityUserAssignedIdentity : { - } -Location : eastus2 -Name : azpwshDeidService2 -PrivateEndpointConnection : -ProvisioningState : Succeeded -PublicNetworkAccess : Enabled -ResourceGroupName : azpwsh-test-rg -ServiceUrl : https://f4cag7feawaubgbv.api.eus2001.deid.azure.com -SystemDataCreatedAt : 10/21/2024 12:01:06 AM -SystemDataCreatedBy : contoso@microsoft.com -SystemDataCreatedByType : User -SystemDataLastModifiedAt : 10/21/2024 5:43:35 AM -SystemDataLastModifiedBy : contoso@microsoft.com -SystemDataLastModifiedByType : User -Tag : { - "AzPwshTestKey": "AzPwshTestValue" - } -Type : microsoft.healthdataaiservices/deidservices -``` - -Update a De-identification Service by enabling public network access, removing the System Assigned Managed Identity and adding tags. \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/how-to.md b/src/HealthDeidentification/HealthDeidentification.Autorest/how-to.md deleted file mode 100644 index 76fd36a7b1cb..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/how-to.md +++ /dev/null @@ -1,58 +0,0 @@ -# How-To -This document describes how to develop for `Az.HealthDeidentification`. - -## Building `Az.HealthDeidentification` -To build, run the `build-module.ps1` at the root of the module directory. This will generate the proxy script cmdlets that are the cmdlets being exported by this module. After the build completes, the proxy script cmdlets will be output to the `exports` folder. To read more about the proxy script cmdlets, look at the [README.md](exports/README.md) in the `exports` folder. - -## Creating custom cmdlets -To add cmdlets that were not generated by the REST specification, use the `custom` folder. This folder allows you to add handwritten `.ps1` and `.cs` files. Currently, we support using `.ps1` scripts as new cmdlets or as additional low-level variants (via `ParameterSet`), and `.cs` files as low-level (variants) cmdlets that the exported script cmdlets call. We do not support exporting any `.cs` (dll) cmdlets directly. To read more about custom cmdlets, look at the [README.md](custom/README.md) in the `custom` folder. - -## Generating documentation -To generate documentation, the process is now integrated into the `build-module.ps1` script. If you don't want to run this process as part of `build-module.ps1`, you can provide the `-NoDocs` switch. If you want to run documentation generation after the build process, you may still run the `generate-help.ps1` script. Overall, the process will look at the documentation comments in the generated and custom cmdlets and types, and create `.md` files into the `docs` folder. Additionally, this pulls in any examples from the `examples` folder and adds them to the generated help markdown documents. To read more about examples, look at the [README.md](examples/README.md) in the `examples` folder. To read more about documentation, look at the [README.md](docs/README.md) in the `docs` folder. - -## Testing `Az.HealthDeidentification` -To test the cmdlets, we use [Pester](https://github.com/pester/Pester). Tests scripts (`.ps1`) should be added to the `test` folder. To execute the Pester tests, run the `test-module.ps1` script. This will run all tests in `playback` mode within the `test` folder. To read more about testing cmdlets, look at the [README.md](examples/README.md) in the `examples` folder. - -## Packing `Az.HealthDeidentification` -To pack `Az.HealthDeidentification` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://learn.microsoft.com/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team. - -## Module Script Details -There are multiple scripts created for performing different actions for developing `Az.HealthDeidentification`. -- `build-module.ps1` - - Builds the module DLL (`./bin/Az.HealthDeidentification.private.dll`), creates the exported cmdlets and documentation, generates custom cmdlet test stubs and exported cmdlet example stubs, and updates `./Az.HealthDeidentification.psd1` with Azure profile information. - - **Parameters**: [`Switch` parameters] - - `-Run`: After building, creates an isolated PowerShell session and loads `Az.HealthDeidentification`. - - `-Test`: After building, runs the `Pester` tests defined in the `test` folder. - - `-Docs`: After building, generates the Markdown documents for the modules into the `docs` folder. - - `-Pack`: After building, packages the module into a `.nupkg`. - - `-Code`: After building, opens a VSCode window with the module's directory and runs (see `-Run`) the module. - - `-Release`: Builds the module in `Release` configuration (as opposed to `Debug` configuration). - - `-NoDocs`: Supresses writing the documentation markdown files as part of the cmdlet exporting process. - - `-Debugger`: Used when attaching the debugger in Visual Studio to the PowerShell session, and running the build process without recompiling the DLL. This suppresses running the script as an isolated process. -- `run-module.ps1` - - Creates an isolated PowerShell session and loads `Az.HealthDeidentification` into the session. - - Same as `-Run` in `build-module.ps1`. - - **Parameters**: [`Switch` parameters] - - `-Code`: Opens a VSCode window with the module's directory. - - Same as `-Code` in `build-module.ps1`. -- `generate-help.ps1` - - Generates the Markdown documents for the modules into the `docs` folder. - - Same as `-Docs` in `build-module.ps1`. -- `test-module.ps1` - - Runs the `Pester` tests defined in the `test` folder. - - Same as `-Test` in `build-module.ps1`. -- `pack-module.ps1` - - Packages the module into a `.nupkg` for distribution. - - Same as `-Pack` in `build-module.ps1`. -- `generate-help.ps1` - - Generates the Markdown documents for the modules into the `docs` folder. - - Same as `-Docs` in `build-module.ps1`. - - This process is now integrated into `build-module.ps1` automatically. To disable, use `-NoDocs` when running `build-module.ps1`. -- `export-surface.ps1` - - Generates Markdown documents for both the cmdlet surface and the model (class) surface of the module. - - These files are placed into the `resources` folder. - - Used for investigating the surface of your module. These are *not* documentation for distribution. -- `check-dependencies.ps1` - - Used in `run-module.ps1` and `test-module.ps1` to verify dependent modules are available to run those tasks. - - It will download local (within the module's directory structure) versions of those modules as needed. - - This script *does not* need to be ran by-hand. \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/resources/README.md b/src/HealthDeidentification/HealthDeidentification.Autorest/resources/README.md deleted file mode 100644 index 736492341e3d..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/resources/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# 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/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Recording.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Recording.json deleted file mode 100644 index 06f3ca3e866b..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Recording.json +++ /dev/null @@ -1,225 +0,0 @@ -{ - "Get-AzDeidService+[NoContext]+List+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "22" ], - "x-ms-client-request-id": [ "ad707682-7e56-4bda-9ce8-16043efd3c28" ], - "CommandName": [ "Get-AzDeidService" ], - "FullCommandName": [ "Get-AzDeidService_List" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-original-request-ids": [ "ea8cfe7f-6b1f-4a87-a520-83349da95a3f", "a44c858a-8c1f-484e-9f39-c1caa87f09aa", "cc54a2e1-af02-40cd-93c3-4748a3e54e12", "c6aa3106-38cc-469d-8ed0-e9b0fffb925a", "6c16832f-df04-47ab-9f10-e94a2ca2b391", "b4cd8a25-4916-475b-b828-28fd29e4b247", "acde634c-e03f-41a8-8f60-23c2ba3f0e04", "2e883941-e712-44f4-8a18-327103bbe2d3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "81831838-30ac-4456-9ae9-adc5150b581e" ], - "x-ms-correlation-request-id": [ "81831838-30ac-4456-9ae9-adc5150b581e" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051244Z:81831838-30ac-4456-9ae9-adc5150b581e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C1BEBEF373D240BA87B1CDC5C32F8CBA Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:43Z" ], - "Date": [ "Fri, 25 Oct 2024 05:12:44 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "442148" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8b3445a3-66e1-4f46-b\",\"name\":\"Test8b3445a3-66e1-4f46-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T15:44:03.6480108Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T15:44:03.6480108Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h7b4hxehbchtf2at.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5cf9363c-c402-4651-9\",\"name\":\"Test5cf9363c-c402-4651-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T15:54:03.5592076Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T15:54:03.5592076Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8cfd3dpe0hgdhev.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test67777892-f34f-42a1-a\",\"name\":\"Test67777892-f34f-42a1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T16:54:03.7993255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T16:54:03.7993255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b2a5frcdaph0endu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6c3a47dc-3080-403f-a\",\"name\":\"Test6c3a47dc-3080-403f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T17:04:04.4150641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T17:04:04.4150641Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b0dhe5cgctagemez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa5ecd3c1-ec0f-4876-9\",\"name\":\"Testa5ecd3c1-ec0f-4876-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T18:35:19.7507449Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:49:57.6127233Z\"},\"identity\":{\"principalId\":\"f346e0d5-5aa4-4f16-aa68-42934e5de67c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fwdwg7ecd8b3hqbb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test33b3e1ec-6107-4e50-8\",\"name\":\"Test33b3e1ec-6107-4e50-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T21:24:04.8223969Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T21:24:04.8223969Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hjh3d0g8g4fka9h7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a5392dd-790e-4ce2-b\",\"name\":\"Test7a5392dd-790e-4ce2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T21:34:04.5725778Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T21:34:04.5725778Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3gffebcfwegbrhu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf463ecca-53a7-4f6a-a\",\"name\":\"Testf463ecca-53a7-4f6a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T22:34:04.5563856Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-24T22:34:04.5563856Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bvhzb3g3g6guc4es.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test465ab8ce-688b-4413-9\",\"name\":\"Test465ab8ce-688b-4413-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-24T23:05:19.2592465Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:49:59.5223636Z\"},\"identity\":{\"principalId\":\"0bc19699-0f82-474b-b0fb-3324c24d77be\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://drh2agfyefczfthm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e7fba18-0942-4233-a\",\"name\":\"Test5e7fba18-0942-4233-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T06:24:06.2187878Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T06:24:06.2187878Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0fvchf7b5echzd6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9650ee05-5865-4343-b\",\"name\":\"Test9650ee05-5865-4343-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T07:24:05.6036751Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T07:24:05.6036751Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f5f6g6gadxcyfac5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test56f0398b-ce2e-4ba6-a\",\"name\":\"Test56f0398b-ce2e-4ba6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-25T20:44:07.732736Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-25T20:44:07.732736Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bjbmaff9bngfbjg2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdd9de45f-94f7-4721-b\",\"name\":\"Testdd9de45f-94f7-4721-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T00:55:23.5509592Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:28.5078351Z\"},\"identity\":{\"principalId\":\"f3cedb7e-8fd9-4917-a0ad-508c36399bff\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g5c4ghgjajcsffdy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbae1b7b5-fbbe-4243-a\",\"name\":\"Testbae1b7b5-fbbe-4243-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T09:55:24.5542831Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:30.2158476Z\"},\"identity\":{\"principalId\":\"fa466f94-3dbe-488f-9908-1ae510fa0718\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://btdgfgffeqf8hfam.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadd5435b-cc26-43fb-b\",\"name\":\"Testadd5435b-cc26-43fb-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T11:05:25.7167001Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:30.8115536Z\"},\"identity\":{\"principalId\":\"a3c8a647-185b-4fc2-8e87-770db3561e77\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5fac3e7gvbrbre5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8314a48b-97b3-4e9a-8\",\"name\":\"Test8314a48b-97b3-4e9a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-26T12:05:26.1936541Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:31.3584383Z\"},\"identity\":{\"principalId\":\"588de316-33ff-4914-a47a-9152e514e4d2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dfhucwhnhwh9ggbj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1a4ed21-cd5e-4948-a\",\"name\":\"Teste1a4ed21-cd5e-4948-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T06:55:34.9426332Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:33.6608297Z\"},\"identity\":{\"principalId\":\"00c399d8-7a5a-4508-a85e-da88a67acabf\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c8dyegbgbvcrhzht.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testeb4614b8-1a4e-4d05-9\",\"name\":\"Testeb4614b8-1a4e-4d05-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T07:05:34.7114373Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:34.2817688Z\"},\"identity\":{\"principalId\":\"4be5647d-80af-4044-b75e-04fa2da36c13\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aub2c8gec4aphphs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test593259f4-40e6-458a-8\",\"name\":\"Test593259f4-40e6-458a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T07:34:19.7404327Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T07:34:19.7404327Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bte2c9c8bzgsbfcs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test32674fcc-1bbc-42b9-a\",\"name\":\"Test32674fcc-1bbc-42b9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T08:44:20.0737467Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T08:44:20.0737467Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7d4c5fpdbcqfee0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa56e8022-df18-4406-a\",\"name\":\"Testa56e8022-df18-4406-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T09:25:35.0244097Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:34.6914264Z\"},\"identity\":{\"principalId\":\"d40d6dd4-3ee7-47cc-a1df-5e843dff46c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huh5e2bja7b4hvdt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb9987768-d6b1-45d2-a\",\"name\":\"Testb9987768-d6b1-45d2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T10:14:20.2693472Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T10:14:20.2693472Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d2ceg2drf4ambea0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf209e3a0-c445-4f53-b\",\"name\":\"Testf209e3a0-c445-4f53-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T10:54:20.2592306Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-28T10:54:20.2592306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://exgyc5hrdeg8b0ca.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste83299b4-3af3-46d4-b\",\"name\":\"Teste83299b4-3af3-46d4-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T11:25:36.4872367Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:39.8407735Z\"},\"identity\":{\"principalId\":\"a88238d9-d06f-4a91-9629-75db4e9aede9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0cwerffhpatb7aa.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test548883fc-610e-42a0-b\",\"name\":\"Test548883fc-610e-42a0-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-28T14:45:35.6917131Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:40.4624112Z\"},\"identity\":{\"principalId\":\"a227c313-5fbf-4510-8ea5-28be7d26425c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkh5e5a0cbg5cah9.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoneastus\",\"name\":\"jovinsoneastus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T16:21:32.2088677Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T00:03:41.9236289Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a9dua3ezhee5bahz.api.eus001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.Network/privateEndpoints/jovinsoneastys-pl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoneastus/privateEndpointConnections/jovinsoneastys-pl.0715aad2-a357-49ab-9909-c383bb40227d\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testeuspl\",\"name\":\"testeuspl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T17:05:34.7131699Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-28T17:05:34.7131699Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f2hbb3cucbddf8aq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testeuspl/privateEndpointConnections/petest.3e208034-9539-4be2-ad91-3bd069acae2d\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/petest\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg_dev_leakassab/providers/microsoft.healthdataaiservices/deidservices/deid-leakassab\",\"name\":\"deid-leakassab\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"leakassab@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-28T23:48:44.2725718Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:41.0083465Z\"},\"identity\":{\"principalId\":\"71b89795-6f5b-4903-b422-bab5e5f00d92\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfdsagcygshmehgu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test346052ed-6f6d-4b33-9\",\"name\":\"Test346052ed-6f6d-4b33-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T02:15:37.3172628Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:41.6262298Z\"},\"identity\":{\"principalId\":\"79aa25ec-b034-4b94-b017-6f05cbeee79f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gzf9d0araqh8ethr.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test38a886c3-2c32-415a-8\",\"name\":\"Test38a886c3-2c32-415a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T02:44:22.3535798Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T02:44:22.3535798Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bxcmdwakd7e7amb3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa03107f2-b261-4205-a\",\"name\":\"Testa03107f2-b261-4205-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T03:15:37.2240475Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:42.120944Z\"},\"identity\":{\"principalId\":\"a7352424-7276-492e-a536-ba8da71f93c7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://czaeekhjbegkbpc4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test77c49e23-6752-4c01-8\",\"name\":\"Test77c49e23-6752-4c01-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T06:45:39.1518773Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:42.6853523Z\"},\"identity\":{\"principalId\":\"856eb24c-d56f-425e-8f30-325db7e44891\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fuh0dwceauavetcm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb1361529-e78c-493f-a\",\"name\":\"Testb1361529-e78c-493f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T07:14:21.9690027Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T07:14:21.9690027Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ceeud9e5e6cnhhg6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0d42fb2-8f09-4b56-8\",\"name\":\"Testb0d42fb2-8f09-4b56-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T09:34:22.9446904Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T09:34:22.9446904Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gthcf0ccf8abaug3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test50226ab8-4a1b-41a4-a\",\"name\":\"Test50226ab8-4a1b-41a4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T09:55:39.5586516Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:43.1935443Z\"},\"identity\":{\"principalId\":\"e523578b-c28b-479b-8982-dd6eab50a128\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cphhf7bcg0hgfyg5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testda699e13-07bf-4a2f-8\",\"name\":\"Testda699e13-07bf-4a2f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T11:05:39.0788447Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:43.7351515Z\"},\"identity\":{\"principalId\":\"6e9d8013-482e-4992-b7d1-5d3bc0620c0e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfb2dbh3ghgjf9du.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd5d747c3-4c6d-4b15-b\",\"name\":\"Testd5d747c3-4c6d-4b15-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-29T14:04:23.8875945Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-29T14:04:23.8875945Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buateag2cjhfd2bw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.HealthDataAIServices/DeidServices/testing\",\"name\":\"testing\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"msoennichsen@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-29T22:10:02.2149644Z\",\"lastModifiedBy\":\"msoennichsen@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-29T22:10:02.2149644Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://akbcbhd4gpg8h5au.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc27dd89d-23d9-4a3c-9\",\"name\":\"Testc27dd89d-23d9-4a3c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T01:14:24.8592454Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T01:14:24.8592454Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fta2epatd3f4edez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ac675c0-e685-4299-9\",\"name\":\"Test5ac675c0-e685-4299-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T02:14:25.1933926Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T02:14:25.1933926Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3c9f7bjcud9e5ej.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testafe81e7c-7562-42ca-a\",\"name\":\"Testafe81e7c-7562-42ca-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T02:35:41.7566493Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:44.3316408Z\"},\"identity\":{\"principalId\":\"36af6e12-6c87-4b5b-af8e-c39ed6770d3f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dedbcng9cpakfraf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92a71375-aaf6-49e3-b\",\"name\":\"Test92a71375-aaf6-49e3-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T07:54:25.6861814Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T07:54:25.6861814Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g4hzcqa4gmbvcdbx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test58bfd760-aa80-4662-a\",\"name\":\"Test58bfd760-aa80-4662-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T08:05:41.0908656Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-16T12:51:44.7808303Z\"},\"identity\":{\"principalId\":\"c0776d81-7979-4cc7-8d3d-281c6ac53d09\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g3bpbegcedggb5g9.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3520cf4b-8f9e-4a29-9\",\"name\":\"Test3520cf4b-8f9e-4a29-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-30T11:14:26.0450757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-30T11:14:26.0450757Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f7a8cfgxevcvgdde.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa525cb10-6ce0-4db0-a\",\"name\":\"Testa525cb10-6ce0-4db0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T11:34:29.647141Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-31T11:34:29.647141Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e5ejebe3h0a6bbgk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test76d1ddd8-dfba-4f18-a\",\"name\":\"Test76d1ddd8-dfba-4f18-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T12:35:45.3195802Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:52.7162847Z\"},\"identity\":{\"principalId\":\"a994b509-4be4-478d-a5f3-b5c931117bda\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://asgycvf0d4fnanh3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf243d998-0518-41c2-a\",\"name\":\"Testf243d998-0518-41c2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T14:45:46.3399087Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:53.378961Z\"},\"identity\":{\"principalId\":\"79acc55a-8910-447e-9ca4-7bb7245c4b7a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hud9ekavapf3fwet.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9b988de0-5d15-499d-b\",\"name\":\"Test9b988de0-5d15-499d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T21:35:46.652731Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T14:00:53.973208Z\"},\"identity\":{\"principalId\":\"4dc65534-be35-4dce-b14a-becd8eae7e45\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c2ecgfbvcec4h8h2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcea94dc1-27af-4ad2-b\",\"name\":\"Testcea94dc1-27af-4ad2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-31T21:44:31.3114152Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-31T21:44:31.3114152Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7g6hfhshac7ewfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test418fe284-34c6-4a5c-9\",\"name\":\"Test418fe284-34c6-4a5c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T01:46:20.8617847Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T01:46:20.8617847Z\"},\"identity\":{\"principalId\":\"2847d5db-8407-4666-a2b5-ca5e27ea985b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aedda6aeazemepcj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2dec70a3-a4c4-4883-b\",\"name\":\"Test2dec70a3-a4c4-4883-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T04:55:05.9148319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T04:55:05.9148319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adhcg7bvb2h0d9hn.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test25769ffe-af47-45e0-9\",\"name\":\"Test25769ffe-af47-45e0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T04:56:22.1680743Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T04:56:22.1680743Z\"},\"identity\":{\"principalId\":\"31ff749c-ccc2-4906-ba3e-130dc99dc112\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a6fkftadd6cngpgt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb770ec70-1ff0-400b-b\",\"name\":\"Testb770ec70-1ff0-400b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-10T05:05:06.2580805Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-10T05:05:06.2580805Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fqfdcwa8bdg9dpcf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa801711d-f24d-4021-9\",\"name\":\"Testa801711d-f24d-4021-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-11T08:21:51.2658018Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-11T08:21:51.2658018Z\"},\"identity\":{\"principalId\":\"4c0557c9-ac85-4a1e-a3b2-da80eaf232d0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hqfcebgqb2a9dpaj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d288a28-4ed9-4177-b\",\"name\":\"Test5d288a28-4ed9-4177-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-17T18:15:30.2225705Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-17T18:15:30.2225705Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b8erb8byenfrg3fz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0917\",\"name\":\"test0917\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-17T18:20:24.8225773Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-17T18:20:24.8225773Z\"},\"identity\":{\"principalId\":\"4356292b-b98b-4d57-8fb8-8a149f31076a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fzasaceeanhedmhx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste3bb74fd-54a0-43db-a\",\"name\":\"Teste3bb74fd-54a0-43db-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T03:05:30.9577748Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T03:05:30.9577748Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ctdkachwcxaaf3bq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test915bd3e8-6945-4cf7-8\",\"name\":\"Test915bd3e8-6945-4cf7-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T06:16:46.6190316Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T06:16:46.6190316Z\"},\"identity\":{\"principalId\":\"0f63741b-9549-4df4-bdb5-e5aea428c470\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fqd2e8d8gqabc9ea.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd2c2822f-0379-4665-9\",\"name\":\"Testd2c2822f-0379-4665-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-19T14:15:38.3720649Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T14:15:38.3720649Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g0dya4hgc5gdfvcy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8d133811-e76b-4db9-a\",\"name\":\"Test8d133811-e76b-4db9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-23T15:17:06.0218185Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-23T15:17:06.0218185Z\"},\"identity\":{\"principalId\":\"750ef212-1043-4b5c-bf84-cdffced37da4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efhngqgcgcaca6bk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4308f593-0f10-4553-a\",\"name\":\"Test4308f593-0f10-4553-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:22:54.5595634Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:22:54.5595634Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://arezb5craxe6gbha.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9e73f0f6-7db9-4ac8-9\",\"name\":\"Test9e73f0f6-7db9-4ac8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:24:08.8116625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:24:08.8116625Z\"},\"identity\":{\"principalId\":\"7cf3259b-a8ea-4c3e-8886-28ac2a046be7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hdevcghfgedmfyfe.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test89c36db5-af20-49a1-8\",\"name\":\"Test89c36db5-af20-49a1-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:44:07.7172255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:44:07.7172255Z\"},\"identity\":{\"principalId\":\"a3c355dd-459a-4f7c-8775-e4690538aaac\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fea5gcgecue6g3eb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf4d421c7-8c39-4e7b-8\",\"name\":\"Testf4d421c7-8c39-4e7b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:54:08.5925421Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:54:08.5925421Z\"},\"identity\":{\"principalId\":\"feace456-c589-4ab9-9354-0d5b73a7b17d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bndjbyg2a9deaefs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc83ede2e-21ee-4098-b\",\"name\":\"Testc83ede2e-21ee-4098-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:55:51.8042721Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:55:51.8042721Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a8b0bcaee6c3ekhd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test580f898a-49e6-4ff2-9\",\"name\":\"Test580f898a-49e6-4ff2-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:02:53.9674657Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:02:53.9674657Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eyacejfbanfqejgg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfc4c3949-7578-44b6-9\",\"name\":\"Testfc4c3949-7578-44b6-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:04:08.4179249Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:04:08.4179249Z\"},\"identity\":{\"principalId\":\"dbe1c3c1-b6ce-4650-a8c1-aabe45ccbfe1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dgbab5dehqayd0h8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3c33ceb3-6fca-4d3a-b\",\"name\":\"Test3c33ceb3-6fca-4d3a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:05:52.384128Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:05:52.384128Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fvczdgczfqa5aeag.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5f3cb0e3-53e6-48dc-8\",\"name\":\"Test5f3cb0e3-53e6-48dc-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:07:07.8721977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:07:07.8721977Z\"},\"identity\":{\"principalId\":\"81cfff8e-9467-4bb1-84da-ab882a3f819f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://e6chhmbmg4eqd2d2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf779332-9182-4e44-a\",\"name\":\"Testbf779332-9182-4e44-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:12:54.595405Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:12:54.595405Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ethsbae5hxgpe0az.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd347078c-4992-4218-a\",\"name\":\"Testd347078c-4992-4218-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:14:07.8532725Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:14:07.8532725Z\"},\"identity\":{\"principalId\":\"144f9b3e-dff6-4024-9e79-5661e70dd81f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzg3gjgccsenbab6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test479c1eff-43d1-46b6-8\",\"name\":\"Test479c1eff-43d1-46b6-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:17:08.0531881Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:17:08.0531881Z\"},\"identity\":{\"principalId\":\"f1d7c7d9-5c01-4235-9dbb-c6b8c7d24658\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fcevhcb3f9d2ddgz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb315f477-17f3-491c-8\",\"name\":\"Testb315f477-17f3-491c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:22:53.4588323Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:22:53.4588323Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dqhncmdqf7caaaeq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test42b4dfeb-3aa6-455a-8\",\"name\":\"Test42b4dfeb-3aa6-455a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:25:52.0604626Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:25:52.0604626Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h7dpa5hyegbrc9es.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9690c89a-8bb1-4dfb-a\",\"name\":\"Test9690c89a-8bb1-4dfb-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:32:53.5686881Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:32:53.5686881Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aycwfzfydhh3azh2.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f470d36-ec33-42b7-a\",\"name\":\"Test7f470d36-ec33-42b7-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:35:51.8058708Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:35:51.8058708Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g0cgfgc7ajdaeeef.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6fff934d-605e-4df6-b\",\"name\":\"Test6fff934d-605e-4df6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:42:53.1345757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:42:53.1345757Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hgdsdhefdudhg3cx.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa3d8495-f018-480b-9\",\"name\":\"Testfa3d8495-f018-480b-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:44:08.2153383Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:44:08.2153383Z\"},\"identity\":{\"principalId\":\"6ab384d2-5ecf-4d7e-8598-6ca18fa0e1ec\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://esdsg3fbcbbfg7eg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test70c4c87b-aa55-4528-a\",\"name\":\"Test70c4c87b-aa55-4528-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:55:52.1460493Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:55:52.1460493Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://abd9hefeeca0b4a7.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdbdfed87-3b68-4092-8\",\"name\":\"Testdbdfed87-3b68-4092-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:57:07.3436085Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:57:07.3436085Z\"},\"identity\":{\"principalId\":\"9274a384-e27d-42e2-8c3c-a6b85fee897a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hjf7e8ghc5c3guh4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8f048f59-8d6b-4e09-8\",\"name\":\"Test8f048f59-8d6b-4e09-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:02:54.3896474Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:02:54.3896474Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h9facdephsg3etcu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa33d7162-26cf-422e-b\",\"name\":\"Testa33d7162-26cf-422e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:05:51.6715709Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:05:51.6715709Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a4eqd2dadmebgmcn.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test31ca4d54-68b3-4a53-8\",\"name\":\"Test31ca4d54-68b3-4a53-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:05:53.5889723Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:05:53.5889723Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eecgcye8a5fte3af.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc4df9124-1da8-44e8-b\",\"name\":\"Testc4df9124-1da8-44e8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:15:51.8454271Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:15:51.8454271Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://etdfbqcef6gtcnct.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb3b5cd63-4870-4711-9\",\"name\":\"Testb3b5cd63-4870-4711-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:47:07.0907309Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:47:07.0907309Z\"},\"identity\":{\"principalId\":\"a5b99819-de66-4d2a-8ec4-cd3a7dab813d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0b8g9f7gyd5aubk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8698c1bd-6daa-40c0-8\",\"name\":\"Test8698c1bd-6daa-40c0-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:02:53.7813795Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:02:53.7813795Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ehcnazchgcejhucc.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste0da86bb-bc73-456d-a\",\"name\":\"Teste0da86bb-bc73-456d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T13:07:07.5268999Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T13:07:07.5268999Z\"},\"identity\":{\"principalId\":\"014d266c-4c77-43c7-8af5-7c190456ad31\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://h3breuehdxdabdgz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2da15c47-fdf2-42d0-b\",\"name\":\"Test2da15c47-fdf2-42d0-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-26T18:06:02.4375998Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-26T18:06:02.4375998Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://guenekcyena4dgdj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus-pl\",\"name\":\"syntheticseus-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T21:07:59.6551376Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:07:59.6551376Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hra8hkghcjdvanhy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus-pl/privateEndpointConnections/pe-syntheticseus-pl.3ded7c36-1c24-4765-8320-386c4c1ef3fc\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticseus-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr-01/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdreus01\",\"name\":\"cchaobcdreus01\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-03T18:18:45.0275266Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T18:18:45.0275266Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dxdkg5c0gaaag9c0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testpldisabled\",\"name\":\"testpldisabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-14T19:14:19.2824911Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-14T19:14:19.2824911Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test57710f9d-f0b3-4825-b\",\"name\":\"Test57710f9d-f0b3-4825-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-15T15:19:34.4884593Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-15T15:19:34.4884593Z\"},\"identity\":{\"principalId\":\"6a073cf8-347c-432b-94f5-e66f942fd249\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ahh8gygufpand7ct.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/candelete\",\"name\":\"candelete\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-20T05:16:20.3981244Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-20T05:16:20.3981244Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aybraqbjhfbgf6e3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/azpwsh\",\"name\":\"azpwsh\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-20T05:57:23.0922259Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-20T05:57:23.0922259Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3c3dxdqaeendndf.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus\",\"name\":\"syntheticseus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:05:54.1278213Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:07:22.2279447Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dharbharavdsaect.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa26b3347-fa92-4dbc-9\",\"name\":\"Testa26b3347-fa92-4dbc-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T01:43:57.0170716Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:51.2617536Z\"},\"identity\":{\"principalId\":\"8f264d85-9a0d-4f1e-8e5d-65a179941829\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://btgbgpg7czgmhydb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test785e9304-f25e-4ef8-b\",\"name\":\"Test785e9304-f25e-4ef8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T02:02:41.7866369Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T02:02:41.7866369Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://axehbdaedxdbcrdw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdfced180-6f55-40bf-8\",\"name\":\"Testdfced180-6f55-40bf-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T02:33:56.987299Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:52.3889988Z\"},\"identity\":{\"principalId\":\"86a5eafb-8cd1-4c7c-9ea3-786d969482fd\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e9daexfebhg3awgv.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test09019f67-5489-41cf-9\",\"name\":\"Test09019f67-5489-41cf-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T16:14:00.1910381Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:53.0058222Z\"},\"identity\":{\"principalId\":\"fcff4d9f-0be8-45b0-8c32-8feb0fd4dd0a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gjfmhxhcavc2bagu.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste25a76cb-f142-42b9-8\",\"name\":\"Teste25a76cb-f142-42b9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T16:52:45.3134693Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T16:52:45.3134693Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adgxf8bcdqadcphz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d76b4cf-7662-4bfd-a\",\"name\":\"Test5d76b4cf-7662-4bfd-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T18:24:00.2605741Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:53.7145581Z\"},\"identity\":{\"principalId\":\"f6a4961f-4565-4387-8f6d-1de64ebe1924\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d4dccwevcddnewak.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testabcd2e92-de6e-4453-b\",\"name\":\"Testabcd2e92-de6e-4453-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T20:12:46.2080512Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T20:12:46.2080512Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g8degxd9exb0eccy.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8277e68d-5264-4742-a\",\"name\":\"Test8277e68d-5264-4742-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-03T23:32:46.7822366Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-03T23:32:46.7822366Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://acbkajdkaaa9csbp.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6940a271-18eb-46d9-b\",\"name\":\"Test6940a271-18eb-46d9-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T02:44:02.4536637Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:54.3429847Z\"},\"identity\":{\"principalId\":\"a05f7ebe-35c3-4ac7-900c-d84c83d85ae0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcbtc0cza4cjdub4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2dc1139f-08b1-49cb-8\",\"name\":\"Test2dc1139f-08b1-49cb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T02:52:47.3669747Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-04T02:52:47.3669747Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cvfuagbhgkbahkfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2a5bd28-7de5-4204-8\",\"name\":\"Teste2a5bd28-7de5-4204-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T07:02:48.3732468Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-04T07:02:48.3732468Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hyc9aqb4btfrhphj.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5871834c-b18c-4c28-b\",\"name\":\"Test5871834c-b18c-4c28-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-04T15:24:05.5915367Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-21T02:58:54.9737949Z\"},\"identity\":{\"principalId\":\"238e4836-9705-4c7d-9fc8-c18ba6a86dea\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8erbbe3bvg2bycq.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-gthomasdeiddev009/providers/microsoft.healthdataaiservices/deidservices/gthomas-cli-deid-service\",\"name\":\"gthomas-cli-deid-service\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-06T17:57:32.8272399Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:00.4954843Z\"},\"identity\":{\"principalId\":\"4021988e-4656-4cd3-8207-93cf69cd9af4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5b9gjffeue5f0eb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-gthomasdeiddev009/providers/microsoft.healthdataaiservices/deidservices/gthomas-cli-deid\",\"name\":\"gthomas-cli-deid\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-06T20:14:51.7160954Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:01.3263731Z\"},\"identity\":{\"principalId\":\"39f2cf09-9ce0-4812-aa46-acc21f4b78be\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cng4c0budjaxcwfd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd32cc208-760b-4361-b\",\"name\":\"Testd32cc208-760b-4361-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T09:53:04.2088507Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T09:53:04.2088507Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eggyg0c7bkckebdd.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste76a072c-38bd-4c00-9\",\"name\":\"Teste76a072c-38bd-4c00-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T00:03:08.0003517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-08T00:03:08.0003517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fyerexethjbke0hh.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c03d46a-5afe-4a6c-a\",\"name\":\"Test4c03d46a-5afe-4a6c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T01:34:23.6364624Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:02.0555503Z\"},\"identity\":{\"principalId\":\"b37a7246-13d6-4d6d-96b2-624304918700\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a5bvgzg5hvdwcqcb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75f6cd6b-8cd0-483a-9\",\"name\":\"Test75f6cd6b-8cd0-483a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T03:23:08.1359355Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-08T03:23:08.1359355Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ayhfdff0fbccgpez.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test48cb195e-2818-482a-a\",\"name\":\"Test48cb195e-2818-482a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-08T14:24:24.9025185Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T01:07:03.7572074Z\"},\"identity\":{\"principalId\":\"338328fc-7114-45ca-93c7-06cce1975d26\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ffh3b8gkh6gkb0f3.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eus\",\"name\":\"plval0809eus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T18:32:09.6710255Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T18:32:09.6710255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://byfzdrh2fzddawe4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eus/privateEndpointConnections/peeus.2f055527-a9dd-4f2d-96a5-1373a0d1b334\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/peeus\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eus/privateEndpointConnections/peeustest.e73a3939-52d0-45d8-ab1b-8f5908c57705\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/peeustest\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eusv2\",\"name\":\"plval0809eusv2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:11:20.7050619Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:11:20.7050619Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deb7esd6bshyfkab.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eastus\",\"name\":\"plval0809eastus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T23:36:27.7953632Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T00:46:17.1865837Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bwbje2h0dqenfdan.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/eus0813en\",\"name\":\"eus0813en\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T17:27:27.981602Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-13T17:27:27.981602Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gqcudhaqfdb6huf4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0813eus\",\"name\":\"test0813eus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T22:03:12.6968366Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:46.1199566Z\"},\"identity\":{\"principalId\":\"e5c625b6-3ed8-49bd-ba34-b555e9030396\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g9a8f6a2g0fchzg4.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0813\"},\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"Please approve my connection, thanks.\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0813eus/privateEndpointConnections/peeus0813.1162b02a-9511-4b71-a699-ef0f86782e70\"}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3fb04bac-8558-4c25-b\",\"name\":\"Test3fb04bac-8558-4c25-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-14T13:13:30.6451301Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-14T13:13:30.6451301Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dxd5hyg5gwgxf2cb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53c865a8-e209-49c6-b\",\"name\":\"Test53c865a8-e209-49c6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-14T16:55:47.7698702Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:47.8011606Z\"},\"identity\":{\"principalId\":\"c4cc8613-9007-435e-875f-d0de4165e0cf\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buf2f5bwarexgab5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Tested082d56-35dc-4aaf-8\",\"name\":\"Tested082d56-35dc-4aaf-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-16T00:44:49.8086187Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-02T23:01:48.7331827Z\"},\"identity\":{\"principalId\":\"7b7eb0b3-8581-4f6b-b69c-5270d674a2d4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dzg3gcaxdehjdrf6.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc35e49b5-9c9f-45fb-8\",\"name\":\"Testc35e49b5-9c9f-45fb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-17T07:53:38.1009037Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-17T07:53:38.1009037Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gyabe9cbdkafepbb.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7001a4b4-d6ae-4cb7-9\",\"name\":\"Test7001a4b4-d6ae-4cb7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-17T18:44:55.1906374Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:29.2220736Z\"},\"identity\":{\"principalId\":\"c27ac38d-22df-4086-9c49-8da20aa3d4b8\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hde2aahffxgjavev.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9febe45f-f0f6-4b5b-a\",\"name\":\"Test9febe45f-f0f6-4b5b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-18T08:26:28.0625812Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:30.1418071Z\"},\"identity\":{\"principalId\":\"5d7cc055-b1bd-4a1b-a69e-9e37bed09c0b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fpasb5dmc0b3dvav.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test52b0b8e4-2690-4e9f-b\",\"name\":\"Test52b0b8e4-2690-4e9f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-20T16:03:52.0012532Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-20T16:03:52.0012532Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bgcweza3gsgmexhp.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test647418db-81d2-4c7a-9\",\"name\":\"Test647418db-81d2-4c7a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-20T22:43:52.3271505Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-20T22:43:52.3271505Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ede6egawbbg2gxba.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2e43b94b-5314-4805-8\",\"name\":\"Test2e43b94b-5314-4805-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T07:43:53.7556068Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-21T07:43:53.7556068Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aeeuhscmg3bsaxh8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9bec478f-3021-4b84-8\",\"name\":\"Test9bec478f-3021-4b84-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T09:05:09.7723564Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:33.6388298Z\"},\"identity\":{\"principalId\":\"ebb69717-c03f-4122-b350-f7f64a9456c5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5f9ftgrbrcna5bm.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8ed7114a-21bc-4837-8\",\"name\":\"Test8ed7114a-21bc-4837-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T11:15:09.4360491Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:34.4435565Z\"},\"identity\":{\"principalId\":\"b411d1ba-6bef-4508-b37e-00c5724948c3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gjbbgyhrddcmf3a8.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4a94a19d-db3c-4b73-b\",\"name\":\"Test4a94a19d-db3c-4b73-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T13:25:09.3167565Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:35.50707Z\"},\"identity\":{\"principalId\":\"55c9788d-3a37-445f-aa2e-312bbb238258\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmawb5f6a3cdedf0.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff4de099-42ae-4de3-9\",\"name\":\"Testff4de099-42ae-4de3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T16:55:11.1451351Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:36.3035088Z\"},\"identity\":{\"principalId\":\"d78f5778-7478-4ef4-a336-4c444ca3c936\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bae9apctcgd6fkag.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d52f902-5d97-45a6-a\",\"name\":\"Test5d52f902-5d97-45a6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T19:05:10.3089733Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:37.1029164Z\"},\"identity\":{\"principalId\":\"d13bbdf8-abaa-4663-88ee-3a7df2991df7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g6d4d3d7adfgb0cg.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9104eab-d7c1-498b-b\",\"name\":\"Teste9104eab-d7c1-498b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T20:15:11.3046245Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:37.8939846Z\"},\"identity\":{\"principalId\":\"bdffe26d-6146-41f3-a010-b413c4ae14bb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b3hafmfgdje6e4cz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa3a325cd-276e-4b92-8\",\"name\":\"Testa3a325cd-276e-4b92-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-21T23:35:11.6873742Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-07T17:51:38.6439936Z\"},\"identity\":{\"principalId\":\"df9b6981-a613-4bfd-8c0b-6befa05c8aeb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cmh4hkd3hbdtecby.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test99312e4a-5283-4b4f-9\",\"name\":\"Test99312e4a-5283-4b4f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T02:55:10.6907352Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:01.061706Z\"},\"identity\":{\"principalId\":\"84026cb9-2bc7-44f6-9535-5ba3bd414d22\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gqc3b3d9dtcrejck.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea0405f4-fc15-4804-9\",\"name\":\"Testea0405f4-fc15-4804-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T06:15:11.7914388Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:01.7780035Z\"},\"identity\":{\"principalId\":\"0a3f366a-1924-4c57-889c-47c6e0e1a645\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ceeqbrdngzasb3gt.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test57d01c2f-2309-4eaf-9\",\"name\":\"Test57d01c2f-2309-4eaf-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T10:45:12.083484Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:02.5239668Z\"},\"identity\":{\"principalId\":\"64c13767-e12f-4537-8391-d472a05082ca\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hke0hec8czd9asaw.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf9d8a5f2-a2e6-40fe-b\",\"name\":\"Testf9d8a5f2-a2e6-40fe-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T14:25:12.9031661Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:03.2141795Z\"},\"identity\":{\"principalId\":\"a819b10e-88c7-4cb4-90a6-dbfe0253cb1d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bfhnbehdbpbragd5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5060aa6f-91bb-4664-9\",\"name\":\"Test5060aa6f-91bb-4664-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-22T22:45:14.4852819Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:05.4870227Z\"},\"identity\":{\"principalId\":\"11c2b2bc-c186-4916-a09b-18266819e2df\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cta8hkdnaehhb6ep.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcacc3fae-e5bf-4530-9\",\"name\":\"Testcacc3fae-e5bf-4530-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T09:15:14.2287089Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:06.2202225Z\"},\"identity\":{\"principalId\":\"d426f26f-a521-4d41-a045-cd783378e16c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d3gsbmccgpe2fabk.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3633c48b-89b3-4406-8\",\"name\":\"Test3633c48b-89b3-4406-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T12:03:59.4224525Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-23T12:03:59.4224525Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a7hdevhmcycsh8cs.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test91544ec5-3197-45b4-a\",\"name\":\"Test91544ec5-3197-45b4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-23T13:35:14.3210489Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-10T19:50:07.2072031Z\"},\"identity\":{\"principalId\":\"7831cc56-7ef4-4ce8-a1b7-fed9b0283197\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a2gua7ezcjb2gygz.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testpleus2\",\"name\":\"testpleus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-01T06:38:59.6953715Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-01T06:38:59.6953715Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqdhdmhbdthab7du.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/testpleus2/privateEndpointConnections/testpleus2-pe.e75a5e32-6543-4ec9-923d-b198008afbb2\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpleus2-pe\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a238827-6e2d-4496-8\",\"name\":\"Test7a238827-6e2d-4496-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T05:52:32.6163166Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T05:52:32.6163166Z\"},\"identity\":{\"principalId\":\"affee168-6f02-44f3-a3f8-c7a8292d142c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f8e0cjc6g6fcb6cx.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7606a1e1-905d-4b0c-b\",\"name\":\"Test7606a1e1-905d-4b0c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:10:07.4109967Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:10:07.4109967Z\"},\"identity\":{\"principalId\":\"d05def33-e601-48fd-a1a1-876314f1b1eb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fxb6gbhuejcscngc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcca612a4-b8f9-4062-a\",\"name\":\"Testcca612a4-b8f9-4062-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:21:20.3297431Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:21:20.3297431Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h2guhdhyg8h6h0da.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3bb3b22-387c-4665-9\",\"name\":\"Testf3bb3b22-387c-4665-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:31:20.367346Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:31:20.367346Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ckbsd4d3aaa0gmar.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7b6b6a45-cb81-4584-a\",\"name\":\"Test7b6b6a45-cb81-4584-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:38:53.3883786Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:38:53.3883786Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eva6gfdhetczfpft.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa825b64d-c278-4662-9\",\"name\":\"Testa825b64d-c278-4662-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:41:20.7574131Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:41:20.7574131Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hkhebcf4exenbkch.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test39d47bea-ada0-4625-8\",\"name\":\"Test39d47bea-ada0-4625-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:48:52.5953641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:48:52.5953641Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://byecg3cqgqdwcucd.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test35886f50-4409-4d8c-b\",\"name\":\"Test35886f50-4409-4d8c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:52:32.9705776Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:52:32.9705776Z\"},\"identity\":{\"principalId\":\"9de84e1a-023a-4c72-9c46-02bab1cb1a7b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://azaah7ewd8czevhr.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9acbc1dc-3c29-495d-9\",\"name\":\"Test9acbc1dc-3c29-495d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:58:51.7648163Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:58:51.7648163Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://crenathdd9dqhbfb.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test333d3d33-d78e-475d-a\",\"name\":\"Test333d3d33-d78e-475d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:01:21.2447245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:01:21.2447245Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bbdgh4ethyhfbkba.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaaaf5fef-ef54-4b58-b\",\"name\":\"Testaaaf5fef-ef54-4b58-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:02:32.8710898Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:02:32.8710898Z\"},\"identity\":{\"principalId\":\"32147ee8-9d84-4320-bcbc-f2d217483ab0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a0g9hpcca0cvh9hu.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdc05c024-5ec2-4e47-9\",\"name\":\"Testdc05c024-5ec2-4e47-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:08:51.6459348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:08:51.6459348Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4hbe9ehe8d2dsh7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6bbc85f2-daed-4c3e-a\",\"name\":\"Test6bbc85f2-daed-4c3e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:11:20.9880638Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:11:20.9880638Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f3dqgzexg5bgaafg.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4c6a9ee-9023-4f58-a\",\"name\":\"Testd4c6a9ee-9023-4f58-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:12:33.973674Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:12:33.973674Z\"},\"identity\":{\"principalId\":\"d6dc4169-9664-4686-869c-a781977e76e1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://add3cqarc5dfh3ek.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1c8fb03-cffe-4d3b-8\",\"name\":\"Teste1c8fb03-cffe-4d3b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:21:21.3138133Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:21:21.3138133Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e9gaaqfva0ejhcbp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb7f12c69-ab20-45cc-a\",\"name\":\"Testb7f12c69-ab20-45cc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:28:52.59113Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:28:52.59113Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://g6f5gqgnh5d3azfg.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf0af8275-b36e-404b-a\",\"name\":\"Testf0af8275-b36e-404b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:31:20.577251Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:31:20.577251Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc60001bf-59e2-44da-8\",\"name\":\"Testc60001bf-59e2-44da-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:32:32.8926146Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:32:32.8926146Z\"},\"identity\":{\"principalId\":\"6e6234c2-f52d-4a5a-a467-ab50a9f7dea6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://crawg5gzafgne4ct.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test917a6607-34e1-4504-8\",\"name\":\"Test917a6607-34e1-4504-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:38:52.4924081Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:38:52.4924081Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e6b6c4ecdrgdaycj.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde5239a3-9848-435e-9\",\"name\":\"Testde5239a3-9848-435e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:51:21.6090854Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:51:21.6090854Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a9cbgnacfhcuf0aj.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2f76d8c1-e606-4aa0-9\",\"name\":\"Test2f76d8c1-e606-4aa0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:08:52.5343498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:08:52.5343498Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eedffagyg2b5fscx.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf861c4c6-45e7-4705-9\",\"name\":\"Testf861c4c6-45e7-4705-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:12:33.027495Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:12:33.027495Z\"},\"identity\":{\"principalId\":\"59aa473b-b49a-450a-8f93-4a82ffbc5e42\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hufcd6gdaqhgfjbp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9bd0646-3594-40ad-9\",\"name\":\"Teste9bd0646-3594-40ad-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:21:20.967923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:21:20.967923Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://crgsaee9dmb2f8g7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test77ad27d9-b285-4645-b\",\"name\":\"Test77ad27d9-b285-4645-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:22:33.6184753Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:22:33.6184753Z\"},\"identity\":{\"principalId\":\"1ab7d7ac-d5b3-40da-94a5-0aaf73b5e234\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cfb6eqb7encnfjcw.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf288367-c5e9-42a9-9\",\"name\":\"Testbf288367-c5e9-42a9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:42:33.867541Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:42:33.867541Z\"},\"identity\":{\"principalId\":\"bd57709f-80f2-4084-9eca-c40a441055ad\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://cwdyg9ewc2ehgqdc.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test403e02f9-aad8-4c29-a\",\"name\":\"Test403e02f9-aad8-4c29-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:12:34.1020629Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:12:34.1020629Z\"},\"identity\":{\"principalId\":\"c136cdff-faa6-4142-b418-98d7f73783f4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fyh0dghwcufrckd7.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd2e5c89f-aca2-4ad3-8\",\"name\":\"Testd2e5c89f-aca2-4ad3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:21:22.8481879Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:21:22.8481879Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://ghdgaycteadaeshn.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea3b2f2c-dbf4-4c35-8\",\"name\":\"Testea3b2f2c-dbf4-4c35-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:11:21.7332385Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:11:21.7332385Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b7dmcgbva7h8dphw.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test83a231ca-ab94-4079-b\",\"name\":\"Test83a231ca-ab94-4079-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T18:42:37.4122264Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T18:42:37.4122264Z\"},\"identity\":{\"principalId\":\"b74e64a9-ae66-4211-ac6a-f78b419aa85c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c8ebhughecajcnfa.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test55be8efc-3cef-458a-a\",\"name\":\"Test55be8efc-3cef-458a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T19:01:24.4218521Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T19:01:24.4218521Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"publicNetworkAccess\":\"Enabled\",\"serviceUrl\":\"https://gug6c3b3cja3ang9.api.eus2001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemo\",\"name\":\"deiddemo\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-29T14:59:09.2833612Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T14:06:00.1344203Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4fzdeh9h2bkbphy.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/pedeid\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemo/privateEndpointConnections/pedeid.dd94e33d-9a4d-417b-b321-16878cd1b816\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2-pl\",\"name\":\"syntheticseus2-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T11:23:55.4578505Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:23:55.4578505Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adcxf8grb0fsehgv.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2-pl/privateEndpointConnections/pe-syntheticseus2-pl.9f6cefb9-7c29-4a1a-bfe2-c6f9b45a8958\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticseus2-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/deiddemopl\",\"name\":\"deiddemopl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T14:06:54.3350826Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T14:13:25.7051097Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h5dyh3d6dfazbgbe.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testnew1\",\"name\":\"testnew1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T15:15:58.8797652Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T15:26:23.7886016Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4cyfpe8gaguf2fc.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid1010\",\"name\":\"testdeid1010\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-10T16:38:20.6279051Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-10T16:54:43.8855843Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b7d4hneycjd3fxc4.api.eus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/testdeidpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid1010/privateEndpointConnections/testdeidpl.975be0eb-b434-4f9a-adc4-9da4211b22a5\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d820961-6742-4bca-8\",\"name\":\"Test5d820961-6742-4bca-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-12T10:35:28.8213204Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-12T10:35:28.8213204Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f6g2h3cqa4gwcng2.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/DeidServices/azpwshDeidService2\",\"name\":\"azpwshDeidService2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T00:01:06.069132Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T05:46:45.1524668Z\"},\"identity\":{\"principalId\":\"1185f660-6621-4417-b51b-5ca4dc9e5fb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4cag7feawaubgbv.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azpwsh-test-rg/providers/Microsoft.HealthDataAIServices/deidServices/myHealthDeidService\",\"name\":\"myHealthDeidService\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-21T05:26:15.4607741Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-21T18:56:12.1361396Z\"},\"identity\":{\"principalId\":\"efab95dd-6969-4c43-bd96-4126dc372bfa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8bxaqamerbxd9a3.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:08:02.7254538Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"name\":\"r0sx7k\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:09:35.4022049Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:09:35.4022049Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://exe5gdfhgwa7d0gm.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"name\":\"1aue5d\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:11:08.5819378Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:11:08.5819378Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dtf7abbvcnengvfb.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticseus2\",\"name\":\"syntheticseus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:55:33.1324351Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:23:31.958195Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://acacfme2a4h6h0dp.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809eastus2\",\"name\":\"plval0809eastus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:39:21.8715941Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:39:21.8715941Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hphrenced8dweqf3.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809eastus2/privateEndpointConnections/pl-eus2.a9aa0d96-3c8e-45bc-900a-7ef1da6280e0\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-eus2\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/deid0808v1\",\"name\":\"deid0808v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-01T18:36:16.9529026Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-01T18:36:16.9529026Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deid0808v1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1234\",\"name\":\"test1234\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-05T14:18:26.977372Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-05T14:18:26.977372Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1234.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/acs-test-jelinga/providers/Microsoft.HealthDataAIServices/DeidServices/jeltest1\",\"name\":\"jeltest1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"jelinga@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-06T17:35:23.2544311Z\",\"lastModifiedBy\":\"jelinga@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-06T17:35:23.2544311Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://jeltest1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testing\",\"name\":\"testing\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T19:32:32.3182808Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T19:32:32.3182808Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testing.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testwus2\",\"name\":\"testwus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T20:40:09.8352514Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T20:40:09.8352514Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testwus2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2\",\"name\":\"syntheticswus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T17:01:59.8699199Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T12:23:59.4845851Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9b5eaetb4ded8g2.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwus2pltest\",\"name\":\"deidwus2pltest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-08T21:51:51.3282527Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T23:49:24.9683938Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a5czemgacnf6dmg4.api.wus2001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/deidwus2pltest/privateEndpointConnections/testpl.becb48c9-d25b-4b42-9bb6-1595592be238\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testplwus2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwus2pltest/privateEndpointConnections/testplwus2.4f763525-af2f-4457-9109-2c55402a9c6d\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809westus2\",\"name\":\"plval0809westus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:40:46.5060336Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:40:46.5060336Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ddekf6b7h2h6hsgr.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809westus2/privateEndpointConnections/pewus2.0e2bf50a-b519-4a0e-9e1d-7c058a3b9b44\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pewus2\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf5ec6c2-28ab-4c5a-a\",\"name\":\"Testbf5ec6c2-28ab-4c5a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-02T01:53:40.3484055Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-02T01:53:40.3484055Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hmb4crh3ached4dv.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/SurrogationEvaluation\",\"name\":\"SurrogationEvaluation\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-20T00:23:08.2211657Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-20T00:23:08.2211657Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g4cpgmhehnc7gjh6.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test36b129dc-998b-4906-a\",\"name\":\"Test36b129dc-998b-4906-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:17:18.3194741Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:17:18.3194741Z\"},\"identity\":{\"principalId\":\"cded9449-05df-42cf-9257-119ceb611cf4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e8gjbscaffarewbs.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfac44423-d1b5-4803-a\",\"name\":\"Testfac44423-d1b5-4803-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:36:03.5111718Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:36:03.5111718Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://dnf0emb0hkhwajey.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdcaa7561-a42b-4e98-9\",\"name\":\"Testdcaa7561-a42b-4e98-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:38:24.7013615Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:38:24.7013615Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cqh8gfbkbdc3c8bv.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd9909ef5-4fd7-42a1-9\",\"name\":\"Testd9909ef5-4fd7-42a1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:39:39.4185713Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:39:39.4185713Z\"},\"identity\":{\"principalId\":\"33a1d02c-b99e-4aeb-ab9a-df83df95ff57\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dgd7gqfxdaasetfb.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4291045e-4527-4836-8\",\"name\":\"Test4291045e-4527-4836-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:48:23.6745275Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:48:23.6745275Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://angvd3e6gndgdbc8.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6ef1d88b-8d0e-4375-a\",\"name\":\"Test6ef1d88b-8d0e-4375-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:49:39.6414876Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:49:39.6414876Z\"},\"identity\":{\"principalId\":\"cc21a847-f146-454e-be9c-9260e8977330\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hac7g5a4fkaab8bs.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test55bd2f0c-9e17-4558-9\",\"name\":\"Test55bd2f0c-9e17-4558-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:06:04.3485395Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:06:04.3485395Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hybuaxahhudjc0aw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5a5c16bc-ec62-443f-8\",\"name\":\"Test5a5c16bc-ec62-443f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:08:24.5208047Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:08:24.5208047Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gjamehdmccgcftbe.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa160d233-592e-4d08-8\",\"name\":\"Testa160d233-592e-4d08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:17:18.0309089Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:17:18.0309089Z\"},\"identity\":{\"principalId\":\"829edba6-5590-4e74-b1bd-6aaac07a8bee\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dncbhyatb5c9cnfb.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdf830dd3-3716-4d7e-a\",\"name\":\"Testdf830dd3-3716-4d7e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:18:24.1497699Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:18:24.1497699Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bvenfufhdzbfd7df.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test536584e5-fcd7-4877-a\",\"name\":\"Test536584e5-fcd7-4877-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:27:19.1482143Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:27:19.1482143Z\"},\"identity\":{\"principalId\":\"0b9fc245-a89c-4604-9842-f204bdfd9cb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a8hgcygbdphwd3ff.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test73e9ef3a-3d41-4066-8\",\"name\":\"Test73e9ef3a-3d41-4066-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:29:39.5433918Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:29:39.5433918Z\"},\"identity\":{\"principalId\":\"06f69a4a-81ab-4c17-bd53-e86616eb65df\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://are4bna2abazczfu.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f2d7905-3532-45fd-9\",\"name\":\"Test7f2d7905-3532-45fd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:36:04.1258754Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:36:04.1258754Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://eqcne5dkc3aqexgk.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test624145e5-acfa-4dc1-a\",\"name\":\"Test624145e5-acfa-4dc1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:38:24.7118392Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:38:24.7118392Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bfcghcgbbuf6bec5.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc171c4c5-35bd-462c-9\",\"name\":\"Testc171c4c5-35bd-462c-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:46:03.4772408Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:46:03.4772408Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dnbteha3d5bsceck.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcff71431-5673-4d08-9\",\"name\":\"Testcff71431-5673-4d08-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:47:18.8657333Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:47:18.8657333Z\"},\"identity\":{\"principalId\":\"4224fac9-a7b4-4b37-bcf4-8221f82815ce\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d6fgcahnheccd4b7.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test256acb69-630c-4d44-b\",\"name\":\"Test256acb69-630c-4d44-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:56:03.9963176Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:56:03.9963176Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://e6a3c9eyc4c0gtbw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fe8493d-1144-4f66-8\",\"name\":\"Test5fe8493d-1144-4f66-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:57:18.6911923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:57:18.6911923Z\"},\"identity\":{\"principalId\":\"d97a598d-afe4-4488-98d2-828d0428e14e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fdfaeuf0c8dmgcek.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste669edcf-6036-4acd-9\",\"name\":\"Teste669edcf-6036-4acd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:59:39.4011211Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:59:39.4011211Z\"},\"identity\":{\"principalId\":\"5675b15d-6160-4c64-8c99-a2a41498d572\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b4dfd0b2haduedee.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test771d44f5-8697-4f7f-8\",\"name\":\"Test771d44f5-8697-4f7f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:07:18.5389813Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:07:18.5389813Z\"},\"identity\":{\"principalId\":\"2ad513ea-bb34-423a-9a6f-11604ce9cd8b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fta0f0bee9achmga.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test68d2f5db-be6d-455e-8\",\"name\":\"Test68d2f5db-be6d-455e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:17:20.0477674Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:17:20.0477674Z\"},\"identity\":{\"principalId\":\"25ffe56d-762b-4e3a-81d3-f1e573719575\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gda6d6fffmh5evdf.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc100f616-a532-4b16-9\",\"name\":\"Testc100f616-a532-4b16-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:18:24.543296Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:18:24.543296Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hwech0gmfthwhnfe.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa9299dc-0e5a-4523-8\",\"name\":\"Testfa9299dc-0e5a-4523-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:38:24.5783436Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:38:24.5783436Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://acfzhkacepgxbvcc.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcb520941-f24d-4ba0-a\",\"name\":\"Testcb520941-f24d-4ba0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:48:24.4358381Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:48:24.4358381Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hcgzcua5fwcfbkfc.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test0315c35e-b890-4131-b\",\"name\":\"Test0315c35e-b890-4131-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:58:24.493337Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:58:24.493337Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e2dvgfggevg3cmbq.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c1072f2-e8f5-4a88-8\",\"name\":\"Test4c1072f2-e8f5-4a88-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:59:40.407495Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:59:40.407495Z\"},\"identity\":{\"principalId\":\"4ee4df82-1686-4274-be13-d4c812fdcdf6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gdd4g2c8hcerggg7.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test90624075-28a0-4403-9\",\"name\":\"Test90624075-28a0-4403-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T10:48:26.0857525Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T10:48:26.0857525Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hhhdgrbte7djcwfw.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test97d3f18b-35a1-4d88-9\",\"name\":\"Test97d3f18b-35a1-4d88-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:08:25.4729145Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:08:25.4729145Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dbhmhwf8e3bxhkda.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf7b5c1f1-8d28-401b-8\",\"name\":\"Testf7b5c1f1-8d28-401b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:59:41.3246256Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:59:41.3246256Z\"},\"identity\":{\"principalId\":\"63080029-d803-41a8-8b17-fc5f4628733f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://esb9gyc6b6bggkab.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ccbdf7b-6386-497d-9\",\"name\":\"Test5ccbdf7b-6386-497d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T18:48:29.4451958Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T18:48:29.4451958Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gyaaa9ccewbufbdr.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9c2aee80-9f8c-4e02-9\",\"name\":\"Test9c2aee80-9f8c-4e02-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-01T05:10:37.8467255Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-01T05:10:37.8467255Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hdb5aadkgcdnbhca.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2-pl\",\"name\":\"syntheticswus2-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"West US 2\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T12:24:16.9151724Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T12:24:16.9151724Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a7e3gqa5aphna7gj.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus2-pl/privateEndpointConnections/pe-syntheticswus2-pl.902e448d-d4f9-407d-84dd-43dfd39ea931\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticswus2-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdrwus2\",\"name\":\"cchaobcdrwus2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T23:31:26.2023911Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T00:24:14.4086951Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huf7dhadcnfkcder.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-bcdr-01/providers/Microsoft.HealthDataAIServices/DeidServices/cchaobcdrwus201\",\"name\":\"cchaobcdrwus201\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus2\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-03T18:30:18.1995159Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-03T18:51:33.2139805Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hxh6gjdpdqd0h8ht.api.wus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test87a60ffd-1515-4d9d-9\",\"name\":\"Test87a60ffd-1515-4d9d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-18T17:56:29.1915531Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-18T17:56:29.1915531Z\"},\"identity\":{\"principalId\":\"a9e462a7-c9a3-4098-b684-a6ec5d720e33\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3gwhvfbejewbaey.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdb56e032-8366-4ab0-9\",\"name\":\"Testdb56e032-8366-4ab0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:06:12.9109253Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:06:12.9109253Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://h2cmh0bzhtceb5g8.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e62d26f-d3c9-4a5f-b\",\"name\":\"Test5e62d26f-d3c9-4a5f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:11:19.6377483Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:11:19.6377483Z\"},\"identity\":{\"principalId\":\"d02f320a-9e35-4bf6-9f83-3f58fccd0bd9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b5byb3fsagazdtdr.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd3471136-2a74-49d9-8\",\"name\":\"Testd3471136-2a74-49d9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:20:03.5304574Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:20:03.5304574Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fuhea2bnh5facfg9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test979861da-4a10-45c9-a\",\"name\":\"Test979861da-4a10-45c9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:37:29.2072828Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:37:29.2072828Z\"},\"identity\":{\"principalId\":\"114172e0-db70-4371-9439-e93aaa97fdf3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://afhmdze3b8fca3a3.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Tested2e1ea5-f21f-4765-a\",\"name\":\"Tested2e1ea5-f21f-4765-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:46:13.0992052Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:46:13.0992052Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c5a9c7b4gffga2dj.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb58a1f89-fa7b-4f78-9\",\"name\":\"Testb58a1f89-fa7b-4f78-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:56:12.6778103Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:56:12.6778103Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://brd2bwafeth9a6fe.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7afdb4a5-227a-420b-a\",\"name\":\"Test7afdb4a5-227a-420b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:00:04.3892096Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:00:04.3892096Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ddhkgaa2a0fyd5eb.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test36d17348-5ce9-442a-9\",\"name\":\"Test36d17348-5ce9-442a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:07:28.2530398Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:07:28.2530398Z\"},\"identity\":{\"principalId\":\"8f06d417-b86a-492d-8f44-4a68c3ea0f3e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c5bsbjecdud6a4g9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test963e45f8-88ed-48aa-9\",\"name\":\"Test963e45f8-88ed-48aa-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:11:18.9114737Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:11:18.9114737Z\"},\"identity\":{\"principalId\":\"29848f7d-72bf-475a-917f-3d5918d388c4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://g7gjbcapg2g2dycg.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5fb1df8f-ee79-4954-a\",\"name\":\"Test5fb1df8f-ee79-4954-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:20:04.1374266Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:20:04.1374266Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://erg4gudbd9cvgydy.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4138b447-9f36-4cd6-9\",\"name\":\"Test4138b447-9f36-4cd6-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:21:19.5376965Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:21:19.5376965Z\"},\"identity\":{\"principalId\":\"6f921209-ce71-474b-a035-a8a2e3aae061\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c0d3exdqfkb9abe9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test06d60cb1-40fe-4c30-8\",\"name\":\"Test06d60cb1-40fe-4c30-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:36:13.8248579Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:36:13.8248579Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f0dcathpaphscyc2.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3bca3559-91fb-404a-9\",\"name\":\"Test3bca3559-91fb-404a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:37:29.2955986Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:37:29.2955986Z\"},\"identity\":{\"principalId\":\"3d8c4d46-2769-4b99-a014-0a718f583aa3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://b8ctbshzetayd3ft.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9fd01eb7-b73f-4877-9\",\"name\":\"Test9fd01eb7-b73f-4877-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:40:04.0888992Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:40:04.0888992Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fvc9axgcarfnhfhw.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa2b57e59-9c40-4518-8\",\"name\":\"Testa2b57e59-9c40-4518-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:41:18.9983689Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:41:18.9983689Z\"},\"identity\":{\"principalId\":\"c7d574b1-0e0d-46fd-99c4-24a9cec4bbf4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fecjdxe6ara9hnd6.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc2e708c7-f442-4524-b\",\"name\":\"Testc2e708c7-f442-4524-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:46:13.5523727Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:46:13.5523727Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpfyasdmg9h2dkaq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd3885190-6372-4d11-b\",\"name\":\"Testd3885190-6372-4d11-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:47:29.5420829Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:47:29.5420829Z\"},\"identity\":{\"principalId\":\"332b92cd-d20d-45e6-854e-7a4dc2163d01\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://achmguevddg4d3fb.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa9d8a749-101b-4830-9\",\"name\":\"Testa9d8a749-101b-4830-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:50:04.1460196Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:50:04.1460196Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gzg3b3bkf2fafcgz.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test81afdc34-0624-43d8-b\",\"name\":\"Test81afdc34-0624-43d8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:51:19.7435069Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:51:19.7435069Z\"},\"identity\":{\"principalId\":\"7781e2b0-117e-464e-ac50-ab50801ddd13\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ezcdfwcnf2b8gkgy.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7a2de449-b8bb-4f5d-9\",\"name\":\"Test7a2de449-b8bb-4f5d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:00:04.1448641Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:00:04.1448641Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dua4ftbnghe5hccx.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3b3deeec-2bd1-4338-9\",\"name\":\"Test3b3deeec-2bd1-4338-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:01:19.156135Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:01:19.156135Z\"},\"identity\":{\"principalId\":\"1a05e0a1-5420-4c6d-bfcd-b5c34b9cc3e3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dbgtfbdqbmachcfp.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d3f5139-899c-4ad8-b\",\"name\":\"Test6d3f5139-899c-4ad8-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:06:14.3521856Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:06:14.3521856Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gyajfshhepg5fda9.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb66a51f0-2f5f-4f7d-b\",\"name\":\"Testb66a51f0-2f5f-4f7d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:31:19.5013391Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:31:19.5013391Z\"},\"identity\":{\"principalId\":\"9fd977d6-ae79-45fe-8b0e-6949377f06de\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://befdcneggka9azby.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd342b3ce-0618-4a94-a\",\"name\":\"Testd342b3ce-0618-4a94-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:46:14.7890365Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:46:14.7890365Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://d4g3byczgweue9cv.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff6faf74-32f3-40d9-9\",\"name\":\"Testff6faf74-32f3-40d9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:41:21.3401212Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:41:21.3401212Z\"},\"identity\":{\"principalId\":\"d4b736b1-980e-4610-97a5-f82d88dd96b1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dsbsgscjecd3dpck.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb90b744-f99a-414f-9\",\"name\":\"Testfb90b744-f99a-414f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T20:20:10.9313978Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T20:20:10.9313978Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bcf6d3hwgacsh0cq.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3-pl\",\"name\":\"syntheticswus3-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"West US 3\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T13:53:11.6681304Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T13:53:11.6681304Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ehckb3ascab6atck.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3-pl/privateEndpointConnections/pe-syntheticswus3-pl.e37e9c53-5e6b-4d0d-9710-c9369dacd752\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticswus3-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test0d18c1c4-0e0e-4421-9\",\"name\":\"Test0d18c1c4-0e0e-4421-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-18T01:02:26.4437619Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-18T01:02:26.4437619Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cddheze2fbfge3d7.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticswus3\",\"name\":\"syntheticswus3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:04:34.2050842Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T13:52:47.5867912Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkckd4ebcgbmgddm.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809westus3\",\"name\":\"plval0809westus3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:41:35.2370207Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T05:41:35.2370207Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8h8g5dgead8fafn.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809westus3/privateEndpointConnections/pewus3.c4731e71-797c-445a-942d-2a54ab0f9059\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pewus3\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfa64e0ba-6a8b-4210-b\",\"name\":\"Testfa64e0ba-6a8b-4210-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-13T14:58:51.554396Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-04T00:49:24.6575074Z\"},\"identity\":{\"principalId\":\"b6c8a87e-5a3e-4566-8639-e2bf010bdfa0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gmfwdpfcdscbaxg4.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb860af0a-22f8-442c-a\",\"name\":\"Testb860af0a-22f8-442c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"westus3\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-16T16:09:26.8553498Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-04T00:49:25.8089517Z\"},\"identity\":{\"principalId\":\"5f598bf2-d3bc-40ac-87ff-7c99cfa102ff\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://end7hse3d6bxemb0.api.wus3001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test835e6f9e-482b-4126-a\",\"name\":\"Test835e6f9e-482b-4126-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:00:52.8581939Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:00:52.8581939Z\"},\"identity\":{\"principalId\":\"e26205d5-7db9-472d-9e93-8042167d53da\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://djf7ggf9cdfyaxet.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdf17a0d8-5393-47bc-8\",\"name\":\"Testdf17a0d8-5393-47bc-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:13:40.1538332Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:13:40.1538332Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://axd0b4e9exapfkdj.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test64ddb767-0544-4d0e-b\",\"name\":\"Test64ddb767-0544-4d0e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:14:55.515111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:14:55.515111Z\"},\"identity\":{\"principalId\":\"12dcfc5f-550c-42f7-8655-731601f1c872\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c2epb3a9cvgzc2dz.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdbb96996-4064-4b2c-b\",\"name\":\"Testdbb96996-4064-4b2c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:20:52.855045Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:20:52.855045Z\"},\"identity\":{\"principalId\":\"8ec6bafe-4f3d-4e0b-8ad7-1dd911952e79\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e3hpb5h3emfscsav.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test87067302-e75f-412b-a\",\"name\":\"Test87067302-e75f-412b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:30:53.137443Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:30:53.137443Z\"},\"identity\":{\"principalId\":\"e234a940-2c5b-48bb-bd76-046d2f5bf162\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cngrhee2ddeqb7d6.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6079f216-75ad-4807-8\",\"name\":\"Test6079f216-75ad-4807-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:34:55.2619318Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:34:55.2619318Z\"},\"identity\":{\"principalId\":\"40c21f10-09cc-436c-b8fb-bf5b6cbde257\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gxawccgqedefd5bz.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test98b66745-fa73-42ae-8\",\"name\":\"Test98b66745-fa73-42ae-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:49:38.5842804Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:49:38.5842804Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d6etc4e9fkg9c6bt.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd87ed11b-f543-47f4-a\",\"name\":\"Testd87ed11b-f543-47f4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T06:54:54.9133622Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T06:54:54.9133622Z\"},\"identity\":{\"principalId\":\"f483e661-4f30-4f0b-a239-c07e866d1c06\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c7b6dkdthng0ffe0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf962794b-b861-48b8-a\",\"name\":\"Testf962794b-b861-48b8-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:00:53.1913114Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:00:53.1913114Z\"},\"identity\":{\"principalId\":\"8c8774d0-afec-42cb-b15e-c9751b327c95\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e3auawambdcndgab.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4c7d4f6-1b17-4919-9\",\"name\":\"Testd4c7d4f6-1b17-4919-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:03:40.031421Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:03:40.031421Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://adapeadeh4fhbbe3.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde2bb4c7-d950-4156-b\",\"name\":\"Testde2bb4c7-d950-4156-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:04:55.4828172Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:04:55.4828172Z\"},\"identity\":{\"principalId\":\"70dc411b-2da7-4b2a-b672-ec14c4dcdb58\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://erabddfdbqdphtcq.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2f3ef70d-bbd8-4547-b\",\"name\":\"Test2f3ef70d-bbd8-4547-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:10:53.3178724Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:10:53.3178724Z\"},\"identity\":{\"principalId\":\"54cde060-817f-480c-b5b8-f735a6c98d27\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3bvcjede0c0eje8.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test62b5305e-0158-41d2-8\",\"name\":\"Test62b5305e-0158-41d2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:13:40.0241864Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:13:40.0241864Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bvapashwgeerg3ad.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testba61348d-39b0-4458-b\",\"name\":\"Testba61348d-39b0-4458-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:20:52.8874317Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:20:52.8874317Z\"},\"identity\":{\"principalId\":\"916a0fec-134a-49c8-99e8-656570d19d32\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://geb8fmegauahasex.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7c1eb0f1-5cf4-4b2b-8\",\"name\":\"Test7c1eb0f1-5cf4-4b2b-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:23:39.4653136Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:23:39.4653136Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://evd4b5h5b9h9d4g7.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste66688e5-30ad-4da0-8\",\"name\":\"Teste66688e5-30ad-4da0-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:29:37.9191976Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:29:37.9191976Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gfbhh9gjfza0cmb0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test388ef07d-ebba-4cbb-9\",\"name\":\"Test388ef07d-ebba-4cbb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:30:53.3380706Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:30:53.3380706Z\"},\"identity\":{\"principalId\":\"f9901763-b133-48fd-9971-57a9fe1990fa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hug3daccfvchhjej.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2489dec-8eb2-487e-b\",\"name\":\"Teste2489dec-8eb2-487e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:34:56.0937298Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:34:56.0937298Z\"},\"identity\":{\"principalId\":\"e756ec96-5c3f-4aca-b504-bbe39d02401c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hpchd2cvb6aafgfm.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf930485f-a694-4f71-9\",\"name\":\"Testf930485f-a694-4f71-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:39:38.5278598Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:39:38.5278598Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5fsfme2ede6hafr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53b65792-50fb-47b0-9\",\"name\":\"Test53b65792-50fb-47b0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:49:38.5256918Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:49:38.5256918Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gha7d2gje8gzfzca.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3b6bac20-f252-4b90-8\",\"name\":\"Test3b6bac20-f252-4b90-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:53:40.387144Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:53:40.387144Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a9g7aagjcrc6bye8.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd68b15cf-11dd-4fb6-a\",\"name\":\"Testd68b15cf-11dd-4fb6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:54:56.9183271Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:54:56.9183271Z\"},\"identity\":{\"principalId\":\"c12e2bea-3dfc-4261-aa49-3349944720f4\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://chfxh9g2h6hch9eh.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6b99468d-dfab-4506-8\",\"name\":\"Test6b99468d-dfab-4506-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T07:59:37.8801423Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T07:59:37.8801423Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://dyg4aeb4bfbka8f5.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test56d2ded4-38ef-4399-8\",\"name\":\"Test56d2ded4-38ef-4399-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:04:56.2874705Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:04:56.2874705Z\"},\"identity\":{\"principalId\":\"a05fbbb2-41e6-468e-bfa4-90b07108d44a\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://d8c4dth7fqcubucd.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfdb6bf0b-cee6-4962-8\",\"name\":\"Testfdb6bf0b-cee6-4962-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:09:38.541977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:09:38.541977Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://cpfqf5gpcpc5g0gb.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testde617916-0f51-4953-a\",\"name\":\"Testde617916-0f51-4953-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:19:39.2824636Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:19:39.2824636Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://bhhfevb7bzeqc0ap.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testff4b7b89-5ebc-4fa4-a\",\"name\":\"Testff4b7b89-5ebc-4fa4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:20:53.2834288Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:20:53.2834288Z\"},\"identity\":{\"principalId\":\"46a5e6ca-9620-4cfa-b75d-3da7f4aaa9fa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b2f2erbfd8agchfh.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5e979e6a-6f32-4ea2-b\",\"name\":\"Test5e979e6a-6f32-4ea2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:49:37.8357616Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:49:37.8357616Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d8cbf2dnheb6fuek.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb5148255-04b2-40e7-b\",\"name\":\"Testb5148255-04b2-40e7-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T08:59:38.54155Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T08:59:38.54155Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fdgrd6hscyhmb9cg.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3ff5ca4-b08e-4c7d-9\",\"name\":\"Testf3ff5ca4-b08e-4c7d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:40:53.4438821Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:40:53.4438821Z\"},\"identity\":{\"principalId\":\"9ef2437c-88af-4fc1-bdfd-807bb787bc80\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://duavc4dpaegra0gj.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2f2ff72-6b64-4f93-8\",\"name\":\"Teste2f2ff72-6b64-4f93-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:43:40.6249534Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:43:40.6249534Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://avemb2d5hnhmd9bb.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test2fbf6574-c44d-4f1c-8\",\"name\":\"Test2fbf6574-c44d-4f1c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T09:44:56.527973Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T09:44:56.527973Z\"},\"identity\":{\"principalId\":\"240fedc2-4b7a-4f13-ba9d-480fdbd3a295\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://fxbvhsamcvhthgc2.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0ad5360-2b93-4652-b\",\"name\":\"Testb0ad5360-2b93-4652-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T12:40:54.1467031Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T12:40:54.1467031Z\"},\"identity\":{\"principalId\":\"5feda2fe-9e96-4b0b-aa4e-7b5a21efbcaa\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://ghftcybbaefhfwep.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test894b7ab4-49ac-4f0a-9\",\"name\":\"Test894b7ab4-49ac-4f0a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:10:54.9420866Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:10:54.9420866Z\"},\"identity\":{\"principalId\":\"fa14ce0c-7b7e-4f8a-931b-5711dfbfa02f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://hkh4aea8bpahhng9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4d628f6e-45c2-4334-8\",\"name\":\"Test4d628f6e-45c2-4334-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:20:56.3876235Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:20:56.3876235Z\"},\"identity\":{\"principalId\":\"b762a1f0-82a6-427e-97e6-8b637186af93\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://c0fzbgg6e5grdce3.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste85a7926-1e1e-4de1-a\",\"name\":\"Teste85a7926-1e1e-4de1-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T14:30:56.1343757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T14:30:56.1343757Z\"},\"identity\":{\"principalId\":\"a0da35ad-1636-43df-ad61-5643e62da9a3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://e2bmfmdggea3bha0.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbbc2a5ee-d452-4b63-8\",\"name\":\"Testbbc2a5ee-d452-4b63-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T16:43:43.1433326Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T16:43:43.1433326Z\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://gqawdge2drbea6dr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa413c93e-30f9-4a96-8\",\"name\":\"Testa413c93e-30f9-4a96-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T17:59:42.0147642Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T17:59:42.0147642Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://gmhuf7f2bmfxg4h9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test34f2e583-6e88-4822-9\",\"name\":\"Test34f2e583-6e88-4822-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-24T19:49:42.4645046Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-24T19:49:42.4645046Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dac0f9g6cuggdgdu.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus-pl\",\"name\":\"syntheticsscus-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"South Central US\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T21:17:55.1121961Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:17:55.1121961Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://czhdhshwfwchaxgk.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus-pl/privateEndpointConnections/pe-syntheticsscus-pl.b34b2b66-e7a7-420b-a9cd-17ba357a4917\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticsscus-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test83a4bcb6-66b4-4763-a\",\"name\":\"Test83a4bcb6-66b4-4763-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-25T05:12:16.0899121Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-25T05:12:16.0899121Z\"},\"identity\":{\"principalId\":\"62df5936-2771-4576-b869-a793ae7d4e35\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Deleting\",\"serviceUrl\":\"https://b7ahhsddazf9bdbr.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsscus\",\"name\":\"syntheticsscus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-31T22:06:27.9308928Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T21:17:38.3043211Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b3dchyfbd9c5f7d9.api.scus001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809scus\",\"name\":\"plval0809scus\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"southcentralus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:42:27.6946016Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-06T05:59:41.3984427Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f8ajedhjefaef7et.api.scus001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-scus\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809scus/privateEndpointConnections/pl-scus.9d739708-ca0b-4377-b992-aa12a78a59e4\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchao1214cac\",\"name\":\"testcchao1214cac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-14T22:15:16.7509833Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-14T22:15:16.7509833Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchao1214cac.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac\",\"name\":\"syntheticscac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T19:46:51.7616163Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:21:41.4155723Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticscac.api.cac001.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscac\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac/privateEndpointConnections/pe-syntheticscac.350ccd7c-2652-4c8e-8da4-ac955a9da7ae\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/cac001test\",\"name\":\"cac001test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T20:40:25.9724565Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-21T20:40:25.9724565Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cac001test.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/testcchao1214\",\"name\":\"testcchao1214\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-14T20:34:56.1958631Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-14T20:34:56.1958631Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchao1214.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe141ff5-16a5-4d1a-8\",\"name\":\"Testbe141ff5-16a5-4d1a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:48:23.7560316Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:48:23.7560316Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbe141ff5-16a5-4d1a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb812004a-e516-47d7-9\",\"name\":\"Testb812004a-e516-47d7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T05:58:52.4766857Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T05:58:52.4766857Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb812004a-e516-47d7-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testee94f615-81d5-4516-b\",\"name\":\"Testee94f615-81d5-4516-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:08:23.3555244Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:08:23.3555244Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testee94f615-81d5-4516-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfc5814e5-2798-48b6-a\",\"name\":\"Testfc5814e5-2798-48b6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T08:08:51.8209589Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T08:08:51.8209589Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfc5814e5-2798-48b6-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfd7fbf70-6cbf-4b4a-8\",\"name\":\"Testfd7fbf70-6cbf-4b4a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T12:38:24.31318Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T12:38:24.31318Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfd7fbf70-6cbf-4b4a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadde277e-ccb3-471b-b\",\"name\":\"Testadde277e-ccb3-471b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T16:38:24.5291319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T16:38:24.5291319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testadde277e-ccb3-471b-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc37d9ddb-102f-4a1e-a\",\"name\":\"Testc37d9ddb-102f-4a1e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:58:52.8819245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:58:52.8819245Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc37d9ddb-102f-4a1e-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe524207-9bee-4eeb-8\",\"name\":\"Testbe524207-9bee-4eeb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:48:52.0938714Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:48:52.0938714Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbe524207-9bee-4eeb-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfe40715a-b9b6-438a-9\",\"name\":\"Testfe40715a-b9b6-438a-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:38:53.1112198Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:38:53.1112198Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfe40715a-b9b6-438a-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste93d760d-e861-4f8a-b\",\"name\":\"Teste93d760d-e861-4f8a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:48:52.8765576Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:48:52.8765576Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste93d760d-e861-4f8a-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbde92518-4561-4272-b\",\"name\":\"Testbde92518-4561-4272-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T05:48:24.9302907Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T05:48:24.9302907Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbde92518-4561-4272-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9ab90f7-ead2-4a22-a\",\"name\":\"Teste9ab90f7-ead2-4a22-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T08:48:24.8275683Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T08:48:24.8275683Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste9ab90f7-ead2-4a22-a.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb96faeb2-c7a8-4fb6-8\",\"name\":\"Testb96faeb2-c7a8-4fb6-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T08:48:52.2765884Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T08:48:52.2765884Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb96faeb2-c7a8-4fb6-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb5e1d8f-5a10-4f3d-b\",\"name\":\"Testfb5e1d8f-5a10-4f3d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:08:24.6121269Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:08:24.6121269Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfb5e1d8f-5a10-4f3d-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc37ecb64-bee9-48c4-8\",\"name\":\"Testc37ecb64-bee9-48c4-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:18:53.0484634Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:18:53.0484634Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc37ecb64-bee9-48c4-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testea87009e-cd5f-434a-8\",\"name\":\"Testea87009e-cd5f-434a-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:28:24.9152706Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:28:24.9152706Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testea87009e-cd5f-434a-8.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste72d78f2-0c81-47e2-9\",\"name\":\"Teste72d78f2-0c81-47e2-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T14:48:53.4841049Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T14:48:53.4841049Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste72d78f2-0c81-47e2-9.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbec339eb-b20e-4e71-b\",\"name\":\"Testbec339eb-b20e-4e71-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T18:28:25.0354485Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T18:28:25.0354485Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testbec339eb-b20e-4e71-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf3cad9ac-ca11-4d7f-b\",\"name\":\"Testf3cad9ac-ca11-4d7f-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T23:08:24.6260425Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T23:08:24.6260425Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf3cad9ac-ca11-4d7f-b.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste9a0e6f6-8315-4f4e-a\",\"name\":\"Teste9a0e6f6-8315-4f4e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T17:19:54.9641644Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T17:19:54.9641644Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvgzgtcyb0f0bcbr.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/c052301\",\"name\":\"c052301\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-23T21:50:04.9325652Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-23T21:50:04.9325652Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cuh0cya8geb3e5er.api.cac001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test74a6af4b-e408-4a48-b\",\"name\":\"Test74a6af4b-e408-4a48-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-08T12:24:51.824032Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-08T12:24:51.824032Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://awhcasf8c9defuex.api.cac001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/contoso\",\"name\":\"contoso\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-11T01:15:32.4282974Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-16T01:24:44.0721271Z\"},\"identity\":{\"principalId\":\"bb138c5e-1f10-4af5-8f8c-b5900ee6c028\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d0gufsabftehaafy.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd00ec2e0-d149-486c-8\",\"name\":\"Testd00ec2e0-d149-486c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-14T19:56:59.5837521Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-14T19:56:59.5837521Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hwcaakcmc5b0gqfu.api.cac001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75c4f4f7-e747-40d7-b\",\"name\":\"Test75c4f4f7-e747-40d7-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-23T09:19:32.7259893Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-23T09:19:32.7259893Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hgcxhrf6cvgzgvbk.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsoncac\",\"name\":\"jovinsoncac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T00:33:24.6944776Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T18:44:08.4356876Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d0bfayg0ezfnhchn.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7376b54d-00bb-404a-a\",\"name\":\"Test7376b54d-00bb-404a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-10T05:21:32.7798717Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-10T05:21:32.7798717Z\"},\"identity\":{\"principalId\":\"462a8c95-b62b-4eda-9347-fea1340533fc\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":null,\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac2\",\"name\":\"plval0809cac2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T18:18:27.2675958Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-10T18:18:27.2675958Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ajgqfsf9a8dgfvbc.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac2/privateEndpointConnections/testcac.b6b70409-687b-4feb-8e1b-9b0c00232a13\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testcac\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cac0813\",\"name\":\"cac0813\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-13T23:52:55.8307582Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-13T23:52:55.8307582Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e8gnakgpd7ghdmd3.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cac0813/privateEndpointConnections/pl-in-wus2-for-cac.063e5043-24ca-487c-ad39-cc26aa507a42\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-in-wus2-for-cac\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809cac\",\"name\":\"plval0809cac\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-10T05:43:37.8772867Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T01:29:19.7481984Z\"},\"identity\":{\"principalId\":\"d52e151e-d189-4586-8a21-3c6d6b82608b\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoodeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-asmahmoodeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h3bvakc4esfwhudx.api.cac001.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/plval0809cac/privateEndpointConnections/testmove.a9247899-9665-43d8-accb-3b5bd8f51977\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testmove\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test38aa4849-70f1-457f-9\",\"name\":\"Test38aa4849-70f1-457f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"canadacentral\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-09-27T04:02:53.1118952Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-27T04:02:53.1118952Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f9fme8cffdgyh8dq.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac-pl\",\"name\":\"syntheticscac-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"Canada Central\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T20:21:54.6470188Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:21:54.6470188Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://guewfrfee0bth4bq.api.cac001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscac-pl/privateEndpointConnections/pe-syntheticscac-pl.fbc886dc-b7a0-4c9d-ad6d-ab497de44e33\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscac-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks-pl\",\"name\":\"syntheticsuks-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"UK South\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-02T11:41:59.3973637Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:41:59.3973637Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fwhydne8fdbrfrg7.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks-pl/privateEndpointConnections/pe-syntheticsuks-pl.ae3f666c-dce1-4e29-8dc6-6f7005c4be59\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticsuks-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test50da495d-d139-4adb-9\",\"name\":\"Test50da495d-d139-4adb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-09T15:30:21.7885277Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-09T15:30:21.7885277Z\"},\"identity\":{\"principalId\":\"17cde715-3f38-4979-b34a-9b118e239f5d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcgpfrfbd9a0hrhz.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test10a21a5e-f0f5-4167-a\",\"name\":\"Test10a21a5e-f0f5-4167-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-09T18:19:30.3378838Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-09T18:19:30.3378838Z\"},\"identity\":{\"principalId\":\"9bfce899-2b8e-4c56-aa44-cb7087d29eeb\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://cmfggnf6ahbedcg3.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6edfe863-0bd7-40d2-b\",\"name\":\"Test6edfe863-0bd7-40d2-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-19T00:34:18.8578543Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-19T00:34:18.8578543Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a2azawg2hxh6bwf7.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeiduks022601\",\"name\":\"testdeiduks022601\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-02-26T03:21:53.3851448Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-02-26T03:21:53.3851448Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeiduks022601.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticsuks\",\"name\":\"syntheticsuks\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-02-26T17:46:58.9333107Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-02T11:41:45.7581489Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticsuks.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3d88a515-d60b-4703-a\",\"name\":\"Test3d88a515-d60b-4703-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T00:20:52.4814496Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T00:20:52.4814496Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3d88a515-d60b-4703-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ba1db05-66af-48ba-a\",\"name\":\"Test5ba1db05-66af-48ba-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:09:09.8063221Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:09:09.8063221Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5ba1db05-66af-48ba-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf18e9bc0-59be-4369-a\",\"name\":\"Testf18e9bc0-59be-4369-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:50:52.7531111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:50:52.7531111Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf18e9bc0-59be-4369-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste4c0a9ae-e437-4e53-8\",\"name\":\"Teste4c0a9ae-e437-4e53-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T03:40:52.9722546Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T03:40:52.9722546Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste4c0a9ae-e437-4e53-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92f14301-de10-485d-8\",\"name\":\"Test92f14301-de10-485d-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:19:09.9377812Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:19:09.9377812Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test92f14301-de10-485d-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test67f1b55a-e123-411f-9\",\"name\":\"Test67f1b55a-e123-411f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:40:53.8336883Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:40:53.8336883Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test67f1b55a-e123-411f-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test80fc6be1-06ed-4f72-b\",\"name\":\"Test80fc6be1-06ed-4f72-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:09:10.0735771Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:09:10.0735771Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test80fc6be1-06ed-4f72-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d69a0eb-c729-4a0c-8\",\"name\":\"Test6d69a0eb-c729-4a0c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:10:54.531239Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:10:54.531239Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test6d69a0eb-c729-4a0c-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8e3398a8-6bc2-42c3-9\",\"name\":\"Test8e3398a8-6bc2-42c3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:20:55.315193Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:20:55.315193Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test8e3398a8-6bc2-42c3-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf8b49b46-e5c2-4c94-b\",\"name\":\"Testf8b49b46-e5c2-4c94-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T06:40:55.2306005Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T06:40:55.2306005Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf8b49b46-e5c2-4c94-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c8394b6-3dc3-4140-9\",\"name\":\"Test4c8394b6-3dc3-4140-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T08:09:10.5504903Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T08:09:10.5504903Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test4c8394b6-3dc3-4140-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4b02e0b7-6770-433e-b\",\"name\":\"Test4b02e0b7-6770-433e-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:19:10.6554416Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:19:10.6554416Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test4b02e0b7-6770-433e-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5ec15027-e591-4627-9\",\"name\":\"Test5ec15027-e591-4627-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:20:56.2812694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:20:56.2812694Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5ec15027-e591-4627-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test39c6475a-f8e4-4af6-a\",\"name\":\"Test39c6475a-f8e4-4af6-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T10:50:56.3741348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T10:50:56.3741348Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test39c6475a-f8e4-4af6-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc8ad4567-533a-4ce8-9\",\"name\":\"Testc8ad4567-533a-4ce8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T13:29:10.5194548Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T13:29:10.5194548Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc8ad4567-533a-4ce8-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa3b87661-7164-420b-a\",\"name\":\"Testa3b87661-7164-420b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T14:29:11.0114811Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T14:29:11.0114811Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testa3b87661-7164-420b-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb1f5a668-d4bf-46c0-a\",\"name\":\"Testb1f5a668-d4bf-46c0-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T16:10:58.9386977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T16:10:58.9386977Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testb1f5a668-d4bf-46c0-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaf570861-5083-4b08-8\",\"name\":\"Testaf570861-5083-4b08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T17:10:59.5199062Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T17:10:59.5199062Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testaf570861-5083-4b08-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf9809517-bd2a-4a85-a\",\"name\":\"Testf9809517-bd2a-4a85-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T18:21:00.1198972Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T18:21:00.1198972Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testf9809517-bd2a-4a85-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testceb3c51e-c97e-4036-a\",\"name\":\"Testceb3c51e-c97e-4036-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T18:51:00.9735653Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T18:51:00.9735653Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testceb3c51e-c97e-4036-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test41e236dc-2118-4148-b\",\"name\":\"Test41e236dc-2118-4148-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T20:19:10.7686625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T20:19:10.7686625Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test41e236dc-2118-4148-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test42c68520-0d29-4fda-9\",\"name\":\"Test42c68520-0d29-4fda-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T20:39:10.6042131Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T20:39:10.6042131Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test42c68520-0d29-4fda-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5f0f9b1b-e3f6-4543-b\",\"name\":\"Test5f0f9b1b-e3f6-4543-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T21:01:01.2975633Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T21:01:01.2975633Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5f0f9b1b-e3f6-4543-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9b9a0260-5400-4dd1-9\",\"name\":\"Test9b9a0260-5400-4dd1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T21:21:00.992689Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T21:21:00.992689Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test9b9a0260-5400-4dd1-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc5af0427-b99b-41bb-8\",\"name\":\"Testc5af0427-b99b-41bb-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:29:11.3443757Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:29:11.3443757Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc5af0427-b99b-41bb-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcf8556e6-f2a0-4b12-b\",\"name\":\"Testcf8556e6-f2a0-4b12-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T22:31:01.9937927Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T22:31:01.9937927Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testcf8556e6-f2a0-4b12-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd6c86137-5f31-4b4f-a\",\"name\":\"Testd6c86137-5f31-4b4f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T23:21:02.5314215Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T23:21:02.5314215Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testd6c86137-5f31-4b4f-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test746d3a9e-cf75-4eab-b\",\"name\":\"Test746d3a9e-cf75-4eab-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:19:10.8767157Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:19:10.8767157Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test746d3a9e-cf75-4eab-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test45a63904-b7fc-41ac-8\",\"name\":\"Test45a63904-b7fc-41ac-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T00:29:10.9908989Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T00:29:10.9908989Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test45a63904-b7fc-41ac-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa37ff03f-594e-4639-9\",\"name\":\"Testa37ff03f-594e-4639-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T01:11:03.4663176Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T01:11:03.4663176Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testa37ff03f-594e-4639-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3d03640f-d1d3-46de-9\",\"name\":\"Test3d03640f-d1d3-46de-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:39:10.8625319Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:39:10.8625319Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3d03640f-d1d3-46de-9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test591ad95a-c223-4b08-8\",\"name\":\"Test591ad95a-c223-4b08-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T02:41:04.1150678Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T02:41:04.1150678Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test591ad95a-c223-4b08-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5dcea7f4-d323-45a9-b\",\"name\":\"Test5dcea7f4-d323-45a9-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T03:29:11.4528903Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T03:29:11.4528903Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5dcea7f4-d323-45a9-b.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test92cfa1b9-9151-4b89-8\",\"name\":\"Test92cfa1b9-9151-4b89-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T04:51:05.074173Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T04:51:05.074173Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test92cfa1b9-9151-4b89-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test95987d55-100c-43d8-8\",\"name\":\"Test95987d55-100c-43d8-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T05:31:05.7753462Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T05:31:05.7753462Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test95987d55-100c-43d8-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste5dfad94-0de5-455c-a\",\"name\":\"Teste5dfad94-0de5-455c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T06:29:11.6867739Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T06:29:11.6867739Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Teste5dfad94-0de5-455c-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9a4d97b4-d5f3-42e4-a\",\"name\":\"Test9a4d97b4-d5f3-42e4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T07:09:11.8674261Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T07:09:11.8674261Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test9a4d97b4-d5f3-42e4-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc3805fea-9033-4b98-8\",\"name\":\"Testc3805fea-9033-4b98-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T10:31:07.5462811Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T10:31:07.5462811Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc3805fea-9033-4b98-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7125cf10-0ac8-4bf9-a\",\"name\":\"Test7125cf10-0ac8-4bf9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:41:08.3309937Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:41:08.3309937Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test7125cf10-0ac8-4bf9-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5d26c847-6613-40f2-8\",\"name\":\"Test5d26c847-6613-40f2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T12:49:11.7472977Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T12:49:11.7472977Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test5d26c847-6613-40f2-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3f4bf4b0-ba09-480e-a\",\"name\":\"Test3f4bf4b0-ba09-480e-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T13:49:11.9394943Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T13:49:11.9394943Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test3f4bf4b0-ba09-480e-a.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc501e94f-d1e5-41c2-8\",\"name\":\"Testc501e94f-d1e5-41c2-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-14T14:41:08.9028567Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-14T14:41:08.9028567Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc501e94f-d1e5-41c2-8.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc76a0899-5149-4990-9\",\"name\":\"Testc76a0899-5149-4990-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-03T09:43:58.6456183Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-03T09:43:58.6456183Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmdea3e3e4fuexd6.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9edb5065-a37f-4251-9\",\"name\":\"Test9edb5065-a37f-4251-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-03T12:03:58.2570665Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-03T12:03:58.2570665Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eaaaaze7hmawb6dz.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test537b661d-5b25-4b05-a\",\"name\":\"Test537b661d-5b25-4b05-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-09T11:35:15.9950351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-09T11:35:15.9950351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ftcyfjasg0cyhuac.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test58fb831b-3206-4d1c-8\",\"name\":\"Test58fb831b-3206-4d1c-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-09T13:55:16.6422517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-09T13:55:16.6422517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gpfdghashmfqevgm.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test78efa6a0-01f3-4805-a\",\"name\":\"Test78efa6a0-01f3-4805-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T07:54:14.6339935Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T07:54:14.6339935Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvc8dbhqf7cxd8c9.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfcc689cc-63de-4471-8\",\"name\":\"Testfcc689cc-63de-4471-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-15T10:24:17.1738232Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-15T10:24:17.1738232Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d4aycyfehvhbfqcs.api.uks001.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa59884e6-b0f3-4768-9\",\"name\":\"Testa59884e6-b0f3-4768-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-22T15:38:28.3543348Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-22T15:38:28.3543348Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://b3chdfdqe3dph4he.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":null}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.HealthDataAIServices/deidServices/deidService756\",\"name\":\"deidService756\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-29T18:57:54.0556359Z\",\"lastModifiedBy\":\"gthomas@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-29T18:57:54.0556359Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dndqcbaxfngdh3be.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.HealthDataAIServices/deidServices/deidService756/privateEndpointConnections/deid-pe-6242.f8d562cf-4796-40df-84a1-e911f4cf8119\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/testRg9289/providers/Microsoft.Network/privateEndpoints/deid-pe-6242\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Pending\",\"description\":\"SDK test\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6c445d05-8a04-40d1-9\",\"name\":\"Test6c445d05-8a04-40d1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T20:18:08.8233351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T20:18:08.8233351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9fme0cmfycxcyda.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test667df1aa-2ea2-4184-9\",\"name\":\"Test667df1aa-2ea2-4184-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T20:24:41.4000305Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T20:24:41.4000305Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://huchfaeuhrhuf3bu.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd42eca40-d463-41f3-9\",\"name\":\"Testd42eca40-d463-41f3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T21:26:50.9377625Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-06T21:26:50.9377625Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://bkbvcmbkcraecyfw.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8aa6c493-0cc1-4566-9\",\"name\":\"Test8aa6c493-0cc1-4566-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-06T22:29:21.7100366Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-25T19:32:08.0474887Z\"},\"identity\":{\"principalId\":\"0d71e7bd-429f-4c3c-82a6-3852d3b8e3a5\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aybnbyavd2ejhzfd.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3e530210-4444-43a1-9\",\"name\":\"Test3e530210-4444-43a1-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T10:56:57.0258009Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T10:56:57.0258009Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://fwfch8gde3gvbwhz.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa8051ac4-966b-4183-8\",\"name\":\"Testa8051ac4-966b-4183-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-07T17:13:31.2614966Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-07T17:13:31.2614966Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://d7cwffedg0d2a5a6.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test40eea777-40b0-4680-b\",\"name\":\"Test40eea777-40b0-4680-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-08-09T07:53:34.2437985Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-08-09T07:53:34.2437985Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://byg5frajbxhfdcf6.api.uks001.deid.azure.com\",\"privateEndpointConnections\":null,\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809\",\"name\":\"plval0809\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T17:33:06.4759332Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-12T19:22:00.4727578Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d9dfeaajhcafe7aw.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809/privateEndpointConnections/pl-uks.024e1c37-90f0-4d5e-8d16-8801adc29384\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-uks\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809dis2\",\"name\":\"plval0809dis2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:09:47.4289174Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:27:25.7954862Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://avesemfzbecrdjc4.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809dis2/privateEndpointConnections/plval0809dis2-pe.f950a94c-5b4b-4a31-bdee-e459f933aea9\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/plval0809dis2-pe\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/jovinson/providers/Microsoft.HealthDataAIServices/DeidServices/jovinsonuks\",\"name\":\"jovinsonuks\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"uksouth\",\"tags\":{},\"systemData\":{\"createdBy\":\"jovinson@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-15T16:09:58.6334969Z\",\"lastModifiedBy\":\"jovinson@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-15T16:09:58.6334969Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dhdqagccangwhcdk.api.uks001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test\",\"name\":\"test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-07T20:05:42.8384639Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-07T20:05:42.8384639Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0926v1\",\"name\":\"test0926v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T02:45:59.3438672Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T02:45:59.3438672Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0926v1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0926v2\",\"name\":\"test0926v2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T02:47:31.7472967Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T02:47:31.7472967Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0926v2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0927\",\"name\":\"test0927\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-27T16:46:05.2162306Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-27T16:46:05.2162306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0927.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0928\",\"name\":\"test0928\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-28T17:38:42.3842671Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-28T17:38:42.3842671Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0928.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0928v2\",\"name\":\"test0928v2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-28T17:57:11.4511743Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-28T17:57:11.4511743Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test0928v2.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1002\",\"name\":\"test1002\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-02T13:13:48.4976059Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-02T13:13:48.4976059Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1002.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test123\",\"name\":\"test123\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-03T20:40:59.3297043Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-03T20:40:59.3297043Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test123.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test1\",\"name\":\"test1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-10-26T20:24:59.1914056Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-10-26T20:25:37.9297376Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://test1.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchaoeus2euap1207\",\"name\":\"testcchaoeus2euap1207\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-07T21:59:57.2279724Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-07T21:59:57.2279724Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchaoeus2euap1207.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testcchaoeuap1212\",\"name\":\"testcchaoeuap1212\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-12T18:33:15.9987695Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-12-12T18:33:15.9987695Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testcchaoeuap1212.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny\",\"name\":\"syntheticscny\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-12-21T19:45:57.5795884Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:16:39.1087058Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://syntheticscny.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscny\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny/privateEndpointConnections/pe-syntheticscny.9884c0cc-4d3b-43ae-a149-b37abf040780\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/deid0921\",\"name\":\"deid0921\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-09-21T22:11:25.2178241Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-09-21T22:11:25.2178241Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://deid0921.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanistesting2024\",\"name\":\"daszanistesting2024\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-03T16:17:22.3144659Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-03T16:17:22.3144659Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanistesting2024.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis202402\",\"name\":\"daszanis202402\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-03T18:11:45.7645355Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-03T18:11:45.7645355Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanis202402.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240404\",\"name\":\"testdeid20240404\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-04T21:33:53.4405002Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-04T21:33:53.4405002Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeid20240404.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240405\",\"name\":\"testdeid20240405\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-05T17:21:33.6289145Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-05T17:21:33.6289145Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://testdeid20240405.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test689709c7-09b1-47ca-8\",\"name\":\"Test689709c7-09b1-47ca-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-12T23:56:49.2787259Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-12T23:56:49.2787259Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test689709c7-09b1-47ca-8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test773f4669-3a29-49fc-a\",\"name\":\"Test773f4669-3a29-49fc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:06:49.801438Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:06:49.801438Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test773f4669-3a29-49fc-a.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfb939892-2d36-4af1-b\",\"name\":\"Testfb939892-2d36-4af1-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:55:16.2530902Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:55:16.2530902Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testfb939892-2d36-4af1-b.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test636a77c6-bb93-4c48-9\",\"name\":\"Test636a77c6-bb93-4c48-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T01:56:49.9404785Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T01:56:49.9404785Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test636a77c6-bb93-4c48-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc469c263-d5cf-48a9-9\",\"name\":\"Testc469c263-d5cf-48a9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:55:16.4535138Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:55:16.4535138Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testc469c263-d5cf-48a9-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testeabc36c7-733c-4eb8-a\",\"name\":\"Testeabc36c7-733c-4eb8-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T02:56:50.448085Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T02:56:50.448085Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testeabc36c7-733c-4eb8-a.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testec267f69-a8bf-4575-8\",\"name\":\"Testec267f69-a8bf-4575-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-13T04:05:17.4033647Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-13T04:05:17.4033647Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Testec267f69-a8bf-4575-8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test86a1c01e-27ca-4506-9\",\"name\":\"Test86a1c01e-27ca-4506-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-16T18:46:56.1179547Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-16T18:46:56.1179547Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://Test86a1c01e-27ca-4506-9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240416\",\"name\":\"daszanis20240416\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-16T20:36:46.8661158Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-16T20:36:46.8661158Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daszanis20240416.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/c041601\",\"name\":\"c041601\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-17T00:47:59.1402568Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-15T00:45:17.1793437Z\"},\"identity\":{\"principalId\":\"6e539289-0cfc-471c-9bcb-cbc69a2cee57\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gwfqcrezeqafatg4.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd7b005bb-5337-42a9-8\",\"name\":\"Testd7b005bb-5337-42a9-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T00:56:03.5007718Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T00:56:03.5007718Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b5gvggdnd6btcrf4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3abb1b75-72ca-4dc3-9\",\"name\":\"Test3abb1b75-72ca-4dc3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:06:55.6174028Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:06:55.6174028Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://htaacnh7dndrffgt.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbfdd288c-7fea-48ec-9\",\"name\":\"Testbfdd288c-7fea-48ec-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:36:55.8693213Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:36:55.8693213Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g3bra2a4bfbzhwh4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5dcc63e3-df2e-4516-9\",\"name\":\"Test5dcc63e3-df2e-4516-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T07:46:55.7630063Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T07:46:55.7630063Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzb4ftfmcqg7cahr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test789c6bc9-679b-46ff-a\",\"name\":\"Test789c6bc9-679b-46ff-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T08:26:06.1766861Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T08:26:06.1766861Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dzc8h7hehfhze6ey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa6980ee4-2421-497e-9\",\"name\":\"Testa6980ee4-2421-497e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T14:26:55.3211498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T14:26:55.3211498Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpfmddfnd6c7d0ff.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test53bbe941-ecf8-4e64-8\",\"name\":\"Test53bbe941-ecf8-4e64-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-17T17:46:12.2182371Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-17T17:46:12.2182371Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bjfmhzh8anhuacge.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test60cbbac8-cf49-46cd-a\",\"name\":\"Test60cbbac8-cf49-46cd-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T01:16:55.472584Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T01:16:55.472584Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hpe8hrhfd0f0bugm.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9ef5b7ba-12f1-451e-8\",\"name\":\"Test9ef5b7ba-12f1-451e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T05:46:17.5183098Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T05:46:17.5183098Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cxhah8g2ezexa9c3.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test684f4d00-b1d3-418b-b\",\"name\":\"Test684f4d00-b1d3-418b-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T06:16:56.4082904Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T06:16:56.4082904Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b2hdb3gtb7edawe4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf66e2fb8-fe37-464c-a\",\"name\":\"Testf66e2fb8-fe37-464c-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T12:56:55.427874Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T12:56:55.427874Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dvf0dufdbud8g7ec.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testa69c6c6a-1c54-43a7-9\",\"name\":\"Testa69c6c6a-1c54-43a7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-18T15:26:56.3308432Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-18T15:26:56.3308432Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hahca8czaahfayeb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-cchao-deiddev-007/providers/Microsoft.HealthDataAIServices/DeidServices/c041801\",\"name\":\"c041801\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"cchao@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-18T19:34:43.4241066Z\",\"lastModifiedBy\":\"cchao@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-18T19:34:43.4241066Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hshae9gwhudke2bd.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0419\",\"name\":\"test0419\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-19T16:55:49.9694669Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-19T16:55:49.9694669Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efhwdwdkdxhzd3cr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/test0423\",\"name\":\"test0423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T18:48:50.4444369Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cwg6c8hnamdfd2fw.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240423\",\"name\":\"daszanis20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T20:16:50.967515Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T20:16:50.967515Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aygfhrgyf3dddwd4.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanisstringtest\",\"name\":\"daszanisstringtest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T20:48:07.9822169Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T20:48:07.9822169Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f3eqhthegcbebda8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/deidwithtags20240423\",\"name\":\"deidwithtags20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"test\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T21:25:59.6619497Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T21:26:34.327989Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fhfga7e0fkhgcqc0.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/danitagtest20240423\",\"name\":\"danitagtest20240423\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"NonProd\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-23T22:19:45.4929556Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-23T22:19:45.4929556Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dbhmh3anfxgwddey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test774a83ad-b850-4275-a\",\"name\":\"Test774a83ad-b850-4275-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-25T16:07:44.1772498Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-25T16:07:44.1772498Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gshxbph2gnh6bect.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240425\",\"name\":\"daszanis20240425\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-25T17:52:29.0785344Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-25T17:52:29.0785344Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hubfd9fxc4btcybf.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6dc7b759-44c6-40bb-a\",\"name\":\"Test6dc7b759-44c6-40bb-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-04-26T00:37:48.5866059Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-04-26T00:37:48.5866059Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gkg0gmedgtfcaaba.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/testdeid20240430\",\"name\":\"testdeid20240430\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"env\":\"prod\"},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-04-30T22:59:53.7170445Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-04-30T22:59:53.7170445Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dtbafdemctajayg8.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoo-deid/providers/Microsoft.HealthDataAIServices/DeidServices/testresource\",\"name\":\"testresource\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-09T04:00:42.7519139Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-09T04:00:42.7519139Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hzaxc2cmgnh4fpcz.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test8c26233c-3784-4c58-9\",\"name\":\"Test8c26233c-3784-4c58-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-13T07:38:19.1922537Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-13T07:38:19.1922537Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://a4cwbhcsf4dqcbdb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3cd577fe-ccf5-47bd-9\",\"name\":\"Test3cd577fe-ccf5-47bd-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-14T18:40:35.8341966Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-14T18:40:35.8341966Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aka6fgfcdcdjgqcp.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testadeb2e2d-3427-4166-a\",\"name\":\"Testadeb2e2d-3427-4166-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-15T00:58:27.3004666Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-15T00:58:27.3004666Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bvdtcuagdsbkabcr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test600d8e71-b5c7-414a-b\",\"name\":\"Test600d8e71-b5c7-414a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T17:20:56.3643351Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T17:20:56.3643351Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gtd0g3d0hpf0cqau.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6a3294b5-2a1e-4504-9\",\"name\":\"Test6a3294b5-2a1e-4504-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T19:20:58.1160517Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T19:20:58.1160517Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dba6b5hxdwadf7ah.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3845680e-e8ad-45e7-8\",\"name\":\"Test3845680e-e8ad-45e7-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T21:51:33.7943111Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T21:51:33.7943111Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4c32fecf-8010-484f-a\",\"name\":\"Test4c32fecf-8010-484f-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-16T21:54:45.3278696Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-16T21:54:45.3278696Z\"},\"identity\":{\"principalId\":\"e8302371-66e9-425c-87bf-3c8f0d76ad47\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfe015d69-5e8e-4db9-9\",\"name\":\"Testfe015d69-5e8e-4db9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T01:11:02.9479853Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T01:11:02.9479853Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://anc8cbgmgzdreuey.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test51eb2ea0-227c-4a00-8\",\"name\":\"Test51eb2ea0-227c-4a00-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T01:28:31.9856996Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T01:28:31.9856996Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fjfkeqgvahfndzeh.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7783075a-2910-462c-b\",\"name\":\"Test7783075a-2910-462c-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T02:08:32.7778744Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T02:08:32.7778744Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hgc0ead5htc3e6fp.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3af887a9-3bc4-41cd-8\",\"name\":\"Test3af887a9-3bc4-41cd-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-17T18:51:11.6799956Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-17T18:51:11.6799956Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://daf7ejf0bnehbjc7.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9c0b39d6-d6aa-475f-9\",\"name\":\"Test9c0b39d6-d6aa-475f-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-18T04:28:33.9687313Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-18T04:28:33.9687313Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gxh8acacatddbdcd.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9dbf2336-b2ec-4338-b\",\"name\":\"Test9dbf2336-b2ec-4338-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-22T05:31:32.0845694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-22T05:31:32.0845694Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://chfudxeygvc7dxau.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522\",\"name\":\"daszanis20240522\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T20:49:06.0137785Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T20:49:06.0137785Z\"},\"identity\":{\"principalId\":\"8110cbfe-f3ad-4a49-997b-d4eb60ddee10\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-dogfood/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-prtl-storagedogfood\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://cpfbe0buawc9ftcr.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste0dc89e3-c33e-4ae3-a\",\"name\":\"Teste0dc89e3-c33e-4ae3-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-22T20:59:13.3299697Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-22T20:59:13.3299697Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fbcadra9e5c8embk.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522test\",\"name\":\"daszanis20240522test\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T21:36:43.3944001Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T21:36:43.3944001Z\"},\"identity\":{\"principalId\":\"9b38fc08-1656-443d-8821-d4c7d94ee1f0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-deid-test\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hcbjdwagemhfg5an.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/daszanis20240522nomi\",\"name\":\"daszanis20240522nomi\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"daszanis@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-05-22T21:40:05.1624641Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-05-22T21:40:42.4963112Z\"},\"identity\":{\"principalId\":\"7feeda4e-c86d-4b99-a042-36c343485c8f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hybhfjg9avchasbw.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf90a630b-a35d-4f9b-a\",\"name\":\"Testf90a630b-a35d-4f9b-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-23T18:46:45.7957393Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-23T18:46:45.7957393Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://csh6hza0gdf2d0dj.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testca65b6d3-2a97-48cf-a\",\"name\":\"Testca65b6d3-2a97-48cf-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-23T18:51:40.8224467Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-23T18:51:40.8224467Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://apf5cvckc2dqh2cg.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaab13d0d-8125-49de-9\",\"name\":\"Testaab13d0d-8125-49de-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-26T21:42:21.8688923Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-26T21:42:21.8688923Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://a9ckf5dddcc7h4fb.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test827e783b-9474-4462-9\",\"name\":\"Test827e783b-9474-4462-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-28T18:50:04.3557874Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-28T18:50:04.3557874Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvdkfqeye2hjgcaq.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdd829060-0f10-41fd-8\",\"name\":\"Testdd829060-0f10-41fd-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T19:41:38.6128968Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T19:41:38.6128968Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf809b7a-8c49-44eb-9\",\"name\":\"Testbf809b7a-8c49-44eb-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T20:33:58.7936914Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T20:33:58.7936914Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6d161887-93d9-4323-b\",\"name\":\"Test6d161887-93d9-4323-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T21:51:38.5411648Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T21:51:38.5411648Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test891681e9-196d-40ae-9\",\"name\":\"Test891681e9-196d-40ae-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T22:31:38.6737266Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T22:31:38.6737266Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test89d7cdb6-6940-42ed-a\",\"name\":\"Test89d7cdb6-6940-42ed-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T22:51:39.0104824Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T22:51:39.0104824Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb2891ee5-e88b-43ac-8\",\"name\":\"Testb2891ee5-e88b-43ac-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T23:11:39.1197957Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T23:11:39.1197957Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test80079631-0116-43da-9\",\"name\":\"Test80079631-0116-43da-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-30T23:31:39.090987Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-30T23:31:39.090987Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6ba2a676-2516-4029-b\",\"name\":\"Test6ba2a676-2516-4029-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T00:03:59.7132209Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T00:03:59.7132209Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testd4f69f23-cb37-4705-b\",\"name\":\"Testd4f69f23-cb37-4705-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T01:43:59.5879161Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T01:43:59.5879161Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test3374b9b3-03d4-4ee3-8\",\"name\":\"Test3374b9b3-03d4-4ee3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:25:15.2694455Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:25:15.2694455Z\"},\"identity\":{\"principalId\":\"2fb528ba-b590-4e27-94e8-39661649c648\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcd109a6d-d21f-4c30-9\",\"name\":\"Testcd109a6d-d21f-4c30-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:31:38.9365402Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:31:38.9365402Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdb7bce88-b82f-4ec7-9\",\"name\":\"Testdb7bce88-b82f-4ec7-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T02:41:39.530014Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T02:41:39.530014Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test347eea87-86a1-4c6e-8\",\"name\":\"Test347eea87-86a1-4c6e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T03:31:38.9037178Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T03:31:38.9037178Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test753a4b03-f443-4738-8\",\"name\":\"Test753a4b03-f443-4738-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T03:51:39.1294278Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T03:51:39.1294278Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7c255c37-cbb6-455b-9\",\"name\":\"Test7c255c37-cbb6-455b-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T04:22:54.0101005Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T04:22:54.0101005Z\"},\"identity\":{\"principalId\":\"bea96f89-2aae-4568-b0d6-ff627c028de9\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4b0c1b40-3c3a-4041-9\",\"name\":\"Test4b0c1b40-3c3a-4041-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T05:14:00.4477353Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T05:14:00.4477353Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe23f1c8-b066-4bfd-b\",\"name\":\"Testbe23f1c8-b066-4bfd-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T05:21:39.3794908Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T05:21:39.3794908Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test533d1087-fa1a-4d48-8\",\"name\":\"Test533d1087-fa1a-4d48-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T06:11:39.0430579Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T06:11:39.0430579Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test31016491-cc34-48ee-8\",\"name\":\"Test31016491-cc34-48ee-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T06:31:39.5467214Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T06:31:39.5467214Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb7034b34-8ba1-44cc-a\",\"name\":\"Testb7034b34-8ba1-44cc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:02:54.7424212Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:02:54.7424212Z\"},\"identity\":{\"principalId\":\"cffe13e0-04d4-4265-aad7-edec13a5c537\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testac380ad3-9242-4958-8\",\"name\":\"Testac380ad3-9242-4958-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:21:39.7639298Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:21:39.7639298Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test71fac46b-5c7f-420d-9\",\"name\":\"Test71fac46b-5c7f-420d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T07:54:00.6689223Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T07:54:00.6689223Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb0d61a64-d510-4ef9-a\",\"name\":\"Testb0d61a64-d510-4ef9-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:11:39.8407325Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:11:39.8407325Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test86c726fa-48a5-4a5a-a\",\"name\":\"Test86c726fa-48a5-4a5a-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:24:02.0222694Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:24:02.0222694Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test5980e2bd-03d4-4565-9\",\"name\":\"Test5980e2bd-03d4-4565-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T08:51:39.9126155Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T08:51:39.9126155Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste043c2f4-882f-4552-b\",\"name\":\"Teste043c2f4-882f-4552-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:01:39.6096595Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:01:39.6096595Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test75c11604-1975-45f8-9\",\"name\":\"Test75c11604-1975-45f8-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:24:01.2383064Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:24:01.2383064Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaa6f6641-9ed9-43be-9\",\"name\":\"Testaa6f6641-9ed9-43be-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T09:45:16.617112Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T09:45:16.617112Z\"},\"identity\":{\"principalId\":\"0745d086-db0e-4fb1-95f0-8aebd32ba241\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7198b83b-6b3a-4dc3-8\",\"name\":\"Test7198b83b-6b3a-4dc3-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T10:05:16.8085486Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T10:05:16.8085486Z\"},\"identity\":{\"principalId\":\"e03c7b85-3cc7-42b3-9da7-22dfbbfeaada\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test4030ec65-8515-4a0d-a\",\"name\":\"Test4030ec65-8515-4a0d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T10:12:54.6732148Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T10:12:54.6732148Z\"},\"identity\":{\"principalId\":\"fa1d7f60-3a49-4b2a-bad8-28375a528cb0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcafc9570-2b83-4cce-8\",\"name\":\"Testcafc9570-2b83-4cce-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:01:40.8270471Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:01:40.8270471Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste2df465b-b2ac-496d-b\",\"name\":\"Teste2df465b-b2ac-496d-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:11:39.8547744Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:11:39.8547744Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test76e0e1c1-d5c5-4938-8\",\"name\":\"Test76e0e1c1-d5c5-4938-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T11:21:39.6737222Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T11:21:39.6737222Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf11e191c-b75b-4123-8\",\"name\":\"Testf11e191c-b75b-4123-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T12:54:01.7129779Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T12:54:01.7129779Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc54697fe-46d1-4bb5-a\",\"name\":\"Testc54697fe-46d1-4bb5-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T14:32:54.5977307Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T14:32:54.5977307Z\"},\"identity\":{\"principalId\":\"902b6500-529a-4a15-a5a8-e726a7bb0eb1\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf4e0b6d9-697d-4ad6-b\",\"name\":\"Testf4e0b6d9-697d-4ad6-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:21:40.1775459Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:21:40.1775459Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testdfbed109-a6c5-480a-b\",\"name\":\"Testdfbed109-a6c5-480a-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:31:40.9668291Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:31:40.9668291Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testb5b31ad2-6791-42b0-9\",\"name\":\"Testb5b31ad2-6791-42b0-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T15:32:55.160759Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T15:32:55.160759Z\"},\"identity\":{\"principalId\":\"1bbba220-ae0c-4bfd-952c-f941a0937249\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testcc3925b2-3a24-4ce5-8\",\"name\":\"Testcc3925b2-3a24-4ce5-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T16:24:02.9486206Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T16:24:02.9486206Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testc2e2ef11-b48e-4722-a\",\"name\":\"Testc2e2ef11-b48e-4722-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T18:12:55.747161Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T18:12:55.747161Z\"},\"identity\":{\"principalId\":\"d21101cd-e5c4-4d45-98d9-8846b3d99eab\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbf93ad24-0371-4edc-a\",\"name\":\"Testbf93ad24-0371-4edc-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T18:21:40.4476683Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T18:21:40.4476683Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testf04bf269-e865-4f9f-8\",\"name\":\"Testf04bf269-e865-4f9f-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T19:05:18.7879983Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T19:05:18.7879983Z\"},\"identity\":{\"principalId\":\"6a131146-4e94-453b-abcb-2bc7c24e5f37\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testaa56ce54-d5e3-49a4-a\",\"name\":\"Testaa56ce54-d5e3-49a4-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T20:32:55.8138899Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T20:32:55.8138899Z\"},\"identity\":{\"principalId\":\"5b0586b9-fe11-4d77-ab7a-84e05ea69656\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testfde27719-7f42-4eb3-9\",\"name\":\"Testfde27719-7f42-4eb3-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T20:41:40.2770381Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T20:41:40.2770381Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbb708d2c-7750-490e-9\",\"name\":\"Testbb708d2c-7750-490e-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T21:01:40.4120533Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T21:01:40.4120533Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9f7bb514-95da-4805-b\",\"name\":\"Test9f7bb514-95da-4805-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-05-31T21:11:39.7696278Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-05-31T21:11:39.7696278Z\"},\"properties\":{\"provisioningState\":\"Failed\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl\",\"name\":\"deidServiceTestPl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"tag1\":\"newtag\"},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-03T21:34:12.3839943Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-03T21:34:12.3839943Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://erhdhgfdc7gfbnha.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl/privateEndpointConnections/newPL.205ebeb8-8c5e-4a53-af5e-65a8b1742b6d\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/newPL\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/deidServiceTestPl/privateEndpointConnections/deidprivend.f9aba2fb-1155-47fa-9340-fe3e400bfdb2\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/deidprivend\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-deid-test/providers/Microsoft.HealthDataAIServices/DeidServices/testPL\",\"name\":\"testPL\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-10T21:12:59.6131826Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-10T21:12:59.6131826Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fjbkh4cqdpe8hwet.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/sysAssignedId\",\"name\":\"sysAssignedId\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{\"tag1\":\"newtag\"},\"systemData\":{\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-13T17:37:14.3387424Z\"},\"identity\":{\"principalId\":\"9a1d969f-e6a8-49b4-8b7e-a5433995abb2\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hvadefchfua6ftev.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6321f916-25fb-4fc8-8\",\"name\":\"Test6321f916-25fb-4fc8-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-21T16:40:05.0949754Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-21T16:40:05.0949754Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bdawgsb7hrbbe6bn.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test541e6e55-704c-44f2-a\",\"name\":\"Test541e6e55-704c-44f2-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-22T03:20:10.7601885Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-22T03:20:10.7601885Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://f6akaxfpafdxh0ar.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testPL2\",\"name\":\"testPL2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-06-24T19:33:59.0327006Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-06-24T19:33:59.0327006Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://avazb0ghcmcgakb2.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testPL2/privateEndpointConnections/deidPrivateEndpoint321.96cf71d4-af45-45be-96f2-3d8fc595ca36\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/deidPrivateEndpoint321\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved by johndoe@company.com\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste7a29369-726b-4c84-a\",\"name\":\"Teste7a29369-726b-4c84-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-25T21:20:06.3244568Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-25T21:20:06.3244568Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://c8dagne0d5emhya9.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test7f29e51f-926a-4677-9\",\"name\":\"Test7f29e51f-926a-4677-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-06-25T21:20:30.3680815Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-06-25T21:20:30.3680815Z\"},\"properties\":{\"provisioningState\":\"Failed\",\"serviceUrl\":\"https://hnaze8acb6dvhndg.api.deid.azure.com\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testDeidPlManual\",\"name\":\"testDeidPlManual\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-15T22:24:50.2812382Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-15T22:24:50.2812382Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bzcqfdgrfkg2huhw.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled\",\"name\":\"pltestdisabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T19:16:27.8732354Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fzesd4dfenh6bsd9.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testbe770d1b-6980-4e18-9\",\"name\":\"Testbe770d1b-6980-4e18-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-17T20:23:18.4418245Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-17T20:23:18.4418245Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fad7bjbneth9gzdf.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testcny002\",\"name\":\"testcny002\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-17T21:09:44.1667859Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T21:09:44.1667859Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://efbedbeebubfdebs.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test84095079-4b98-4ec9-9\",\"name\":\"Test84095079-4b98-4ec9-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-17T21:46:16.0393478Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-17T21:46:16.0393478Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f4a5c3deevd3ezf4.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testdeidplauto2\",\"name\":\"testdeidplauto2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-17T22:29:37.8729156Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-17T22:29:37.8729156Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://buf4cndqfaesgtcg.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/testdeidplauto2/privateEndpointConnections/newPLManualTest123.e6577b74-5744-4234-8cf6-111c19d4057e\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/newPLManualTest123\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled2\",\"name\":\"pltestdisabled2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T00:28:31.2703799Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T00:28:31.2703799Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dycxeub6gfbcbzas.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestdisabled3\",\"name\":\"pltestdisabled3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T04:35:01.0885005Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T04:35:01.0885005Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c5cne0gtaxc2dzcx.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/pltestenabled\",\"name\":\"pltestenabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T04:35:32.6234762Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-18T04:53:43.2223465Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gja2azg9bkcmbkgv.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste433caae-9c9b-4c16-b\",\"name\":\"Teste433caae-9c9b-4c16-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T14:37:31.2052991Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:14.3152293Z\"},\"identity\":{\"principalId\":\"1e798ce0-7a7a-4ee3-aa8f-7fc9bb9f707f\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://b9h7b5a2ewg6e5du.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test91886748-2f52-447d-9\",\"name\":\"Test91886748-2f52-447d-9\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T16:26:16.5199502Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-18T16:26:16.5199502Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hqg6h7cqecc0f2fy.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-sdk-dev-gthomas/providers/microsoft.healthdataaiservices/deidservices/deid-sdk-dev-gthomas-eup\",\"name\":\"deid-sdk-dev-gthomas-eup\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"gthomas@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-18T17:13:41.2375465Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-23T00:06:59.7446283Z\"},\"identity\":{\"principalId\":\"0129a479-6294-4906-9e12-2e9e05dbefb7\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dpg2gkb3a2bkfwg3.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Testda62732d-0828-4397-b\",\"name\":\"Testda62732d-0828-4397-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-18T22:17:32.6395661Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:15.9234672Z\"},\"identity\":{\"principalId\":\"ed6bad84-1d9b-43b8-a161-1919e5dc00ed\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmavgea3baddhrgq.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cnydisableddelete\",\"name\":\"cnydisableddelete\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T01:08:30.63945Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T02:27:24.6559072Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://hterfhf2e5aebfgx.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cny002alexa\",\"name\":\"cny002alexa\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T04:45:26.5402585Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T04:45:26.5402585Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d6a3cpanhvekf7d2.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/cny002alexaenabled\",\"name\":\"cny002alexaenabled\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-19T05:04:17.5859606Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-19T05:05:37.6592602Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h2egckfgfpaaeqba.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test6875fb8c-481b-44fb-b\",\"name\":\"Test6875fb8c-481b-44fb-b\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-19T18:07:33.8763819Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-12T16:51:16.6336799Z\"},\"identity\":{\"principalId\":\"41d0b01d-da21-42e0-952b-6d9008ea5bab\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gecxhydbh2cnerdb.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0722\",\"name\":\"test0722\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-22T13:19:49.4618059Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-23T21:20:04.7661563Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h8f6c9axgyanfdaj.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0722/privateEndpointConnections/test0722pl.72fabf6a-01c1-4911-88f5-a96420ceb718\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0722pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Teste1a880c9-e1d7-414e-8\",\"name\":\"Teste1a880c9-e1d7-414e-8\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-07-23T02:15:13.2322497Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-07-23T02:15:13.2322497Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fnhza2e9avd8htep.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa073patch\",\"name\":\"alexa073patch\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-23T18:38:37.804077Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:29:08.1219026Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eqadfygeagdkhygp.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0723\",\"name\":\"test0723\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-23T21:36:14.4676287Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-23T22:14:49.0339527Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brg9dsapavg2c6dk.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0723/privateEndpointConnections/test0723pl.3de8fd1e-d76f-4286-b90e-e4a75d9be521\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0723pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/deidServices/test0725\",\"name\":\"test0725\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-25T21:35:17.4224809Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T22:50:45.2266916Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e5apabg2hnche4bv.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0725auto\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0725/privateEndpointConnections/test0725auto.99c3fb28-c9c2-4764-9754-962a5661c1ff\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.Network/privateEndpoints/test0725manual\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/test-deid-rg/providers/Microsoft.HealthDataAIServices/DeidServices/test0725/privateEndpointConnections/test0725manual.71316cb7-8f96-4078-8b93-1a55acc21f85\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725\",\"name\":\"alexa0725\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-25T23:54:40.0387919Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-25T23:55:33.4079214Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dvc4gmgpfdctc0c3.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725again2\",\"name\":\"alexa0725again2\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-26T00:20:50.7189692Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:27:38.3288062Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://g7d4e7hpdza2hgca.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0725again3\",\"name\":\"alexa0725again3\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-26T00:43:08.1376806Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-26T00:44:02.8776556Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://h5emfaatg3bfefaz.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0729\",\"name\":\"test0729\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-29T13:30:21.5934928Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-16T20:47:56.5044908Z\"},\"identity\":{\"principalId\":\"075c8b2d-a1e2-4948-b9bd-56ae75b0072c\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://bpf6cvhzh7g0h0dj.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0729v1\",\"name\":\"test0729v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T00:22:08.4404723Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-30T16:38:50.1818986Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://and2dtdxgnfcedd0.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/privateendpoint2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0729v1/privateEndpointConnections/privateendpoint2.ffc3ed5a-0f5b-4cd5-acc7-5d417356a16f\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0730v1\",\"name\":\"test0730v1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T16:39:22.9446072Z\",\"lastModifiedBy\":\"daszanis@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-05T23:04:28.1814769Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://ezcfh6hpdjf4e6as.api.deid.azure.com\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0730v1/privateEndpointConnections/test0806.e9cd3a40-e666-4c80-9aea-3d514c9c2bd3\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/test0806\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"\"}}}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0730demo\",\"name\":\"test0730demo\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-07-30T17:14:54.7706591Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-07-30T17:14:54.7706591Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://c6czgkabb6gnh7d9.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801all\",\"name\":\"test0801all\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T00:09:57.9314888Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T00:07:40.714Z\"},\"identity\":{\"principalId\":\"4e596332-04f0-4743-95bf-e9c6ce3c76c0\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://arh2bwaaeqewehhx.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801public\",\"name\":\"test0801public\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T00:58:54.8826933Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-19T00:07:41.903045Z\"},\"identity\":{\"principalId\":\"c6048863-1678-4608-a185-1e2bf49d250e\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://fmdtg3dag0axaxfe.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0801deid\",\"name\":\"test0801deid\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-02T12:24:14.486183Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T18:57:54.0730875Z\"},\"identity\":{\"principalId\":\"38185316-41b3-4dac-b0d9-b19efdb3be99\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-asmahmoodeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-asmahmoodeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f9dybbdshvend4dz.api.deid.azure.com\",\"privateEndpointConnections\":[],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/plval0809euap\",\"name\":\"plval0809euap\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T21:43:51.418236Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-28T16:50:02.1741996Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://eseebtd3ajaxgxh4.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/pl-euap2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.HealthDataAIServices/deidServices/plval0809euap/privateEndpointConnections/pl-euap2.f110014f-e8aa-4917-8663-e2e618c52017\"}],\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0809\",\"name\":\"alexa0809\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-09T22:46:47.3233012Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-08-09T22:46:47.3233012Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvffgqfecnhgaxef.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/alexa0809/privateEndpointConnections/peeuap.5f1a0318-ddf4-40f8-85b8-ce58ee5e85f7\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeuap\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/alexa0809/privateEndpointConnections/peeus0814manual.aeec8437-917c-470b-b148-b344a67efab9\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0814manual\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"approved pe\"}}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/alexa0809/privateEndpointConnections/testpecrossregion.c8058284-0f31-4dd2-838d-7b966c490e9b\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/testpecrossregion\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814\",\"name\":\"test0814\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"EastUS2EUAP\",\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-08-14T20:14:19.4225466Z\",\"lastModifiedBy\":\"da7e5b80-b180-4f49-b2d6-4410703374c5\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-09-30T20:20:46.1466584Z\"},\"identity\":{\"principalId\":\"5d8d9efd-4649-47d5-8a41-46df205b6a9d\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gvbhevf3bwfkg8h7.api.deid.azure.com\",\"privateEndpointConnections\":[{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/peeus0814manual2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/peeus0814manual2.c199e81e-9008-4e36-b847-ba1d0e98a57d\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testpe2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/testpe2.28ca2e9a-5e25-4870-b7af-5529c50605cb\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rp-testing/providers/Microsoft.Network/privateEndpoints/testpl\"},\"privateLinkServiceConnectionState\":{\"status\":\"Rejected\",\"description\":\"reject\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/testpl.068fad0b-c8ac-40d7-a0fb-dccebc629644\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/pev2\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814/privateEndpointConnections/pev2.d875c1a8-f613-49da-ab46-16eaf0b79ba2\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/private-endpoint\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/deidServices/test0814/privateEndpointConnections/private-endpoint.3db275cc-6678-4cde-824f-0cae45812cc7\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/demo0815auto\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/demo0815auto.f290340a-f490-4c8f-b4b7-90b76afe1e12\"},{\"properties\":{\"groupIds\":[\"deid\"],\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.Network/privateEndpoints/demo0815manual\"},\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"\"}},\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-pl-test/providers/Microsoft.HealthDataAIServices/DeidServices/test0814/privateEndpointConnections/demo0815manual.c5c54b02-454f-43ea-8e56-0f054096a405\"}],\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.HealthDataAIServices/DeidServices/msoenntest\",\"name\":\"msoenntest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"msoennichsen@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-19T18:51:13.8508128Z\",\"lastModifiedBy\":\"msoennichsen@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-19T18:57:11.3280852Z\"},\"identity\":{\"principalId\":\"84bdc5ea-f750-44d4-9b6d-bd2af1d6eb37\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned, UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-msoennicdeiddev009/providers/Microsoft.ManagedIdentity/userAssignedIdentities/id-msoennicdeiddev009\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://d5ffdxhkg7aua4g0.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/SwaggerResource\",\"name\":\"SwaggerResource\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-09-24T21:05:12.2878593Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-09-24T21:05:12.2878593Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://gch5gycpe2f6apbb.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny-pl\",\"name\":\"syntheticscny-pl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"East US 2 EUAP\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-01T20:16:50.9705435Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-01T20:16:50.9705435Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://aab7gvc5hkh6ejhz.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.HealthDataAIServices/DeidServices/syntheticscny-pl/privateEndpointConnections/pe-syntheticscny-pl.f8e97798-4c5b-406f-8c4e-692bc6413fa1\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-synthetics/providers/Microsoft.Network/privateEndpoints/pe-syntheticscny-pl\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuap1\",\"name\":\"testeuap1\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-15T21:47:03.1351325Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-15T21:47:03.1351325Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Failed\",\"publicNetworkAccess\":\"Disabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuapfix\",\"name\":\"testeuapfix\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-16T00:04:52.5975153Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-16T00:04:52.5975153Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://e0h7f9cycfhwevg6.api.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"privateEndpointConnections\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/testeuapfix/privateEndpointConnections/plfix.031101be-b2b3-4373-921d-4b0c25d3e530\",\"properties\":{\"privateEndpoint\":{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.Network/privateEndpoints/plfix\"},\"groupIds\":[\"deid\"],\"privateLinkServiceConnectionState\":{\"status\":\"Approved\",\"description\":\"Auto-approved\"}}}]}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.HealthDataAIServices/DeidServices/test1015\",\"name\":\"test1015\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"asmahmoo@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-16T00:09:04.4778867Z\",\"lastModifiedBy\":\"asmahmoo@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-16T00:09:04.4778867Z\"},\"identity\":{\"type\":\"UserAssigned\",\"userAssignedIdentities\":{\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/rg-demo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/deid-identity\":{}}},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://atahbsdcdnahhveq.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-testing/providers/Microsoft.HealthDataAIServices/DeidServices/portalTest\",\"name\":\"portalTest\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-22T05:36:35.3578903Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-22T05:36:35.3578903Z\"},\"identity\":{\"type\":\"None\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://f8gxf3b2g7hgg3h8.api.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/deid-rp-testing/providers/Microsoft.HealthDataAIServices/DeidServices/Test9928c3a0-a032-482d-a\",\"name\":\"Test9928c3a0-a032-482d-a\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2euap\",\"systemData\":{\"createdBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"createdByType\":\"Application\",\"createdAt\":\"2024-10-25T05:12:41.9932126Z\",\"lastModifiedBy\":\"b7e07e25-e7d0-40ec-8046-94279a2b0a38\",\"lastModifiedByType\":\"Application\",\"lastModifiedAt\":\"2024-10-25T05:12:41.9932126Z\"},\"identity\":{\"principalId\":\"8f9fa1f3-ed87-4e5f-8161-f3623dafbfd6\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Accepted\"}}]}", - "isContentBase64": false - } - }, - "Get-AzDeidService+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "c3c6506a-75c5-4777-a24a-0e227bddc63a" ], - "CommandName": [ "Get-AzDeidService" ], - "FullCommandName": [ "Get-AzDeidService_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d01332a-0000-0800-0000-671b27630000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "cf40e5d4-ff55-4573-adac-f4792b7e0638" ], - "x-ms-correlation-request-id": [ "7b2ce591-c6c2-4599-b14b-74d51f6048a7" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051245Z:7b2ce591-c6c2-4599-b14b-74d51f6048a7" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 878956FB99E847B8B0DDEE958B2085C8 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:45Z" ], - "Date": [ "Fri, 25 Oct 2024 05:12:44 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - }, - "Get-AzDeidService+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "24" ], - "x-ms-client-request-id": [ "fed3773a-69ae-4a47-b1bb-54696ac3dc23" ], - "CommandName": [ "Get-AzDeidService" ], - "FullCommandName": [ "Get-AzDeidService_List1" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "a11cd155-1e47-45d9-acf8-c5712f88ebd1" ], - "x-ms-correlation-request-id": [ "708b0e97-9e56-484d-8b03-7b8cb425070e" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051245Z:708b0e97-9e56-484d-8b03-7b8cb425070e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: FA4E22BAB5A14817AB3F897EABC28744 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:45Z" ], - "Date": [ "Fri, 25 Oct 2024 05:12:45 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "2567" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:08:02.7254538Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"name\":\"r0sx7k\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:09:35.4022049Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:09:35.4022049Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://exe5gdfhgwa7d0gm.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}},{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"name\":\"1aue5d\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:11:08.5819378Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:11:08.5819378Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dtf7abbvcnengvfb.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}]}", - "isContentBase64": false - } - }, - "Get-AzDeidService+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "25" ], - "x-ms-client-request-id": [ "dc0544ab-6b49-462e-be07-8cd30887abed" ], - "CommandName": [ "Get-AzDeidService" ], - "FullCommandName": [ "Get-AzDeidService_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d01332a-0000-0800-0000-671b27630000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "4a937a27-01df-4983-b40f-0fed5e0ec606" ], - "x-ms-correlation-request-id": [ "da8f7a2b-4d11-453f-8239-8c1efe601e80" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051245Z:da8f7a2b-4d11-453f-8239-8c1efe601e80" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A6B13F276550466189E0C85BAE58C1A7 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:45Z" ], - "Date": [ "Fri, 25 Oct 2024 05:12:45 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - }, - "Get-AzDeidService+[NoContext]+GetViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "26" ], - "x-ms-client-request-id": [ "d0d4845c-b732-4623-b6b2-75f84d457752" ], - "CommandName": [ "Get-AzDeidService" ], - "FullCommandName": [ "Get-AzDeidService_GetViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d01332a-0000-0800-0000-671b27630000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "05f66dee-6a57-4cdf-9c2d-5cafc79ef7b5" ], - "x-ms-correlation-request-id": [ "b3295913-9773-490e-8eb4-3255fabda4e3" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051246Z:b3295913-9773-490e-8eb4-3255fabda4e3" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: AA8E5DA7ECFA4F9797B31EBA31BA354E Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:45Z" ], - "Date": [ "Fri, 25 Oct 2024 05:12:45 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - } -} \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Tests.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Tests.ps1 deleted file mode 100644 index cda44e916c27..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Get-AzDeidService.Tests.ps1 +++ /dev/null @@ -1,48 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Get-AzDeidService')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Get-AzDeidService.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Get-AzDeidService' { - It 'List' { - { - $config = Get-AzDeidService - $config.Count | Should -BeGreaterThan 0 - } | Should -Not -Throw - } - - It 'Get' { - { - $config = Get-AzDeidService -Name $env.deidServiceName -ResourceGroupName $env.resourceGroupName - $config.Name | Should -Be $env.deidServiceName - } | Should -Not -Throw - } - - It 'List1' { - { - $config = Get-AzDeidService -ResourceGroupName $env.resourceGroupName - $config.Count | Should -BeGreaterThan 0 - $config[0].Name | Should -Not -BeNullOrEmpty - $config[0].ResourceGroupName | Should -Be $env.resourceGroupName - } | Should -Not -Throw - } - - It 'GetViaIdentity' { - { - $config = Get-AzDeidService -Name $env.deidServiceName -ResourceGroupName $env.resourceGroupName - $config2 = Get-AzDeidService -InputObject $config - $config2.Name | Should -Be $env.deidServiceName - } | Should -Not -Throw - } -} diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Recording.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Recording.json deleted file mode 100644 index e7cb692f59cf..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Recording.json +++ /dev/null @@ -1,662 +0,0 @@ -{ - "New-AzDeidService+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e?api-version=2024-02-28-preview", - "Content": "{\n \"location\": \"eastus2\"\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "27" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d0102aa-0000-0800-0000-671b28d30000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "bc36b8ba-1bd0-438e-9ec7-b6476f00eace" ], - "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], - "x-ms-correlation-request-id": [ "8b22f4a8-61c0-41a7-951b-1685d5b7da4f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY" ], - "x-ms-request-id": [ "3da9a22c-6797-43bd-8b6e-c27bd709ea9b" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051251Z:8b22f4a8-61c0-41a7-951b-1685d5b7da4f" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE582D92E67E4BF89571875997C498E4 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:12:49Z" ], - "Date": [ "Fri, 25 Oct 2024 05:12:51 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "526" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e\",\"name\":\"gkan5e\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:12:50.877611Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:12:50.877611Z\"},\"properties\":{\"provisioningState\":\"Accepted\"}}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "28" ], - "x-ms-client-request-id": [ "0d315bd2-6696-40d4-8b2b-958a5f188e7b" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01035e3a-0000-0800-0000-671b28d30000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "2ab52372-c23e-4715-bc73-e979d7587596" ], - "x-ms-correlation-request-id": [ "7d81fa78-f639-4bf5-99b5-87e9813aec04" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051321Z:7d81fa78-f639-4bf5-99b5-87e9813aec04" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4E0BFD1E248F4F2DAF544B5EE474B06C Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:13:21Z" ], - "Date": [ "Fri, 25 Oct 2024 05:13:21 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"name\":\"3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:12:51.1058112Z\"}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "29" ], - "x-ms-client-request-id": [ "0d315bd2-6696-40d4-8b2b-958a5f188e7b" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01035e3a-0000-0800-0000-671b28d30000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "ed4c5640-3882-484e-9ab6-909505a6d287" ], - "x-ms-correlation-request-id": [ "208c2dec-dbcd-46e6-b9e8-825e52c828c6" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051352Z:208c2dec-dbcd-46e6-b9e8-825e52c828c6" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7B87335BC1194B609604900C082CEECE Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:13:52Z" ], - "Date": [ "Fri, 25 Oct 2024 05:13:51 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"name\":\"3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:12:51.1058112Z\"}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0?api-version=2024-02-28-preview\u0026t=638654299717057328\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=Ss2qJmTOAskiKojyx1fP-2DaFnfUC-yw2j6GV07uyMZSZlOO--LyHdmG2tSrz6T2lQsg6wr3z2YfpRDV0kdjCeBhF1WQXXAF-JKhDn2aTAgvHp-DxASfzAtksA0JxDnI8gZ9Bg28Eaao_8C0zh1-2Ppazy1eAZ22pCv_e5-f1vHGICdNzdHfNXDFGStKzz7KV3jvgv7VpaPBNSbGRBaFmXce1aSBVC8Lu3b46lpICr8z-jZqZGNEw8CuWwAdm39cjFGfayEc9Rdnm74evPVeDFtV9Hq4m2sVbE5Iwt3C0XEqiTWzuhbjcLEwWNDO2s681oESGJqsjmLfn6feHVhtAw\u0026h=8W6HvPTko_irhXCrJ06ndjZ575KqYMtBhMZ4ozypFbY", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "30" ], - "x-ms-client-request-id": [ "0d315bd2-6696-40d4-8b2b-958a5f188e7b" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01034146-0000-0800-0000-671b29150000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "da1429dc-f3ac-493e-8e58-fb61d3351765" ], - "x-ms-correlation-request-id": [ "63508029-58bd-4e00-b934-a3584bb14d10" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051422Z:63508029-58bd-4e00-b934-a3584bb14d10" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 550146FE891B4376B674AF7D4E36EFED Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:14:22Z" ], - "Date": [ "Fri, 25 Oct 2024 05:14:21 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "634" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"name\":\"3da9a22c-6797-43bd-8b6e-c27bd709ea9b*F6913930EFD4A2E4D5A294D3B9EC4897955A968B87BC4A07FF114C8C00AA6EE0\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:12:51.1058112Z\",\"endTime\":\"2024-10-25T05:12:58.3820488Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e?api-version=2024-02-28-preview+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "31" ], - "x-ms-client-request-id": [ "0d315bd2-6696-40d4-8b2b-958a5f188e7b" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d013bad-0000-0800-0000-671b28da0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "db44b345-08de-4bc7-b86f-e4cd62cd732a" ], - "x-ms-correlation-request-id": [ "b3b1d049-37bd-47f9-8920-008face08164" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051422Z:b3b1d049-37bd-47f9-8920-008face08164" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1E7DD69F5E6B4BEEB61CE256CA36D085 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:14:22Z" ], - "Date": [ "Fri, 25 Oct 2024 05:14:22 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "636" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/gkan5e\",\"name\":\"gkan5e\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:12:50.877611Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:12:50.877611Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://htfgctaqe2hdbzc2.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k?api-version=2024-02-28-preview", - "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n }\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "100" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d01efcb-0000-0800-0000-671b29300000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "59176c4f-bb56-4d20-8f89-ddc919128aa7" ], - "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], - "x-ms-correlation-request-id": [ "2d7eb40a-0f6b-4a64-bb39-96462d617636" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU" ], - "x-ms-request-id": [ "b373177e-24e5-49ba-a4a6-4b00d98d7c81" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051424Z:2d7eb40a-0f6b-4a64-bb39-96462d617636" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5258D6EF5DD049F383D4994C24B6046C Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:14:22Z" ], - "Date": [ "Fri, 25 Oct 2024 05:14:23 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "560" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k\",\"name\":\"w4xh3k\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:14:23.7394408Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:14:23.7394408Z\"},\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "33" ], - "x-ms-client-request-id": [ "2671325b-3e14-4f47-b24d-c662ff9422cc" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0103aa49-0000-0800-0000-671b29300000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "3afeb277-bed4-4681-b192-e82d46f870ea" ], - "x-ms-correlation-request-id": [ "debdf2df-3cbd-4498-a9a9-4b3a5ce094dd" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051454Z:debdf2df-3cbd-4498-a9a9-4b3a5ce094dd" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 2748C69340224F4BAD6373B37DC86E65 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:14:54Z" ], - "Date": [ "Fri, 25 Oct 2024 05:14:54 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "573" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"name\":\"b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:14:24.0205162Z\"}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "34" ], - "x-ms-client-request-id": [ "2671325b-3e14-4f47-b24d-c662ff9422cc" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0103aa49-0000-0800-0000-671b29300000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "f5c868cf-1726-4cb1-bff8-d76a71e7d959" ], - "x-ms-correlation-request-id": [ "7d08d727-28a1-47b3-8837-9a0303c4a377" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051525Z:7d08d727-28a1-47b3-8837-9a0303c4a377" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6C6A7CAF26194A22B6A353AEC1837D1A Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:15:24Z" ], - "Date": [ "Fri, 25 Oct 2024 05:15:24 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "573" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"name\":\"b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:14:24.0205162Z\"}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184?api-version=2024-02-28-preview\u0026t=638654300645207795\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=aypxUkEssEbJhGDwJMXXvz_erSYcW56y1R76ulrp5MTJ2SR1pEfGN_n5yL1Ot3kck4B_oXQ5T4bUZD7rkD_IcLlqXh_Ed3znT2IwWx2YObIhs_1lSXXb138htA_pHPaLUBysz6tb5HmU2yJPzdJ1dN4gFMnwQD-zcc0C06NPBgqkYQT1i8wDkMHLK1jHVZ0Sjr3DFQaLSiHaXOGySf8ELc0U2n9WhNvYdBLZLcqh-nXqWEcUi4__kBwfb4P31BOpfDQCu1TgqqdFce0hn1G-ezwSyZjaRunVO2FzrVDLwQpPxp9hg0YiVSmaIY76mkjv3G61LWGaaS2YDCHhfB_EAw\u0026h=3mTYWUHS8NwagSqWwowAzEQA4DyjMaj8NsHKPMuXbnU", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "35" ], - "x-ms-client-request-id": [ "2671325b-3e14-4f47-b24d-c662ff9422cc" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0103de52-0000-0800-0000-671b29730000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "852ab49c-1f10-4bec-b5ab-b11ecb7caf3e" ], - "x-ms-correlation-request-id": [ "c27b0231-8bf2-4c0f-8881-406bb27c37bf" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051555Z:c27b0231-8bf2-4c0f-8881-406bb27c37bf" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 0C9FA58F93F24B2FB0D9B33E7E7C6B87 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:15:55Z" ], - "Date": [ "Fri, 25 Oct 2024 05:15:54 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "633" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"name\":\"b373177e-24e5-49ba-a4a6-4b00d98d7c81*7016CC833DA64D74B4660F2ED4D648CEB47D51BA5A6F734555FC4871443EB184\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:14:24.0205162Z\",\"endTime\":\"2024-10-25T05:14:32.2927563Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateViaJsonFilePath+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k?api-version=2024-02-28-preview+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "36" ], - "x-ms-client-request-id": [ "2671325b-3e14-4f47-b24d-c662ff9422cc" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateViaJsonFilePath" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d0140ce-0000-0800-0000-671b29380000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "7da308cd-3165-472d-8111-fb521048fd50" ], - "x-ms-correlation-request-id": [ "e500b2a7-eee4-45c0-aab0-5c0eaa1797ea" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051555Z:e500b2a7-eee4-45c0-aab0-5c0eaa1797ea" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 3E32DF92B1BC4F82A88D13073B5E1DB1 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:15:55Z" ], - "Date": [ "Fri, 25 Oct 2024 05:15:54 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "637" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/w4xh3k\",\"name\":\"w4xh3k\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:14:23.7394408Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:14:23.7394408Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://apbqb6gybtasc5e5.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateViaJsonString+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy?api-version=2024-02-28-preview", - "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Disabled\"\r\n }\r\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "100" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d01fedb-0000-0800-0000-671b298c0000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "daf0add9-84cf-4709-b242-bbb4a4800e6c" ], - "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], - "x-ms-correlation-request-id": [ "976357d4-3a14-4226-874b-b0b515818e68" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM" ], - "x-ms-request-id": [ "78d8ac34-ad83-49f7-95da-856452e0f5de" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051557Z:976357d4-3a14-4226-874b-b0b515818e68" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E3F3AEC677814D5C8A51F06AA69E49EE Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:15:55Z" ], - "Date": [ "Fri, 25 Oct 2024 05:15:56 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "560" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy\",\"name\":\"ahcswy\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:15:56.3234274Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:15:56.3234274Z\"},\"properties\":{\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "38" ], - "x-ms-client-request-id": [ "f254edb7-ea1e-4086-8977-e90cbfb3795a" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01030e5a-0000-0800-0000-671b298c0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "ff0d7cf1-9726-4f44-b4e3-f7e900ae8a71" ], - "x-ms-correlation-request-id": [ "c6bef45e-66f6-401b-ba0b-df454d090b0e" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051627Z:c6bef45e-66f6-401b-ba0b-df454d090b0e" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: BFD8031F462F45B1ABCBA4A0C5895A56 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:16:27Z" ], - "Date": [ "Fri, 25 Oct 2024 05:16:26 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "573" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"name\":\"78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:15:56.5957062Z\"}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "39" ], - "x-ms-client-request-id": [ "f254edb7-ea1e-4086-8977-e90cbfb3795a" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01030e5a-0000-0800-0000-671b298c0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "6e529291-adb2-40b0-ad21-ff6927e3da64" ], - "x-ms-correlation-request-id": [ "777fea8b-fc9c-4187-b973-28266992503a" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051657Z:777fea8b-fc9c-4187-b973-28266992503a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 1B05D9354E424C51BC28F51725DA024F Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:16:57Z" ], - "Date": [ "Fri, 25 Oct 2024 05:16:57 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "573" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"name\":\"78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:15:56.5957062Z\"}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4?api-version=2024-02-28-preview\u0026t=638654301571984420\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=z6wl2DHmsFcFC6sGzD9pKDexJ1c3RtUlPSku3T6w8Nip4lvd7hRRxnc7bKxR2VOwiBUTHkFHtn9bUti7cR8Rz1H54_ANEXFxAzige9_pYeLheKyFT0GwmaSzdrmLSCE1TMGL7MxejV2yb_M3tuwr_nsuvxlO9y7WN7DaMpk4h7w0_J3YHo-RKg5I-tSKhjLAtHJ0JOSurkq7mtUFHQGmtaYvt1dxXTxP6T_IM2rP-VPNIeIrJfg6-H2gqUl_0m_AMdihIbXQSlRIccF1xIhfNavi8N_3oDcft6oL-6FbTPFV32EnX5p77wtFDubamgiFKTGs0NJz2rz4Sa2raGmw2Q\u0026h=Dnba0xJblruStKcrqzap-3KLlIl0Nm8wxdSGiX6EjOM", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "40" ], - "x-ms-client-request-id": [ "f254edb7-ea1e-4086-8977-e90cbfb3795a" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0103a762-0000-0800-0000-671b29ce0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "5a4f43b7-184c-42ec-ba0a-57421dfd51f5" ], - "x-ms-correlation-request-id": [ "2a185c4a-42a6-4d20-a25d-34a0603ac22f" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051728Z:2a185c4a-42a6-4d20-a25d-34a0603ac22f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4199C910FFB14930A06C609141FCC126 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:17:28Z" ], - "Date": [ "Fri, 25 Oct 2024 05:17:27 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "633" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS/operationStatuses/78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"name\":\"78d8ac34-ad83-49f7-95da-856452e0f5de*66FC9AC65831C529FEA4DC305874E67E2A616420249CA59601FE5F99A773CCE4\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:15:56.5957062Z\",\"endTime\":\"2024-10-25T05:16:04.2086126Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "New-AzDeidService+[NoContext]+CreateViaJsonString+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy?api-version=2024-02-28-preview+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "41" ], - "x-ms-client-request-id": [ "f254edb7-ea1e-4086-8977-e90cbfb3795a" ], - "CommandName": [ "New-AzDeidService" ], - "FullCommandName": [ "New-AzDeidService_CreateViaJsonString" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d01e7dc-0000-0800-0000-671b29940000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "75f205d8-2832-4c44-be92-4169ad89cd15" ], - "x-ms-correlation-request-id": [ "1f568da8-65fe-4f5b-a869-9522358c2ace" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051728Z:1f568da8-65fe-4f5b-a869-9522358c2ace" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 64BC34CEC10F4D5DAC414E33FA9DCD23 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:17:28Z" ], - "Date": [ "Fri, 25 Oct 2024 05:17:27 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "637" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ahcswy\",\"name\":\"ahcswy\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:15:56.3234274Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:15:56.3234274Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dabcehdwfdf7g2ed.api.eus001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", - "isContentBase64": false - } - } -} \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Tests.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Tests.ps1 deleted file mode 100644 index 11e4427fc98b..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/New-AzDeidService.Tests.ps1 +++ /dev/null @@ -1,42 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'New-AzDeidService')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'New-AzDeidService.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'New-AzDeidService' { - It 'CreateExpanded' { - { - $config = New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests1 -Location $env.location - $config.Name | Should -Be $env.deidServiceToCreateInTests1 - $config.ProvisioningState | Should -Be "Succeeded" - } | Should -Not -Throw - } - - It 'CreateViaJsonFilePath' { - { - $config = New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests2 -JsonFilePath (Join-Path $PSScriptRoot '.\jsonConfigs\deidServiceJson.json') - $config.Name | Should -Be $env.deidServiceToCreateInTests2 - $config.ProvisioningState | Should -Be "Succeeded" - } | Should -Not -Throw - } - - It 'CreateViaJsonString' { - { - $jsonString = Get-Content -Path (Join-Path $PSScriptRoot '.\jsonConfigs\deidServiceJson.json') -Raw - $config = New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceToCreateInTests3 -JsonString $jsonString - $config.Name | Should -Be $env.deidServiceToCreateInTests3 - $config.ProvisioningState | Should -Be "Succeeded" - } | Should -Not -Throw - } -} diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/README.md b/src/HealthDeidentification/HealthDeidentification.Autorest/test/README.md deleted file mode 100644 index 1969200c6a09..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/README.md +++ /dev/null @@ -1,17 +0,0 @@ -# Test -This directory contains the [Pester](https://www.powershellgallery.com/packages/Pester) tests to run for the module. We use Pester as it is the unofficial standard for PowerShell unit testing. Test stubs for custom cmdlets (created in `../custom`) will be generated into this folder when `build-module.ps1` is ran. These test stubs will fail automatically, to indicate that tests should be written for custom cmdlets. - -## Info -- Modifiable: yes -- Generated: partial -- Committed: yes -- Packaged: no - -## Details -We allow three testing modes: *live*, *record*, and *playback*. These can be selected using the `-Live`, `-Record`, and `-Playback` switches respectively on the `test-module.ps1` script. This script will run through any `.Tests.ps1` scripts in the `test` folder. If you choose the *record* mode, it will create a `.Recording.json` file of the REST calls between the client and server. Then, when you choose *playback* mode, it will use the `.Recording.json` file to mock the communication between server and client. The *live* mode runs the same as the *record* mode; however, it doesn't create the `.Recording.json` file. - -## Purpose -Custom cmdlets generally encompass additional functionality not described in the REST specification, or combines functionality generated from the REST spec. To validate this functionality continues to operate as intended, creating tests that can be ran and re-ran against custom cmdlets is part of the framework. - -## Usage -To execute tests, run the `test-module.ps1`. To write tests, [this example](https://github.com/pester/Pester/blob/8b9cf4248315e44f1ac6673be149f7e0d7f10466/Examples/Planets/Get-Planet.Tests.ps1#L1) from the Pester repository is very useful for getting started. \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Recording.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Recording.json deleted file mode 100644 index 7272a545945f..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Recording.json +++ /dev/null @@ -1,726 +0,0 @@ -{ - "Remove-AzDeidService+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "42" ], - "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d01d6e6-0000-0800-0000-671b29ed0000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w" ], - "x-ms-request-id": [ "74d29ced-0f6a-4a27-ab9a-bd5042258666" ], - "x-ms-correlation-request-id": [ "345ab293-d92c-438a-8e23-dadd998e3c27" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051733Z:345ab293-d92c-438a-8e23-dadd998e3c27" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E315179303AE496A8F7D09D4E118AEB8 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:17:32Z" ], - "Date": [ "Fri, 25 Oct 2024 05:17:32 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "bnVsbA==", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "43" ], - "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01034566-0000-0800-0000-671b29ed0000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302839484527\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=csnLPnr-IiI_6vwkQIj0NR2s8yeyI5pRIGHlrIsRM8Er1FLfrVanXJ8fGAQ-0Iv6IJg4ocCeordCq_TILoY2qWzye76Q2pufgU6epEYUaAL49F6QozMFe4hTtFBY92tfacOyaVPFksjGEirYbnLPnekudMt_CRyNTDIjXuuADpwOIxmYi7qWOfvWpxOz8vlN5mFFWkR9Zqmoyn_-iCPwM9jd9XjhQTBd1MYC1uOO3GC2CixLNzuLNcXekwscJnc0kFofWalO3uZVrvQcs2ppUVj2Ke5qi1htUDuMiMA2uQVNBBJhl8RYVHzxZO6Vq1q6sEq26MFTSkdAzSHcnXYCXA\u0026h=4qpRzpIXG2P4pOc2Y-ASjQqjnFpWLxUJvwfJk7Q_EmI" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302839484527\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=csnLPnr-IiI_6vwkQIj0NR2s8yeyI5pRIGHlrIsRM8Er1FLfrVanXJ8fGAQ-0Iv6IJg4ocCeordCq_TILoY2qWzye76Q2pufgU6epEYUaAL49F6QozMFe4hTtFBY92tfacOyaVPFksjGEirYbnLPnekudMt_CRyNTDIjXuuADpwOIxmYi7qWOfvWpxOz8vlN5mFFWkR9Zqmoyn_-iCPwM9jd9XjhQTBd1MYC1uOO3GC2CixLNzuLNcXekwscJnc0kFofWalO3uZVrvQcs2ppUVj2Ke5qi1htUDuMiMA2uQVNBBJhl8RYVHzxZO6Vq1q6sEq26MFTSkdAzSHcnXYCXA\u0026h=4qpRzpIXG2P4pOc2Y-ASjQqjnFpWLxUJvwfJk7Q_EmI" ], - "x-ms-request-id": [ "4c48b1c1-9459-4cda-a5b6-feaa6b50e787" ], - "x-ms-correlation-request-id": [ "312dff10-19aa-4769-9674-7422dca7823a" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051803Z:312dff10-19aa-4769-9674-7422dca7823a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: CE941B1479FE4262BA1164871607388C Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:18:03Z" ], - "Date": [ "Fri, 25 Oct 2024 05:18:03 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\"}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302839484527\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=csnLPnr-IiI_6vwkQIj0NR2s8yeyI5pRIGHlrIsRM8Er1FLfrVanXJ8fGAQ-0Iv6IJg4ocCeordCq_TILoY2qWzye76Q2pufgU6epEYUaAL49F6QozMFe4hTtFBY92tfacOyaVPFksjGEirYbnLPnekudMt_CRyNTDIjXuuADpwOIxmYi7qWOfvWpxOz8vlN5mFFWkR9Zqmoyn_-iCPwM9jd9XjhQTBd1MYC1uOO3GC2CixLNzuLNcXekwscJnc0kFofWalO3uZVrvQcs2ppUVj2Ke5qi1htUDuMiMA2uQVNBBJhl8RYVHzxZO6Vq1q6sEq26MFTSkdAzSHcnXYCXA\u0026h=4qpRzpIXG2P4pOc2Y-ASjQqjnFpWLxUJvwfJk7Q_EmI+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302839484527\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=csnLPnr-IiI_6vwkQIj0NR2s8yeyI5pRIGHlrIsRM8Er1FLfrVanXJ8fGAQ-0Iv6IJg4ocCeordCq_TILoY2qWzye76Q2pufgU6epEYUaAL49F6QozMFe4hTtFBY92tfacOyaVPFksjGEirYbnLPnekudMt_CRyNTDIjXuuADpwOIxmYi7qWOfvWpxOz8vlN5mFFWkR9Zqmoyn_-iCPwM9jd9XjhQTBd1MYC1uOO3GC2CixLNzuLNcXekwscJnc0kFofWalO3uZVrvQcs2ppUVj2Ke5qi1htUDuMiMA2uQVNBBJhl8RYVHzxZO6Vq1q6sEq26MFTSkdAzSHcnXYCXA\u0026h=4qpRzpIXG2P4pOc2Y-ASjQqjnFpWLxUJvwfJk7Q_EmI", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "44" ], - "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01034566-0000-0800-0000-671b29ed0000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303141661924\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=mvROlMZLOlo9GkweZavrbsTNYyj-Nuaht05UiM60OPsBgehNDQ4S2--cQWUcv21TcAn2swTo1qN2urxLBBje8-agGf-m0h--HPUxpLiXlbRqmi57kOGn8nLgrqgM4EQE33ruT1KlfrGQ98bJRIMjHsOW_XAh9oS-o_JjL9r4oJ9-21PoCMkinimKvzth-SNLJnth41jN92PsxCS1olEz-_I5c6WwyEQ0RWE4E96_m7ROMjvFsx16JJnRn0ZnsZ16Htl6R_l3fLSCc3pCrBFEm1PzE_QZyaLR-19sh_iHynQwQZVpIfqBseg5b0J4ZgsYlsLO9MhRVQRl2cz5leI4IQ\u0026h=YoirOz6zlxqbzmO4ptN_Q-k1qW-JNVQEiox5-LNrukI" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303141505661\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=YUYZMCnrDnVFhxkt3q1MX3CKLLbo2Z12ZpIMmEiNPdHJr_j3YLKCZjfNLt-SUxZ9mRhw7np6EU6f_eLsNBc5NYOr7JKrGAomh-6vbNslEL_zD-NYUrwodHc3dNNIOYsz8qhI8AbfIS6SLHA_Ba9tsHQhf9sNVnXfwSSk-tlQ9zpT2DwKFKpDq9z0o1KqF4hCQofZw_P-REUOKXeagrM14w6sCS6E-FOSD7sWVwDfB2tJR891_E9wfyjkh0kpzF4Rea-qBKpWLfG0IlD-mCh6n0ZccdIAwUQQp0XgpzyZvdO4QhyiYkgxzovehQy55_JnCN9dssKfi_YuynEkWzs1dw\u0026h=P8INJMGPvAq1QVXovcCZgo3rZycL6PBMN_p7qJjPM-w" ], - "x-ms-request-id": [ "8031b731-966d-46e3-90ad-eb27729a4e2c" ], - "x-ms-correlation-request-id": [ "d1dfa8f7-d678-4584-9382-46f5f950008a" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051834Z:d1dfa8f7-d678-4584-9382-46f5f950008a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B1924BE568904A84AC6AD6C4E7F66410 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:18:34Z" ], - "Date": [ "Fri, 25 Oct 2024 05:18:33 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\"}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303141505661\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=YUYZMCnrDnVFhxkt3q1MX3CKLLbo2Z12ZpIMmEiNPdHJr_j3YLKCZjfNLt-SUxZ9mRhw7np6EU6f_eLsNBc5NYOr7JKrGAomh-6vbNslEL_zD-NYUrwodHc3dNNIOYsz8qhI8AbfIS6SLHA_Ba9tsHQhf9sNVnXfwSSk-tlQ9zpT2DwKFKpDq9z0o1KqF4hCQofZw_P-REUOKXeagrM14w6sCS6E-FOSD7sWVwDfB2tJR891_E9wfyjkh0kpzF4Rea-qBKpWLfG0IlD-mCh6n0ZccdIAwUQQp0XgpzyZvdO4QhyiYkgxzovehQy55_JnCN9dssKfi_YuynEkWzs1dw\u0026h=P8INJMGPvAq1QVXovcCZgo3rZycL6PBMN_p7qJjPM-w+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303141505661\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=YUYZMCnrDnVFhxkt3q1MX3CKLLbo2Z12ZpIMmEiNPdHJr_j3YLKCZjfNLt-SUxZ9mRhw7np6EU6f_eLsNBc5NYOr7JKrGAomh-6vbNslEL_zD-NYUrwodHc3dNNIOYsz8qhI8AbfIS6SLHA_Ba9tsHQhf9sNVnXfwSSk-tlQ9zpT2DwKFKpDq9z0o1KqF4hCQofZw_P-REUOKXeagrM14w6sCS6E-FOSD7sWVwDfB2tJR891_E9wfyjkh0kpzF4Rea-qBKpWLfG0IlD-mCh6n0ZccdIAwUQQp0XgpzyZvdO4QhyiYkgxzovehQy55_JnCN9dssKfi_YuynEkWzs1dw\u0026h=P8INJMGPvAq1QVXovcCZgo3rZycL6PBMN_p7qJjPM-w", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "45" ], - "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01034566-0000-0800-0000-671b29ed0000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303443630651\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=FFM1e94NFWJBJ7qaPqQGwHknHiamCJXyIgNlarhtOnRQTcElxNfki8W5m6BWrDaVat1KHnQfbWskdfozo60q9BGTg_2hEL9vhsPjrWrpeu-cHLM26xoNE8dMxLyoo0ouNjNBd_0332AWyfiXyvmvI9cfammqrLFF46cONFkfhEILRVG4KQrz2-0jepWdvXIBrhwHkZxNKZwDzas2LPAuYDXgbwgeHCQW5NN6JkDnZTq5UpEipRe9KR_urvOMo-A1eBvgVvoTFil-XSRcR1bGoVKfVHfP6hqcoqWpiJ_Y6avu1vXayUdFSYBa02WE73CfPSgUS0wK9WJ-y9ZJZwQOkA\u0026h=S2yFSVf2LOlijKfAjX_QnZ6WEUWZT8vl0wjcdnx0GPo" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303443474380\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=1b7KKK1WamT4encMm_hY-XUDJC87YZSoNJxq2xHWqZvxMTCUuYPF4_SswsVqFhr_3HLJmoLaw5PAZ9loQ2ODi7IIazYvowOYxB27J34HcAc3pazwXQQRXFb8n1xIlEdWog5cC46XhSH2tpHamL-AIjwJb-pX1Z95XHEWXmkQAq9GgOuigSrPFMmM3CosKxnHU4W57kTk3R1L4_eyEx_a3Nq2AU9DSa9kS_BRQPCm_pmdu8ECLc5XjsN-SdGqKIuKZigdyciqG9gLZvdVvSFVI6CO4GEHBlRDwy0CJmgqZEGZv0JBkTDN30ixyv22rM09tlWEnyCRcuGvJMtVTPNdew\u0026h=6XTk0zZwjnBqfsvPVhbk3yrZHW64dI3JVTD9BV0Jsdk" ], - "x-ms-request-id": [ "1c5b5b88-c60c-40cd-98fa-5a156dc1275b" ], - "x-ms-correlation-request-id": [ "9702dbaf-1062-4c8f-9bbc-7be514e1784d" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051904Z:9702dbaf-1062-4c8f-9bbc-7be514e1784d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A89737918C5E453B9A52346FD6B577F1 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:19:04Z" ], - "Date": [ "Fri, 25 Oct 2024 05:19:03 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\"}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303443474380\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=1b7KKK1WamT4encMm_hY-XUDJC87YZSoNJxq2xHWqZvxMTCUuYPF4_SswsVqFhr_3HLJmoLaw5PAZ9loQ2ODi7IIazYvowOYxB27J34HcAc3pazwXQQRXFb8n1xIlEdWog5cC46XhSH2tpHamL-AIjwJb-pX1Z95XHEWXmkQAq9GgOuigSrPFMmM3CosKxnHU4W57kTk3R1L4_eyEx_a3Nq2AU9DSa9kS_BRQPCm_pmdu8ECLc5XjsN-SdGqKIuKZigdyciqG9gLZvdVvSFVI6CO4GEHBlRDwy0CJmgqZEGZv0JBkTDN30ixyv22rM09tlWEnyCRcuGvJMtVTPNdew\u0026h=6XTk0zZwjnBqfsvPVhbk3yrZHW64dI3JVTD9BV0Jsdk+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303443474380\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=1b7KKK1WamT4encMm_hY-XUDJC87YZSoNJxq2xHWqZvxMTCUuYPF4_SswsVqFhr_3HLJmoLaw5PAZ9loQ2ODi7IIazYvowOYxB27J34HcAc3pazwXQQRXFb8n1xIlEdWog5cC46XhSH2tpHamL-AIjwJb-pX1Z95XHEWXmkQAq9GgOuigSrPFMmM3CosKxnHU4W57kTk3R1L4_eyEx_a3Nq2AU9DSa9kS_BRQPCm_pmdu8ECLc5XjsN-SdGqKIuKZigdyciqG9gLZvdVvSFVI6CO4GEHBlRDwy0CJmgqZEGZv0JBkTDN30ixyv22rM09tlWEnyCRcuGvJMtVTPNdew\u0026h=6XTk0zZwjnBqfsvPVhbk3yrZHW64dI3JVTD9BV0Jsdk", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "46" ], - "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01034566-0000-0800-0000-671b29ed0000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303745570873\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=giq84dnfnpGXZQDndQR48DpevPqblyqodZBuhI_j1pTLfT42dmE_rfE5YVGJwdeGUM-S2zmIzyF8BQEaqOctgmWrj6erJrqZ4VIaCpQw-E7EtFW5MBWCc-3J818wn3dmH3wIVkzy_AWBp7uNCjbQ86unl-ST-kBN4KenV-0qn_mtbFwNWFzbFGRx2np1sKJkbcsWh22j-Iwox4M-13PX0FzTf8SIpPvnJ1X556J2eslCKTcRHs1kKk8v4r2r2soOgWkS5Pf7UfuA_aWDJtJ7SQJuqQF3MnR_liMeRvjYX4xq7hLTyHKt8vhwf8_QvYJtopPgRdHdUYNqHgsGMF_5sg\u0026h=OhgBBokml9P7uYEF2x7kI6hNIiNrX2NH_Opd-e8yJzc" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303745570873\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=giq84dnfnpGXZQDndQR48DpevPqblyqodZBuhI_j1pTLfT42dmE_rfE5YVGJwdeGUM-S2zmIzyF8BQEaqOctgmWrj6erJrqZ4VIaCpQw-E7EtFW5MBWCc-3J818wn3dmH3wIVkzy_AWBp7uNCjbQ86unl-ST-kBN4KenV-0qn_mtbFwNWFzbFGRx2np1sKJkbcsWh22j-Iwox4M-13PX0FzTf8SIpPvnJ1X556J2eslCKTcRHs1kKk8v4r2r2soOgWkS5Pf7UfuA_aWDJtJ7SQJuqQF3MnR_liMeRvjYX4xq7hLTyHKt8vhwf8_QvYJtopPgRdHdUYNqHgsGMF_5sg\u0026h=OhgBBokml9P7uYEF2x7kI6hNIiNrX2NH_Opd-e8yJzc" ], - "x-ms-request-id": [ "92ef099f-c6a2-4de0-98e5-cb874ea0f7f1" ], - "x-ms-correlation-request-id": [ "73eee183-afaf-4a56-b792-6bfb6f31e36b" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T051934Z:73eee183-afaf-4a56-b792-6bfb6f31e36b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 086647D429CF4798A58D9B2780A47350 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:19:34Z" ], - "Date": [ "Fri, 25 Oct 2024 05:19:33 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\"}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303745570873\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=giq84dnfnpGXZQDndQR48DpevPqblyqodZBuhI_j1pTLfT42dmE_rfE5YVGJwdeGUM-S2zmIzyF8BQEaqOctgmWrj6erJrqZ4VIaCpQw-E7EtFW5MBWCc-3J818wn3dmH3wIVkzy_AWBp7uNCjbQ86unl-ST-kBN4KenV-0qn_mtbFwNWFzbFGRx2np1sKJkbcsWh22j-Iwox4M-13PX0FzTf8SIpPvnJ1X556J2eslCKTcRHs1kKk8v4r2r2soOgWkS5Pf7UfuA_aWDJtJ7SQJuqQF3MnR_liMeRvjYX4xq7hLTyHKt8vhwf8_QvYJtopPgRdHdUYNqHgsGMF_5sg\u0026h=OhgBBokml9P7uYEF2x7kI6hNIiNrX2NH_Opd-e8yJzc+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654303745570873\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=giq84dnfnpGXZQDndQR48DpevPqblyqodZBuhI_j1pTLfT42dmE_rfE5YVGJwdeGUM-S2zmIzyF8BQEaqOctgmWrj6erJrqZ4VIaCpQw-E7EtFW5MBWCc-3J818wn3dmH3wIVkzy_AWBp7uNCjbQ86unl-ST-kBN4KenV-0qn_mtbFwNWFzbFGRx2np1sKJkbcsWh22j-Iwox4M-13PX0FzTf8SIpPvnJ1X556J2eslCKTcRHs1kKk8v4r2r2soOgWkS5Pf7UfuA_aWDJtJ7SQJuqQF3MnR_liMeRvjYX4xq7hLTyHKt8vhwf8_QvYJtopPgRdHdUYNqHgsGMF_5sg\u0026h=OhgBBokml9P7uYEF2x7kI6hNIiNrX2NH_Opd-e8yJzc", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "47" ], - "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01038375-0000-0800-0000-671b2a6b0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-request-id": [ "0db7ad8b-998a-42cc-ba91-8bbc18b1f6e5" ], - "x-ms-correlation-request-id": [ "1d0cd8a7-4d76-49a7-a361-46cd6384e5c5" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052004Z:1d0cd8a7-4d76-49a7-a361-46cd6384e5c5" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 44E4BF6F6EB34802908BE525D247FFD0 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:04Z" ], - "Date": [ "Fri, 25 Oct 2024 05:20:03 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "593" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699?api-version=2024-02-28-preview\u0026t=638654302536963724\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=jUSSV7U0bOxDFPU1XjqnrjelhluMKzp3ChmEnhEu3HQEqLIKdvY82uCHSBQ05AqtjBUsTI4YyZMv1QXQb7y1FoEj_nl3PY23nc13sGnmNxnCWHguN_Z-cypEM_KTsPmbfYHZux_Mfj-sWEUK9wG3PfJTfk6oczEwlD-osGtPz1CAPbYMhM5nNJ0_JjLbQj7epwYj3-pvBSJ7lph2Ow9ocfmU0f7i9dbIguck9rX-MUCp_8YMyKzKEzWDbVBfm7mfFBC8CrYwDnUj-NuqUCftnwEFavlwDoujE9VBA1tgk-G7OTu8y4B1FY9ChEEsTYQOFuvi3nCtBh-AlaZaHeV04w\u0026h=50V-MU8Mxx2ZjERlZkrMdQ5CNUKVfQPEO_Bl15XVk6w", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "48" ], - "x-ms-client-request-id": [ "2ec2f5c1-7ec0-4481-9156-4423805f852b" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01038375-0000-0800-0000-671b2a6b0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "703ee371-40ca-4a34-b65d-63f6a99ef7f6" ], - "x-ms-correlation-request-id": [ "1581d2bc-8156-424b-8446-c30c0d4644cb" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052005Z:1581d2bc-8156-424b-8446-c30c0d4644cb" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: F9F7050DE1B64994A4603DCC14C2F239 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:04Z" ], - "Date": [ "Fri, 25 Oct 2024 05:20:04 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "593" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"name\":\"74d29ced-0f6a-4a27-ab9a-bd5042258666*BD9DBF42F83AEDD2A2682BFA49D10D6CF5CD27B974CF54A999D9ADCDE3DA1699\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/r0sx7k\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:17:33.1755841Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+DeleteNonexistent+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nonexistent?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/nonexistent?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "49" ], - "x-ms-client-request-id": [ "b5dba788-0c69-4279-a5b5-2bd82593fe3f" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_Delete" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 204, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-request-id": [ "02df83cf-8698-4186-b568-b99f08aee454" ], - "x-ms-correlation-request-id": [ "02df83cf-8698-4186-b568-b99f08aee454" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052005Z:02df83cf-8698-4186-b568-b99f08aee454" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 7128E42994934F4DA8992388877C1E34 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:05Z" ], - "Date": [ "Fri, 25 Oct 2024 05:20:04 GMT" ] - }, - "ContentHeaders": { - "Expires": [ "-1" ] - }, - "Content": null, - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "50" ], - "x-ms-client-request-id": [ "65d3bdd3-cc57-4a9f-b5cb-a1104bd1f355" ], - "CommandName": [ "Get-AzDeidService" ], - "FullCommandName": [ "Get-AzDeidService_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d01f66c-0000-0800-0000-671b28740000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "23ef3984-317e-4cd6-ad2f-4ffb0bfb0bc9" ], - "x-ms-correlation-request-id": [ "1d992382-5cc9-4ab8-8135-7c3c69c1af50" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052005Z:1d992382-5cc9-4ab8-8135-7c3c69c1af50" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 286FF3E37B954963BDD8A4CFA93D3572 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:05Z" ], - "Date": [ "Fri, 25 Oct 2024 05:20:04 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"name\":\"1aue5d\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:11:08.5819378Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:11:08.5819378Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://dtf7abbvcnengvfb.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d?api-version=2024-02-28-preview+2": { - "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "51" ], - "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d01f4f8-0000-0800-0000-671b2a860000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds" ], - "x-ms-request-id": [ "92ee948d-37e4-4a85-a29a-ef9e9d6b4fde" ], - "x-ms-correlation-request-id": [ "83e6c1ab-4f88-49b4-a472-3f69ef626757" ], - "x-ms-ratelimit-remaining-subscription-global-deletes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052006Z:83e6c1ab-4f88-49b4-a472-3f69ef626757" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: D7A8350A5C004F0BA696024085EF1D6E Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:05Z" ], - "Date": [ "Fri, 25 Oct 2024 05:20:06 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "4" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "bnVsbA==", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "52" ], - "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0103207c-0000-0800-0000-671b2a860000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304372405461\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3yaxcbvd3SgXFFpAJMsN_tvBAaxWO4dKdWHX54kvPdOSea2Ex4RyaA8nb4uXvxq9J4gPmx8-1EvwYoOh6oSYTGI-qgCH4hEGUW8ynXXzcHSllS_fRXTn4IGMvRKj5NeSQ9Jo9DbroQA9OnTBn37hWTKhvEQMwFVQ9fB7G595_Lx8Pb2ux4vL7QbPEKnje6de1H-Wwxs8WpSRtp3Ur8InpCpGyiTRptN_M55nbhAzWwF6ZfPY-Qs-fYH6NliG0TNq6dQCfsBqs9i04Cf2LXKRGVF4MSq799KdsRjQ4YnjH6Kq1YzqMojmOQfL1BBjCSkJD2D_xoiBfUObFyvID114zQ\u0026h=tkrRL3GBn3GBER-s4a9XTIsjWOrfL3rf5cKzAUF_8UA" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304372405461\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3yaxcbvd3SgXFFpAJMsN_tvBAaxWO4dKdWHX54kvPdOSea2Ex4RyaA8nb4uXvxq9J4gPmx8-1EvwYoOh6oSYTGI-qgCH4hEGUW8ynXXzcHSllS_fRXTn4IGMvRKj5NeSQ9Jo9DbroQA9OnTBn37hWTKhvEQMwFVQ9fB7G595_Lx8Pb2ux4vL7QbPEKnje6de1H-Wwxs8WpSRtp3Ur8InpCpGyiTRptN_M55nbhAzWwF6ZfPY-Qs-fYH6NliG0TNq6dQCfsBqs9i04Cf2LXKRGVF4MSq799KdsRjQ4YnjH6Kq1YzqMojmOQfL1BBjCSkJD2D_xoiBfUObFyvID114zQ\u0026h=tkrRL3GBn3GBER-s4a9XTIsjWOrfL3rf5cKzAUF_8UA" ], - "x-ms-request-id": [ "b9b837bb-2dd9-4dd6-92da-a5db7bd1f2bb" ], - "x-ms-correlation-request-id": [ "622c31e9-be9c-42d3-b072-1bea3b50f09f" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052037Z:622c31e9-be9c-42d3-b072-1bea3b50f09f" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: C3F627A5F0C94DBFBD4D6C5CB89E758F Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:20:36Z" ], - "Date": [ "Fri, 25 Oct 2024 05:20:36 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\"}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304372405461\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3yaxcbvd3SgXFFpAJMsN_tvBAaxWO4dKdWHX54kvPdOSea2Ex4RyaA8nb4uXvxq9J4gPmx8-1EvwYoOh6oSYTGI-qgCH4hEGUW8ynXXzcHSllS_fRXTn4IGMvRKj5NeSQ9Jo9DbroQA9OnTBn37hWTKhvEQMwFVQ9fB7G595_Lx8Pb2ux4vL7QbPEKnje6de1H-Wwxs8WpSRtp3Ur8InpCpGyiTRptN_M55nbhAzWwF6ZfPY-Qs-fYH6NliG0TNq6dQCfsBqs9i04Cf2LXKRGVF4MSq799KdsRjQ4YnjH6Kq1YzqMojmOQfL1BBjCSkJD2D_xoiBfUObFyvID114zQ\u0026h=tkrRL3GBn3GBER-s4a9XTIsjWOrfL3rf5cKzAUF_8UA+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304372405461\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=3yaxcbvd3SgXFFpAJMsN_tvBAaxWO4dKdWHX54kvPdOSea2Ex4RyaA8nb4uXvxq9J4gPmx8-1EvwYoOh6oSYTGI-qgCH4hEGUW8ynXXzcHSllS_fRXTn4IGMvRKj5NeSQ9Jo9DbroQA9OnTBn37hWTKhvEQMwFVQ9fB7G595_Lx8Pb2ux4vL7QbPEKnje6de1H-Wwxs8WpSRtp3Ur8InpCpGyiTRptN_M55nbhAzWwF6ZfPY-Qs-fYH6NliG0TNq6dQCfsBqs9i04Cf2LXKRGVF4MSq799KdsRjQ4YnjH6Kq1YzqMojmOQfL1BBjCSkJD2D_xoiBfUObFyvID114zQ\u0026h=tkrRL3GBn3GBER-s4a9XTIsjWOrfL3rf5cKzAUF_8UA", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "53" ], - "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0103207c-0000-0800-0000-671b2a860000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304675408514\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=quK2Pc4vWC_K-AMzVgGZ1OiSYnvBQLZ3XCmanBHR7dxbeckxkEokLK6fnLuRjPIlI5ftZK8-10RqqtPFUFTImUcA33vQBnlPNlS3UGL_C8uBVLKwG21mW9M4kk8KjweYnZS_T5IIJrVAsLfMQuQ7k2aBBsS3ichyt9-q6bV_QbeZp2GnQVgCyVEBo21U8AMXewFK2Be4prv8k4DYmw8Tzcgd9xaTdgWdMmYc5w1tXCy0z6vAxelmvMmLFc4Lm6juwAntXM6zSQNrirET7utd2YQT8-Udo3yW2f2S8M9dMxmUYaYWeZAC2AkrctBfE1Me9q2IU7OI2z2jeR_KGN0xMw\u0026h=DfZ8Rv3pvThBk8vNF4kkWCPwYaSKgVb2vqMLLKo6SSk" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304675252263\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0X8zv8-21OJ8qTsVEVy8WKEI32VHlPifs1fBHwoye2r-yTIROz50f0LF7yIAgWxQamnOIEPedYVdRObiUKj8nMDrb0WGRkEOcUHAMtQsT7qU-A0G5fYgPTztwa-uQvLryZY6MKsfUTSi68JPsR6oKLsBh4Me7PYniAEoluLhP4h3Ik0coREM6Q2rSZvOhChBYrJMf1cVurdaJybZ-6AV88QPp_raq2F8yMJ6hAYBy4p_UPncQpOKXKTaLz5E-_r1hnYNVzBIAZmFu7Wg7ytdGRu_o5k7fl41tMvkbWM8Y0KiJDb9k9WVkKO6y2QXEISx5ASAZxpRtOsndniVN67Qng\u0026h=ffxWLM0LrHjiwa1-fW9F8N9lzF1QwOt7pKIqYGrNxtE" ], - "x-ms-request-id": [ "7966f40c-98e3-4e9d-92be-d2c29616c07d" ], - "x-ms-correlation-request-id": [ "9b8f8673-2e6c-494b-8dc9-9c8f9098632a" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052107Z:9b8f8673-2e6c-494b-8dc9-9c8f9098632a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 83AF93492E574B1492BFFB8C8197D5D3 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:21:07Z" ], - "Date": [ "Fri, 25 Oct 2024 05:21:06 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\"}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304675252263\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0X8zv8-21OJ8qTsVEVy8WKEI32VHlPifs1fBHwoye2r-yTIROz50f0LF7yIAgWxQamnOIEPedYVdRObiUKj8nMDrb0WGRkEOcUHAMtQsT7qU-A0G5fYgPTztwa-uQvLryZY6MKsfUTSi68JPsR6oKLsBh4Me7PYniAEoluLhP4h3Ik0coREM6Q2rSZvOhChBYrJMf1cVurdaJybZ-6AV88QPp_raq2F8yMJ6hAYBy4p_UPncQpOKXKTaLz5E-_r1hnYNVzBIAZmFu7Wg7ytdGRu_o5k7fl41tMvkbWM8Y0KiJDb9k9WVkKO6y2QXEISx5ASAZxpRtOsndniVN67Qng\u0026h=ffxWLM0LrHjiwa1-fW9F8N9lzF1QwOt7pKIqYGrNxtE+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304675252263\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0X8zv8-21OJ8qTsVEVy8WKEI32VHlPifs1fBHwoye2r-yTIROz50f0LF7yIAgWxQamnOIEPedYVdRObiUKj8nMDrb0WGRkEOcUHAMtQsT7qU-A0G5fYgPTztwa-uQvLryZY6MKsfUTSi68JPsR6oKLsBh4Me7PYniAEoluLhP4h3Ik0coREM6Q2rSZvOhChBYrJMf1cVurdaJybZ-6AV88QPp_raq2F8yMJ6hAYBy4p_UPncQpOKXKTaLz5E-_r1hnYNVzBIAZmFu7Wg7ytdGRu_o5k7fl41tMvkbWM8Y0KiJDb9k9WVkKO6y2QXEISx5ASAZxpRtOsndniVN67Qng\u0026h=ffxWLM0LrHjiwa1-fW9F8N9lzF1QwOt7pKIqYGrNxtE", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "54" ], - "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0103207c-0000-0800-0000-671b2a860000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304977479671\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=zkR-W_BKHGNVnW8maBGdnePuBUgDYHJH8cB94r0QSKPYmyfrC5lus40ZJ0lxR6muOiDz7KW6lI-ziukHe1VTBXnZm3ifrK7w7_Twmb_3FNMZrgBxpECBWZkml4q6no8v-6y0JcftbfTX8rVOGv9QqA7c4SAynzdJVAYvPdfvSYUMxoTFki7EmVMbwFOSQxQTt3H7Rr1v0kE2PEDwRZ2kgkHoMhr-myx4Rd5nowlD53TKGltWOQpVblyVQVM0-GfbBadb9iY7n9dRAmNKSz-fETQEWYgTJINYJDDZK--gurOi6UQKydtRunQNM8Ca6ty7CoHEDkdFSxDpIrsRlzxOGw\u0026h=TfUAreaotkJ4phu_ou-zfJrmPrE2n-0p3m-27iDPOUE" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304977323469\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=c1okRbeQBQSi1UGtCTUBS_4NAl6RF-1nhILfrCRhXAvhPXbV_z1c3fX3YTn3g-PvuHJrwAaKpIhtZHwzmoBet1FvDFVQOC95Sa3LlhDDaNk9GyYVG5U4CBSdZVAwfnUkKvIYqytT2DN0R6vjMBwDRJUiKS_hmSxFZ2ZTQ0O05Ba8M13wCNS8qrIfuke04CpaKLGkeq5-5HoOSe53fk3uJbIp7kdDJQVv5S0JNj_kBi2C5ERXThb8hgT6ZDwLTnfEU2dIrPNJ97iZTfttEgGxiUZuXa1_vrS7B-MxV2h49Q9dN54isdhm9cZ35OG3-wkmGJYoq7qMOXhqD-yVEeH7QQ\u0026h=-gB1VCByfquyFDxkw055gxSB4ZQ5XYW8TkCfJZyGP-M" ], - "x-ms-request-id": [ "bf5677c1-cf11-4a82-9e5d-533a08ade185" ], - "x-ms-correlation-request-id": [ "3c1d6538-4fb2-4b25-86f8-27bbfae7bd41" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052137Z:3c1d6538-4fb2-4b25-86f8-27bbfae7bd41" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ACA2D0FAC47D438A9F4CE3D10A0682F8 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:21:37Z" ], - "Date": [ "Fri, 25 Oct 2024 05:21:36 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\"}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304977323469\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=c1okRbeQBQSi1UGtCTUBS_4NAl6RF-1nhILfrCRhXAvhPXbV_z1c3fX3YTn3g-PvuHJrwAaKpIhtZHwzmoBet1FvDFVQOC95Sa3LlhDDaNk9GyYVG5U4CBSdZVAwfnUkKvIYqytT2DN0R6vjMBwDRJUiKS_hmSxFZ2ZTQ0O05Ba8M13wCNS8qrIfuke04CpaKLGkeq5-5HoOSe53fk3uJbIp7kdDJQVv5S0JNj_kBi2C5ERXThb8hgT6ZDwLTnfEU2dIrPNJ97iZTfttEgGxiUZuXa1_vrS7B-MxV2h49Q9dN54isdhm9cZ35OG3-wkmGJYoq7qMOXhqD-yVEeH7QQ\u0026h=-gB1VCByfquyFDxkw055gxSB4ZQ5XYW8TkCfJZyGP-M+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304977323469\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=c1okRbeQBQSi1UGtCTUBS_4NAl6RF-1nhILfrCRhXAvhPXbV_z1c3fX3YTn3g-PvuHJrwAaKpIhtZHwzmoBet1FvDFVQOC95Sa3LlhDDaNk9GyYVG5U4CBSdZVAwfnUkKvIYqytT2DN0R6vjMBwDRJUiKS_hmSxFZ2ZTQ0O05Ba8M13wCNS8qrIfuke04CpaKLGkeq5-5HoOSe53fk3uJbIp7kdDJQVv5S0JNj_kBi2C5ERXThb8hgT6ZDwLTnfEU2dIrPNJ97iZTfttEgGxiUZuXa1_vrS7B-MxV2h49Q9dN54isdhm9cZ35OG3-wkmGJYoq7qMOXhqD-yVEeH7QQ\u0026h=-gB1VCByfquyFDxkw055gxSB4ZQ5XYW8TkCfJZyGP-M", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "55" ], - "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 202, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0103207c-0000-0800-0000-671b2a860000\"" ], - "Location": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654305279774372\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=f8U1bz1E5HzRKYXhpKPutooAzM8YpyfYrgr-7vWnVtkRnOZRP0s37mmrDH6tbKQ7l7qwmkWy2Vp0ZqrmQImQ-yNcNP0TfRJbyOYrCkpZq5byGPI7Wrn9h4Cr1gAheILfFLtVk7A74qNMBmotk9bSWuZXK_CB-L_5oj3xm6w4-l_Nc3TkrjpkkGocOZNpfdN3WODV1d1qpIedG4lsROhzWsT8ufcuGQq049BhCxAjFQXNIc2-LPxYCbDhT3fvFGa3oa2QR92yqNvOx97weK8-y4-VVJG2QWeKXBrZd6iiCrchH6YZTet7UuzFe3f8HwIh36leI08vUs7Z34MPqPpb6A\u0026h=w3WJoUYy9KJ6LihdjS8xVxOKhKkT_cz_VPj4jfUmFlg" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654305279774372\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=f8U1bz1E5HzRKYXhpKPutooAzM8YpyfYrgr-7vWnVtkRnOZRP0s37mmrDH6tbKQ7l7qwmkWy2Vp0ZqrmQImQ-yNcNP0TfRJbyOYrCkpZq5byGPI7Wrn9h4Cr1gAheILfFLtVk7A74qNMBmotk9bSWuZXK_CB-L_5oj3xm6w4-l_Nc3TkrjpkkGocOZNpfdN3WODV1d1qpIedG4lsROhzWsT8ufcuGQq049BhCxAjFQXNIc2-LPxYCbDhT3fvFGa3oa2QR92yqNvOx97weK8-y4-VVJG2QWeKXBrZd6iiCrchH6YZTet7UuzFe3f8HwIh36leI08vUs7Z34MPqPpb6A\u0026h=w3WJoUYy9KJ6LihdjS8xVxOKhKkT_cz_VPj4jfUmFlg" ], - "x-ms-request-id": [ "953e1072-f7c8-42f3-b525-77c4240abaa4" ], - "x-ms-correlation-request-id": [ "5ee68e38-238c-46af-84fa-3acf15ded726" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052207Z:5ee68e38-238c-46af-84fa-3acf15ded726" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 6CA8A8764CB14D8ABAE7C49C337718A4 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:22:07Z" ], - "Date": [ "Fri, 25 Oct 2024 05:22:07 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Deleting\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\"}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654305279774372\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=f8U1bz1E5HzRKYXhpKPutooAzM8YpyfYrgr-7vWnVtkRnOZRP0s37mmrDH6tbKQ7l7qwmkWy2Vp0ZqrmQImQ-yNcNP0TfRJbyOYrCkpZq5byGPI7Wrn9h4Cr1gAheILfFLtVk7A74qNMBmotk9bSWuZXK_CB-L_5oj3xm6w4-l_Nc3TkrjpkkGocOZNpfdN3WODV1d1qpIedG4lsROhzWsT8ufcuGQq049BhCxAjFQXNIc2-LPxYCbDhT3fvFGa3oa2QR92yqNvOx97weK8-y4-VVJG2QWeKXBrZd6iiCrchH6YZTet7UuzFe3f8HwIh36leI08vUs7Z34MPqPpb6A\u0026h=w3WJoUYy9KJ6LihdjS8xVxOKhKkT_cz_VPj4jfUmFlg+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654305279774372\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=f8U1bz1E5HzRKYXhpKPutooAzM8YpyfYrgr-7vWnVtkRnOZRP0s37mmrDH6tbKQ7l7qwmkWy2Vp0ZqrmQImQ-yNcNP0TfRJbyOYrCkpZq5byGPI7Wrn9h4Cr1gAheILfFLtVk7A74qNMBmotk9bSWuZXK_CB-L_5oj3xm6w4-l_Nc3TkrjpkkGocOZNpfdN3WODV1d1qpIedG4lsROhzWsT8ufcuGQq049BhCxAjFQXNIc2-LPxYCbDhT3fvFGa3oa2QR92yqNvOx97weK8-y4-VVJG2QWeKXBrZd6iiCrchH6YZTet7UuzFe3f8HwIh36leI08vUs7Z34MPqPpb6A\u0026h=w3WJoUYy9KJ6LihdjS8xVxOKhKkT_cz_VPj4jfUmFlg", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "56" ], - "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01035990-0000-0800-0000-671b2b040000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "68a9e12d-c073-406c-a7b3-113f36573f22" ], - "x-ms-correlation-request-id": [ "cc4ccd83-cbc3-4715-a955-0766a2ca4123" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052238Z:cc4ccd83-cbc3-4715-a955-0766a2ca4123" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 9B7D48141F8F427089C956CBFCD69C82 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:22:38Z" ], - "Date": [ "Fri, 25 Oct 2024 05:22:37 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "593" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/eastus2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "Remove-AzDeidService+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds+8": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E?api-version=2024-02-28-preview\u0026t=638654304068236288\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=0NYKNBVIaDT43RyelvmVW30oWk6XophgTitSvwAjM__LFeLLjyZ9_liPzNRlEWmSSCwEODfyYe0bKaQs1e-lHYmF--WnT0zEzFud-rtF332jJEE3lU42E81SnknGGR92_zZqXKOj00J96-rPfNE_WCrLGBNg6NllTczjbac3-oCoaeI_NZfY88J8ge6y9tdg1eNVFPXl77uTkQ3gsZSVORhPgzlO1_nidQFfVxSq8BZv9qCNh3XWsuB6K-hMohMCHbXIG-rBF1k6J_kUfgeiduGyMtDqwKvIL_KOXuqLOLCNBqln4hWIL8NFHc5_FWZ0E45Jlhztr9iQd1eu3Q2uWA\u0026h=ev8xgZvINt0vn4FkYL0XPl-bEqdfPXvup7MRgoRR1ds", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "57" ], - "x-ms-client-request-id": [ "36a9afc8-f352-4642-adfa-ba6052e39c5d" ], - "CommandName": [ "Remove-AzDeidService" ], - "FullCommandName": [ "Remove-AzDeidService_DeleteViaIdentity" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01035990-0000-0800-0000-671b2b040000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "6040a5df-dc1e-4db1-9f46-209dd189b4b8" ], - "x-ms-correlation-request-id": [ "dd55cafc-782f-46f5-8cdd-006e9e411c07" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052238Z:dd55cafc-782f-46f5-8cdd-006e9e411c07" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B39D33CCFA5F4F738C7CE69A2E15F801 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:22:38Z" ], - "Date": [ "Fri, 25 Oct 2024 05:22:37 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "593" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"name\":\"92ee948d-37e4-4a85-a29a-ef9e9d6b4fde*2B2976D015F52E2DADD7208AFB2E8025FA77D979DA1D324A4B9238B61CC8795E\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/1aue5d\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:20:06.3028435Z\",\"properties\":null}", - "isContentBase64": false - } - } -} \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Tests.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Tests.ps1 deleted file mode 100644 index 1366afb7c5b4..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Remove-AzDeidService.Tests.ps1 +++ /dev/null @@ -1,36 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Remove-AzDeidService')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Remove-AzDeidService.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Remove-AzDeidService' { - It 'Delete' { - { - Remove-AzDeidService -Name $env.deidServiceNameToDelete1 -ResourceGroupName $env.resourceGroupName - } | Should -Not -Throw - } - - It 'DeleteNonexistent' { - { - Remove-AzDeidService -Name "nonexistent" -ResourceGroupName $env.resourceGroupName - } | Should -Not -Throw - } - - It 'DeleteViaIdentity' { - { - $config = Get-AzDeidService -Name $env.deidServiceNameToDelete2 -ResourceGroupName $env.resourceGroupName - Remove-AzDeidService -InputObject $config - } | Should -Not -Throw - } -} diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Recording.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Recording.json deleted file mode 100644 index 3b5357431bac..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Recording.json +++ /dev/null @@ -1,577 +0,0 @@ -{ - "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "58" ], - "x-ms-client-request-id": [ "b98eef2a-e142-4896-8734-658e91cc9000" ], - "CommandName": [ "Update-AzDeidService" ], - "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d01332a-0000-0800-0000-671b27630000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "62b46f38-fa37-41d1-9c36-6d826245de22" ], - "x-ms-correlation-request-id": [ "03cdbe2a-d7f3-48c7-aba7-ac022372276a" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052242Z:03cdbe2a-d7f3-48c7-aba7-ac022372276a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 8888140D42424F298306EF4D692594BA Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:22:42Z" ], - "Date": [ "Fri, 25 Oct 2024 05:22:41 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:06:30.0996306Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+2": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", - "Content": "{\n \"location\": \"eastus2\",\n \"properties\": {\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n }\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "138" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1e014c0b-0000-0800-0000-671b2b240000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "36440e04-0d5b-41f5-9b9e-d3bbbd73f1f2" ], - "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], - "x-ms-correlation-request-id": [ "984564f6-dacd-4872-9eec-b88f68c6d70c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ" ], - "x-ms-request-id": [ "d33e9ea5-0223-4469-bdac-49eac9deb69c" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052244Z:984564f6-dacd-4872-9eec-b88f68c6d70c" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: B1036EDE4A9740C797379EB61520079C Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:22:42Z" ], - "Date": [ "Fri, 25 Oct 2024 05:22:43 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "778" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:22:43.1643756Z\"},\"identity\":{\"principalId\":\"bd30cc60-af17-4d5f-93fc-625b46e00a77\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ+3": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "60" ], - "x-ms-client-request-id": [ "b98eef2a-e142-4896-8734-658e91cc9000" ], - "CommandName": [ "Update-AzDeidService" ], - "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01039a96-0000-0800-0000-671b2b240000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "917000ba-bbe3-4655-8981-94a84c886320" ], - "x-ms-correlation-request-id": [ "fd9b29f4-3537-4091-ad31-612c2282c183" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052314Z:fd9b29f4-3537-4091-ad31-612c2282c183" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: A899A923027642C4BF6807D2C6FE89C2 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:23:14Z" ], - "Date": [ "Fri, 25 Oct 2024 05:23:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"name\":\"d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:22:44.1284491Z\"}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "61" ], - "x-ms-client-request-id": [ "b98eef2a-e142-4896-8734-658e91cc9000" ], - "CommandName": [ "Update-AzDeidService" ], - "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01039a96-0000-0800-0000-671b2b240000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "0a765c2a-25f6-4845-b2e8-ac37604b24bd" ], - "x-ms-correlation-request-id": [ "af376485-2c6a-4184-ba2e-5cca15bedb6b" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052345Z:af376485-2c6a-4184-ba2e-5cca15bedb6b" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 24A4AB4852BA4D3489D64B7B9C518C60 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:23:45Z" ], - "Date": [ "Fri, 25 Oct 2024 05:23:44 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"name\":\"d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:22:44.1284491Z\"}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED?api-version=2024-02-28-preview\u0026t=638654305647268786\u0026c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q\u0026s=KHJdbQuy-2kuYp5OBAHS4sssCcjgPJYtM_ebvacWK49rXkRCASgFZujWlXjBOBl0aMWJiy8ocTKbRhFCJJxeC5AXCjYJmKmozc0zytH8XqeDvKLLBvSrMNNw9VKtS-jgAeKFKdwgsvAbv3x_4NdtGNKH53zgjlYKxNoKEvNAUjD-eKD3jqS1bTCx2irtps8KYaTG8gCLeFe1oCpT2IncF59uCwd4flp2GNlnaOUb0w2SG_FzNC5No742Ar-Gyo47xo6wN8WUNOqlJzqA7rkXo-NkeJ27Oz7UEGM7qWqL0m_SfieSybLU7wzAibqXVPJ_InKoe6QWq3TMNdIlua3QtA\u0026h=334YW7oyoyZwlpMm_DQpuMra3N-G-ZRJwNNevGOsULQ", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "62" ], - "x-ms-client-request-id": [ "b98eef2a-e142-4896-8734-658e91cc9000" ], - "CommandName": [ "Update-AzDeidService" ], - "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"01036f9f-0000-0800-0000-671b2b660000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "d79acaca-51de-46f2-b03e-4c705dc909ae" ], - "x-ms-correlation-request-id": [ "e66c371b-55bb-4e39-84d9-9010fbae0cb0" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052415Z:e66c371b-55bb-4e39-84d9-9010fbae0cb0" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DDBF0BA619BB4F3E9B68970283FBF1C9 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:15Z" ], - "Date": [ "Fri, 25 Oct 2024 05:24:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "634" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"name\":\"d33e9ea5-0223-4469-bdac-49eac9deb69c*D4FFCDE3860C5E2A14726679ADF7446CD92779CF5585F1783097BB7A97D364ED\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:22:44.1284491Z\",\"endTime\":\"2024-10-25T05:22:53.6792536Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "63" ], - "x-ms-client-request-id": [ "b98eef2a-e142-4896-8734-658e91cc9000" ], - "CommandName": [ "Update-AzDeidService" ], - "FullCommandName": [ "Update-AzDeidService_UpdateExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1e016e0c-0000-0800-0000-671b2b2d0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "e18e9e9a-270d-451e-af68-524fb188f361" ], - "x-ms-correlation-request-id": [ "eff497df-5ec3-4d1b-88cb-13132bdfc057" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052415Z:eff497df-5ec3-4d1b-88cb-13132bdfc057" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 4EAA6014418143F780A508E42822261A Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:15Z" ], - "Date": [ "Fri, 25 Oct 2024 05:24:14 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "779" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/ceogfl\",\"name\":\"ceogfl\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:06:30.0996306Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:22:43.1643756Z\"},\"identity\":{\"principalId\":\"bd30cc60-af17-4d5f-93fc-625b46e00a77\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://brc9fqf5dgfvbhce.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview+1": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "64" ], - "x-ms-client-request-id": [ "02dc382c-fbe3-412a-8d54-da4ba9049160" ], - "CommandName": [ "Get-AzDeidService" ], - "FullCommandName": [ "Get-AzDeidService_Get" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d019a3a-0000-0800-0000-671b27bb0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "00ffdb32-5f9e-4ab3-93a3-696d97df97c4" ], - "x-ms-correlation-request-id": [ "90cc3205-760c-48a4-93bf-d7b168a6ff4a" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052416Z:90cc3205-760c-48a4-93bf-d7b168a6ff4a" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 35A3E8F1463A4FA1BCE07A5E1A95BF81 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:15Z" ], - "Date": [ "Fri, 25 Oct 2024 05:24:15 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:08:02.7254538Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview+2": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "x-ms-unique-id": [ "65" ], - "x-ms-client-request-id": [ "d1c356f4-6223-4368-880e-a6ab931757ed" ], - "CommandName": [ "Update-AzDeidService" ], - "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ], - "Authorization": [ "[Filtered]" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1d019a3a-0000-0800-0000-671b27bb0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "d932a277-a412-4c47-82a8-bcd2eb8db94c" ], - "x-ms-correlation-request-id": [ "c73cde05-b1d6-4d1a-a56d-221c1f405a3d" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052416Z:c73cde05-b1d6-4d1a-a56d-221c1f405a3d" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E5D84D7B16A44B5A83402CD45BAEAEC4 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:16Z" ], - "Date": [ "Fri, 25 Oct 2024 05:24:15 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "638" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:08:02.7254538Z\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Enabled\"}}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$PUT+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview+3": { - "Request": { - "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview", - "Content": "{\n \"tags\": {\n \"AzPwshTestKey\": \"AzPwshTestValue\"\n },\n \"location\": \"eastus2\",\n \"properties\": {\n \"publicNetworkAccess\": \"Disabled\"\n },\n \"identity\": {\n \"type\": \"SystemAssigned\"\n }\n}", - "isContentBase64": false, - "Headers": { - }, - "ContentHeaders": { - "Content-Type": [ "application/json" ], - "Content-Length": [ "194" ] - } - }, - "Response": { - "StatusCode": 201, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1e01a918-0000-0800-0000-671b2b820000\"" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "799" ], - "x-ms-providerhub-traffic": [ "True" ], - "mise-correlation-id": [ "137b3470-cad5-4660-a639-e5847cd78655" ], - "api-supported-versions": [ "1.0, 2, 2024-02-28-preview, 2024-09-20" ], - "x-ms-correlation-request-id": [ "8e87785d-6d02-42f9-89b8-79a25cfc5ffc" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA" ], - "x-ms-request-id": [ "09acbb5b-1414-4a1b-9565-1a76ccc421f3" ], - "x-ms-ratelimit-remaining-subscription-global-writes": [ "11999" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052418Z:8e87785d-6d02-42f9-89b8-79a25cfc5ffc" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: DF7D06AA7E3049BA934E73858FA1B58B Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:16Z" ], - "Date": [ "Fri, 25 Oct 2024 05:24:17 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "811" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:24:17.1279999Z\"},\"identity\":{\"principalId\":\"e6df4127-3954-4cdd-b79e-acb525317ac3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\",\"provisioningState\":\"Accepted\"}}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA+4": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "67" ], - "x-ms-client-request-id": [ "d1c356f4-6223-4368-880e-a6ab931757ed" ], - "CommandName": [ "Update-AzDeidService" ], - "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0103f7a5-0000-0800-0000-671b2b810000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "1db1d024-900f-4d5c-97f0-180abdd01d59" ], - "x-ms-correlation-request-id": [ "5633cd3b-f758-4517-992f-c4eb6d60c379" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052449Z:5633cd3b-f758-4517-992f-c4eb6d60c379" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 05858D105E9D403BB789A52E43F53DE0 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:24:48Z" ], - "Date": [ "Fri, 25 Oct 2024 05:24:48 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"name\":\"09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:24:17.8711702Z\"}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA+5": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "68" ], - "x-ms-client-request-id": [ "d1c356f4-6223-4368-880e-a6ab931757ed" ], - "CommandName": [ "Update-AzDeidService" ], - "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0103f7a5-0000-0800-0000-671b2b810000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "c983a876-0c2b-4ee8-b818-bc91cf8f4027" ], - "x-ms-correlation-request-id": [ "c3bfc608-51aa-4bbb-8b31-4e846e8efb5c" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052519Z:c3bfc608-51aa-4bbb-8b31-4e846e8efb5c" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: E2676EFC82BD424EA70CD90DCCC526A9 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:25:19Z" ], - "Date": [ "Fri, 25 Oct 2024 05:25:19 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "574" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"name\":\"09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"status\":\"Accepted\",\"startTime\":\"2024-10-25T05:24:17.8711702Z\"}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA+6": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257?api-version=2024-02-28-preview\u0026t=638654306588467815\u0026c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc\u0026s=YwS_axewfgHnbmu5ZisZ91-KJChk72GZHeT-LWIQeAp3Dzh_bEjKcwfcCLGDX2u_Om6muhJL_mUWioI_kI149EV_msUoGJ3CXXEzqDU8P7miAbTW4WyQvwgq7GUMAI6_pAFnBKS6rjBYlMx_5uzK8AH00Ieagb1aDHmnjwPTP1kQTQpfTJsAGa5VfAxLVHPIxzK6ibwDWa91pFr4rV4HLVwD_cCZzn5LiGGHjO_VWkLjoi5qfy7B4Pgx2HlHIH1gei3a2WJDc49NLid26e-L8cr7m6FSmmb5PRP_l4RQJ4gj5kfbhLM7NxBmSXHkMwlprvJ8KePOYtSSStl8MEjOUA\u0026h=cbpKEZKzyLOBBiQmM1kZZXtUuax06piDaBrAVa9PRwA", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "69" ], - "x-ms-client-request-id": [ "d1c356f4-6223-4368-880e-a6ab931757ed" ], - "CommandName": [ "Update-AzDeidService" ], - "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"0103a4ae-0000-0800-0000-671b2bc40000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-request-id": [ "771621bf-4131-4652-a501-042febf4ceb7" ], - "x-ms-correlation-request-id": [ "fb19cc0f-4280-4512-a6ba-057bd29d6109" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052549Z:fb19cc0f-4280-4512-a6ba-057bd29d6109" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: 5E4F407E74C64C6FB22805B22D4447B2 Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:25:49Z" ], - "Date": [ "Fri, 25 Oct 2024 05:25:49 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "634" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/providers/Microsoft.HealthDataAIServices/locations/EASTUS2/operationStatuses/09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"name\":\"09acbb5b-1414-4a1b-9565-1a76ccc421f3*7DABF2531BA720DCB8825780EBDDDBBF9DE912938BFF7104E6D0E279EF927257\",\"resourceId\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"status\":\"Succeeded\",\"startTime\":\"2024-10-25T05:24:17.8711702Z\",\"endTime\":\"2024-10-25T05:24:27.7181859Z\",\"properties\":null}", - "isContentBase64": false - } - }, - "Update-AzDeidService+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview+7": { - "Request": { - "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul?api-version=2024-02-28-preview", - "Content": null, - "isContentBase64": false, - "Headers": { - "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "70" ], - "x-ms-client-request-id": [ "d1c356f4-6223-4368-880e-a6ab931757ed" ], - "CommandName": [ "Update-AzDeidService" ], - "FullCommandName": [ "Update-AzDeidService_UpdateViaIdentityExpanded" ], - "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.23", "Az.HealthDeidentification/0.1.0" ] - }, - "ContentHeaders": { - } - }, - "Response": { - "StatusCode": 200, - "Headers": { - "Cache-Control": [ "no-cache" ], - "Pragma": [ "no-cache" ], - "ETag": [ "\"1e01ab19-0000-0800-0000-671b2b8b0000\"" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "1099" ], - "x-ms-providerhub-traffic": [ "True" ], - "x-ms-request-id": [ "e6acf3ba-0cd9-4c0b-8078-f9012ceebd6f" ], - "x-ms-correlation-request-id": [ "f72b04ec-e0eb-4acc-9cb2-4703128ddc84" ], - "x-ms-ratelimit-remaining-subscription-global-reads": [ "16499" ], - "x-ms-routing-request-id": [ "WESTUS2:20241025T052549Z:f72b04ec-e0eb-4acc-9cb2-4703128ddc84" ], - "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ "nosniff" ], - "X-Cache": [ "CONFIG_NOCACHE" ], - "X-MSEdge-Ref": [ "Ref A: ACFFD2D326BA4FE888B16BF3BEDAC30B Ref B: CO6AA3150217033 Ref C: 2024-10-25T05:25:49Z" ], - "Date": [ "Fri, 25 Oct 2024 05:25:49 GMT" ] - }, - "ContentHeaders": { - "Content-Length": [ "812" ], - "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ "-1" ] - }, - "Content": "{\"id\":\"/subscriptions/a49b70b4-60ee-4422-a7e2-3a5223f5fae4/resourceGroups/azps-test-rg-eus2/providers/Microsoft.HealthDataAIServices/deidServices/8qhsul\",\"name\":\"8qhsul\",\"type\":\"microsoft.healthdataaiservices/deidservices\",\"location\":\"eastus2\",\"tags\":{\"AzPwshTestKey\":\"AzPwshTestValue\"},\"systemData\":{\"createdBy\":\"athomases@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2024-10-25T05:08:02.7254538Z\",\"lastModifiedBy\":\"athomases@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2024-10-25T05:24:17.1279999Z\"},\"identity\":{\"principalId\":\"e6df4127-3954-4cdd-b79e-acb525317ac3\",\"tenantId\":\"72f988bf-86f1-41af-91ab-2d7cd011db47\",\"type\":\"SystemAssigned\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"serviceUrl\":\"https://azfxa6gjbfb2g7ec.api.eus2001.deid.azure.com\",\"publicNetworkAccess\":\"Disabled\"}}", - "isContentBase64": false - } - } -} \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Tests.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Tests.ps1 deleted file mode 100644 index 3ec6a0daba13..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/Update-AzDeidService.Tests.ps1 +++ /dev/null @@ -1,38 +0,0 @@ -if(($null -eq $TestName) -or ($TestName -contains 'Update-AzDeidService')) -{ - $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' - if (-Not (Test-Path -Path $loadEnvPath)) { - $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' - } - . ($loadEnvPath) - $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzDeidService.Recording.json' - $currentPath = $PSScriptRoot - while(-not $mockingPath) { - $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File - $currentPath = Split-Path -Path $currentPath -Parent - } - . ($mockingPath | Select-Object -First 1).FullName -} - -Describe 'Update-AzDeidService' { - It 'UpdateExpanded' { - { - $config = Update-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName -EnableSystemAssignedIdentity:$true -PublicNetworkAccess "Disabled" - $config.Name | Should -Be $env.deidServiceName - $config.PublicNetworkAccess | Should -Be "Disabled" - $config.IdentityType | Should -Be "SystemAssigned" - } | Should -Not -Throw - } - - It 'UpdateViaIdentityExpanded' { - { - $config = Get-AzDeidService -Name $env.deidServiceName2 -ResourceGroupName $env.resourceGroupName - $config2 = Update-AzDeidService -InputObject $config -EnableSystemAssignedIdentity $true -PublicNetworkAccess "Disabled" -Tag @{ - AzPwshTestKey = "AzPwshTestValue" - } - $config2.Name | Should -Be $env.deidServiceName2 - $config2.PublicNetworkAccess | Should -Be "Disabled" - $config2.IdentityType | Should -Be "SystemAssigned" - } | Should -Not -Throw - } -} diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/env.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/env.json deleted file mode 100644 index e536fd1e4209..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/env.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "deidServiceToCreateInTests2": "w4xh3k", - "deidServiceName2": "8qhsul", - "deidServiceNameToDelete1": "r0sx7k", - "deidServiceNameToDelete2": "1aue5d", - "deidServiceToCreateInTests3": "ahcswy", - "deidServiceName": "ceogfl", - "SubscriptionId": "a49b70b4-60ee-4422-a7e2-3a5223f5fae4", - "deidServiceToCreateInTests1": "gkan5e", - "location": "eastus2", - "resourceGroupName": "azps-test-rg-eus2" -} diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/jsonConfigs/deidServiceJson.json b/src/HealthDeidentification/HealthDeidentification.Autorest/test/jsonConfigs/deidServiceJson.json deleted file mode 100644 index 7edb1a7f4333..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/jsonConfigs/deidServiceJson.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "location": "eastus", - "properties": { - "publicNetworkAccess": "Disabled" - } -} \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/loadEnv.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/loadEnv.ps1 deleted file mode 100644 index 6a7c385c6b7d..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/loadEnv.ps1 +++ /dev/null @@ -1,29 +0,0 @@ -# ---------------------------------------------------------------------------------- -# 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. -# ---------------------------------------------------------------------------------- -$envFile = 'env.json' -if ($TestMode -eq 'live') { - $envFile = 'localEnv.json' -} - -if (Test-Path -Path (Join-Path $PSScriptRoot $envFile)) { - $envFilePath = Join-Path $PSScriptRoot $envFile -} else { - $envFilePath = Join-Path $PSScriptRoot '..\$envFile' -} -$env = @{} -if (Test-Path -Path $envFilePath) { - $env = Get-Content (Join-Path $PSScriptRoot $envFile) | ConvertFrom-Json - $PSDefaultParameterValues=@{"*:Tenant"=$env.Tenant} -} \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/test/utils.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/test/utils.ps1 deleted file mode 100644 index f2255cb8c5de..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/test/utils.ps1 +++ /dev/null @@ -1,93 +0,0 @@ -function RandomString([bool]$allChars, [int32]$len) { - if ($allChars) { - return -join ((33..126) | Get-Random -Count $len | % {[char]$_}) - } else { - return -join ((48..57) + (97..122) | Get-Random -Count $len | % {[char]$_}) - } -} -function Start-TestSleep { - [CmdletBinding(DefaultParameterSetName = 'SleepBySeconds')] - param( - [parameter(Mandatory = $true, Position = 0, ParameterSetName = 'SleepBySeconds')] - [ValidateRange(0.0, 2147483.0)] - [double] $Seconds, - - [parameter(Mandatory = $true, ParameterSetName = 'SleepByMilliseconds')] - [ValidateRange('NonNegative')] - [Alias('ms')] - [int] $Milliseconds - ) - - if ($TestMode -ne 'playback') { - switch ($PSCmdlet.ParameterSetName) { - 'SleepBySeconds' { - Start-Sleep -Seconds $Seconds - } - 'SleepByMilliseconds' { - Start-Sleep -Milliseconds $Milliseconds - } - } - } -} - -$env = @{} -if ($UsePreviousConfigForRecord) { - $previousEnv = Get-Content (Join-Path $PSScriptRoot 'env.json') | ConvertFrom-Json - $previousEnv.psobject.properties | Foreach-Object { $env[$_.Name] = $_.Value } -} -# Add script method called AddWithCache to $env, when useCache is set true, it will try to get the value from the $env first. -# example: $val = $env.AddWithCache('key', $val, $true) -$env | Add-Member -Type ScriptMethod -Value { param( [string]$key, [object]$val, [bool]$useCache) if ($this.Contains($key) -and $useCache) { return $this[$key] } else { $this[$key] = $val; return $val } } -Name 'AddWithCache' -function setupEnv() { - # Preload subscriptionId and tenant from context, which will be used in test - # as default. You could change them if needed. - $env.AddWithCache("SubscriptionId", (Get-AzContext).Subscription.Id, $true) - $env.AddWithCache("Tenant", (Get-AzContext).Tenant.Id, $true) - - $env.AddWithCache("location", "eastus2", $true) - - # Create the test resource group - Write-Host "Creating test resource group" - $resourceGroup = "azps-test-rg-eus2" - $env.AddWithCache("resourceGroupName", $resourceGroup, $true) - New-AzResourceGroup -Name $env.resourceGroupName -Location $env.location - Write-Host "Resource group created" - - $deidServiceName = RandomString -allChars $false -len 6 - $env.AddWithCache("deidServiceName", $deidServiceName, $true) - $deidServiceName2 = RandomString -allChars $false -len 6 - $env.AddWithCache("deidServiceName2", $deidServiceName2, $true) - $deidServiceNameToDelete1 = RandomString -allChars $false -len 6 - $env.AddWithCache("deidServiceNameToDelete1", $deidServiceNameToDelete1, $true) - $deidServiceNameToDelete2 = RandomString -allChars $false -len 6 - $env.AddWithCache("deidServiceNameToDelete2", $deidServiceNameToDelete2, $true) - $deidServiceToCreateInTests1 = RandomString -allChars $false -len 6 - $env.AddWithCache("deidServiceToCreateInTests1", $deidServiceToCreateInTests1, $true) - $deidServiceToCreateInTests2 = RandomString -allChars $false -len 6 - $env.AddWithCache("deidServiceToCreateInTests2", $deidServiceToCreateInTests2, $true) - $deidServiceToCreateInTests3 = RandomString -allChars $false -len 6 - $env.AddWithCache("deidServiceToCreateInTests3", $deidServiceToCreateInTests3, $true) - - # Create resources to use in tests - Write-Output "Creating DeID services" - New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName -Location $env.location - New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceName2 -Location $env.location - New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceNameToDelete1 -Location $env.location - New-AzDeidService -ResourceGroupName $env.resourceGroupName -Name $env.deidServiceNameToDelete2 -Location $env.location - Write-Output "Finished creating DeID services" - - # For any resources you created for test, you should add it to $env here. - $envFile = 'env.json' - if ($TestMode -eq 'live') { - $envFile = 'localEnv.json' - } - set-content -Path (Join-Path $PSScriptRoot $envFile) -Value (ConvertTo-Json $env) -} -function cleanupEnv() { - # Clean resources you create for testing - $resourceGroup = "azps-test-rg-eus2" - $env.AddWithCache("resourceGroupName", $resourceGroup, $true) - Remove-AzResourceGroup -Name $env.resourceGroupName - Write-Host "Resource group deleted" -} - diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 deleted file mode 100644 index 5319862d3372..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/utils/Get-SubscriptionIdTestSafe.ps1 +++ /dev/null @@ -1,7 +0,0 @@ -param() -if ($env:AzPSAutorestTestPlaybackMode) { - $loadEnvPath = Join-Path $PSScriptRoot '..' 'test' 'loadEnv.ps1' - . ($loadEnvPath) - return $env.SubscriptionId -} -return (Get-AzContext).Subscription.Id \ No newline at end of file diff --git a/src/HealthDeidentification/HealthDeidentification.Autorest/utils/Unprotect-SecureString.ps1 b/src/HealthDeidentification/HealthDeidentification.Autorest/utils/Unprotect-SecureString.ps1 deleted file mode 100644 index cb05b51a6220..000000000000 --- a/src/HealthDeidentification/HealthDeidentification.Autorest/utils/Unprotect-SecureString.ps1 +++ /dev/null @@ -1,16 +0,0 @@ -#This script converts securestring to plaintext - -param( - [Parameter(Mandatory, ValueFromPipeline)] - [System.Security.SecureString] - ${SecureString} -) - -$ssPtr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($SecureString) -try { - $plaintext = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($ssPtr) -} finally { - [System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($ssPtr) -} - -return $plaintext \ No newline at end of file From 3fe9183f14f61c1b8114f5ad9cc37e727c47431d Mon Sep 17 00:00:00 2001 From: Azure PowerShell <65331932+azure-powershell-bot@users.noreply.github.com> Date: Tue, 29 Oct 2024 15:56:56 +0800 Subject: [PATCH 16/16] Sync tools folder from main branch to generation branch (#26502) Co-authored-by: azurepowershell --- NuGet.Config | 2 + src/lib/netfx/System.Text.Encodings.Web.dll | Bin 76904 -> 59768 bytes src/lib/netstandard2.0/Azure.Core.dll | Bin 418336 -> 414648 bytes src/lib/netstandard2.0/Azure.Identity.dll | Bin 364064 -> 350752 bytes .../Microsoft.Bcl.AsyncInterfaces.dll | Bin 22144 -> 20864 bytes src/lib/netstandard2.0/System.Buffers.dll | Bin 28304 -> 28304 bytes src/lib/netstandard2.0/System.ClientModel.dll | Bin 114232 -> 31152 bytes src/lib/netstandard2.0/System.Memory.Data.dll | Bin 29800 -> 21368 bytes src/lib/netstandard2.0/System.Memory.dll | Bin 148760 -> 148760 bytes src/lib/netstandard2.0/System.Text.Json.dll | Bin 510728 -> 293240 bytes tools/Az/Az.psd1 | 2 +- tools/AzPreview/AzPreview.psd1 | 2 +- tools/Common.Netcore.Dependencies.targets | 2 +- tools/Docs/az-ps-latest-1.csv | 2 +- tools/NugetAuth/OneBranchNuget.Config | 3 +- tools/NugetAuth/ReplaceOneBranchConfig.ps1 | 2 +- .../UXMetadataAnalyzer/UXMetadataAnalyzer.cs | 4 + .../Az.DesktopVirtualization.json | 3702 ++++++++--------- tools/VersionController/MinimalVersion.csv | 2 +- 19 files changed, 1865 insertions(+), 1858 deletions(-) diff --git a/NuGet.Config b/NuGet.Config index 6dd04515c692..7527d4939fd9 100644 --- a/NuGet.Config +++ b/NuGet.Config @@ -11,3 +11,5 @@ + + diff --git a/src/lib/netfx/System.Text.Encodings.Web.dll b/src/lib/netfx/System.Text.Encodings.Web.dll index a85aa43cfef5351b53c4b039a743296e1a34bd34..6d2b207854ac679d3a1c64c2b81fd662a6f6f2ba 100644 GIT binary patch literal 59768 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 JeFG#B{|72p%MSnm literal 76904 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

5B99BnsU%_UFpG`>P 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

}f1;eYYXC^eo@9p{q!y=g+61 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 Qn8C@g)Gj|tB0-?P0f(LC%m4rY literal 418336 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%0D6Ax*M5+eDf|5tr}eCrB8L0lo^T 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

aL>nl{V%4e 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 Y5kEc@Ao_B-tIe{gwOZ=o^PI{i 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

#e}RYwxu-|`;V2Vl4a%o**8TX_ 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 -#J$a8 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 Y61g)sCAFgJ>o@GoX&LEekIr8I3!?hepa1{> literal 364064 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 z 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 PjF;~dx_rEbX0QJPbluS$ diff --git a/src/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll b/src/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll index 39fd1311f2660966f58a43b6e2e581064bd9febb..f2955edfecb7c1c92c8c9bc628b09f2fd752609a 100644 GIT binary patch delta 8518 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 K7X0u=KK~C><~d*h diff --git a/src/lib/netstandard2.0/System.Buffers.dll b/src/lib/netstandard2.0/System.Buffers.dll index e3ab66abf6b54ac8802f6e1c4aa0271b042e09f8..c517a3b62cc7e190fb347c00a960311a9349b53c 100644 GIT binary patch delta 6944 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 bl<3i=!z*rvFw3vKKWJ_45%+LV%)I{x45ILM literal 114232 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 G*#84h7Mq;_ diff --git a/src/lib/netstandard2.0/System.Memory.Data.dll b/src/lib/netstandard2.0/System.Memory.Data.dll index ed4f7b3998135101186ba0309a25397c33b67dfb..6f2a3e0ad07f3da4c6be0fff96acfdbe69d06af1 100644 GIT binary patch delta 10390 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 Xl(w3Jq@@$)PV0I3INO^1&j|ky<^SuU literal 29800 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 E2hVL04*&oF diff --git a/src/lib/netstandard2.0/System.Memory.dll b/src/lib/netstandard2.0/System.Memory.dll index cce60a028f52c4a82ade22d8e950bfb3a770a521..bdfc501e9647719549793297acb072d33067d4e5 100644 GIT binary patch delta 7938 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 delta 7046 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 Ye!H3!cHyGNU4IgzSE{G0LMMg)2g(xNa{vGU diff --git a/src/lib/netstandard2.0/System.Text.Json.dll b/src/lib/netstandard2.0/System.Text.Json.dll index c1df9f92f2ca38ab82ee9d5ba3396688d5d84019..fe2154a3bf3a7658f106424bf00f672620b14e67 100644 GIT binary patch literal 293240 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Ȗ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≤FdeO3=4~-se&ekj|z*XnS%1eCxpe)JVs??V)!dz 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

O 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 v!Urt2uavGua+nuE`nZ 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�y;{h)p6=nJmzwoUYABaBULp)P_gwKH; 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 diff --git a/tools/Az/Az.psd1 b/tools/Az/Az.psd1 index e00e23e58584..9693ab670a2f 100644 --- a/tools/Az/Az.psd1 +++ b/tools/Az/Az.psd1 @@ -82,7 +82,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '3.0.4'; }, @{ModuleName = 'Az.DataLakeStore'; RequiredVersion = '1.3.2'; }, @{ModuleName = 'Az.DataProtection'; RequiredVersion = '2.4.0'; }, @{ModuleName = 'Az.DataShare'; RequiredVersion = '1.0.2'; }, - @{ModuleName = 'Az.DesktopVirtualization'; RequiredVersion = '4.3.1'; }, + @{ModuleName = 'Az.DesktopVirtualization'; RequiredVersion = '4.3.2'; }, @{ModuleName = 'Az.DevCenter'; RequiredVersion = '1.2.0'; }, @{ModuleName = 'Az.DevTestLabs'; RequiredVersion = '1.0.3'; }, @{ModuleName = 'Az.Dns'; RequiredVersion = '1.2.1'; }, diff --git a/tools/AzPreview/AzPreview.psd1 b/tools/AzPreview/AzPreview.psd1 index 63edea4accf9..01824145e78a 100644 --- a/tools/AzPreview/AzPreview.psd1 +++ b/tools/AzPreview/AzPreview.psd1 @@ -108,7 +108,7 @@ RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '3.0.4'; }, @{ModuleName = 'Az.DataProtection'; RequiredVersion = '2.4.0'; }, @{ModuleName = 'Az.DataShare'; RequiredVersion = '1.0.2'; }, @{ModuleName = 'Az.DedicatedHsm'; RequiredVersion = '0.3.1'; }, - @{ModuleName = 'Az.DesktopVirtualization'; RequiredVersion = '4.3.1'; }, + @{ModuleName = 'Az.DesktopVirtualization'; RequiredVersion = '4.3.2'; }, @{ModuleName = 'Az.DevCenter'; RequiredVersion = '1.2.0'; }, @{ModuleName = 'Az.DeviceProvisioningServices'; RequiredVersion = '0.10.2'; }, @{ModuleName = 'Az.DeviceUpdate'; RequiredVersion = '0.1.1'; }, diff --git a/tools/Common.Netcore.Dependencies.targets b/tools/Common.Netcore.Dependencies.targets index aa2cae1391a0..5ec572b772f5 100644 --- a/tools/Common.Netcore.Dependencies.targets +++ b/tools/Common.Netcore.Dependencies.targets @@ -22,7 +22,7 @@ - + diff --git a/tools/Docs/az-ps-latest-1.csv b/tools/Docs/az-ps-latest-1.csv index eb7ad89c5bcc..81636818338c 100644 --- a/tools/Docs/az-ps-latest-1.csv +++ b/tools/Docs/az-ps-latest-1.csv @@ -54,7 +54,7 @@ pac52,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-relea pac53,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataProtection.2.4.0.zip;sourceType=sa]Az.DataProtection,2.4.0 pac54,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DataShare.1.0.2.zip;sourceType=sa]Az.DataShare,1.0.2 pac55,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DedicatedHsm.0.3.1.zip;sourceType=sa]Az.DedicatedHsm,0.3.1 -pac56,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DesktopVirtualization.4.3.1.zip;sourceType=sa]Az.DesktopVirtualization,4.3.1 +pac56,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DesktopVirtualization.4.3.2.zip;sourceType=sa]Az.DesktopVirtualization,4.3.2 pac57,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DevCenter.1.2.0.zip;sourceType=sa]Az.DevCenter,1.2.0 pac58,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeviceProvisioningServices.0.10.2.zip;sourceType=sa]Az.DeviceProvisioningServices,0.10.2 pac59,[ps=true;customSource=https://azpspackage.blob.core.windows.net/docs-release/Az.DeviceUpdate.0.1.1.zip;sourceType=sa]Az.DeviceUpdate,0.1.1 diff --git a/tools/NugetAuth/OneBranchNuget.Config b/tools/NugetAuth/OneBranchNuget.Config index 63a583023aae..256d6ebdd527 100644 --- a/tools/NugetAuth/OneBranchNuget.Config +++ b/tools/NugetAuth/OneBranchNuget.Config @@ -8,4 +8,5 @@ - \ No newline at end of file + + diff --git a/tools/NugetAuth/ReplaceOneBranchConfig.ps1 b/tools/NugetAuth/ReplaceOneBranchConfig.ps1 index e4f864316259..f799315e4483 100644 --- a/tools/NugetAuth/ReplaceOneBranchConfig.ps1 +++ b/tools/NugetAuth/ReplaceOneBranchConfig.ps1 @@ -5,4 +5,4 @@ $oneBranchContent = Get-Content $oneBranchConfigPath -Raw $devContent = Get-Content $devConfigPath -Raw $oneBranchContent | Set-Content $devConfigPath -Force -$devContent | Set-Content oneBranchConfigPath -Force \ No newline at end of file +$devContent | Set-Content $oneBranchConfigPath -Force \ No newline at end of file diff --git a/tools/StaticAnalysis/UXMetadataAnalyzer/UXMetadataAnalyzer.cs b/tools/StaticAnalysis/UXMetadataAnalyzer/UXMetadataAnalyzer.cs index 50d9ab8e82b1..b3be6a8aa034 100644 --- a/tools/StaticAnalysis/UXMetadataAnalyzer/UXMetadataAnalyzer.cs +++ b/tools/StaticAnalysis/UXMetadataAnalyzer/UXMetadataAnalyzer.cs @@ -178,6 +178,10 @@ private void ValidateMetadata(IssueLoggerContext context, string UXMetadataConte private void ValidateExample(IssueLoggerContext context, UXMetadataCommand command, CmdletMetadata cmdletMetadata, UXMetadataCommandExample example, ReportLogger issueLogger) { + if (example.Parameters == null) + { + return; + } List parameterListConvertedFromAlias = example.Parameters.Select(x => { string parameterNameInExample = x.Name.Trim('-'); diff --git a/tools/Tools.Common/SerializedCmdlets/Az.DesktopVirtualization.json b/tools/Tools.Common/SerializedCmdlets/Az.DesktopVirtualization.json index 0ef1aa49ff99..cf73b9531110 100644 --- a/tools/Tools.Common/SerializedCmdlets/Az.DesktopVirtualization.json +++ b/tools/Tools.Common/SerializedCmdlets/Az.DesktopVirtualization.json @@ -1,6 +1,6 @@ { "ModuleName": "Az.DesktopVirtualization", - "ModuleVersion": "4.3.1", + "ModuleVersion": "4.3.2", "Cmdlets": [ { "VerbName": "Disconnect", @@ -77,7 +77,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -106,7 +106,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -115,7 +115,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -124,7 +124,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -134,7 +134,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -144,7 +144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -162,7 +162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -171,7 +171,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -268,7 +268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -283,7 +283,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -298,7 +298,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -314,7 +314,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -330,7 +330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -360,7 +360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -375,7 +375,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -395,7 +395,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -430,7 +430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -445,7 +445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -460,7 +460,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -476,7 +476,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -492,7 +492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -522,7 +522,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -537,7 +537,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -561,7 +561,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -576,7 +576,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -591,7 +591,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -607,7 +607,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -623,7 +623,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -653,7 +653,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -668,7 +668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -695,7 +695,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IExpandMsixImage", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IExpandMsixImage, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IExpandMsixImage, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PackageApplication": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[]", "PackageDependency": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[]", @@ -750,7 +750,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -775,7 +775,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixImageUri", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixImageUri, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixImageUri, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Uri": "System.String" } @@ -800,7 +800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -809,7 +809,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -818,7 +818,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -828,7 +828,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -847,7 +847,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -856,7 +856,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -935,7 +935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -950,7 +950,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -965,7 +965,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -981,7 +981,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1012,7 +1012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1027,7 +1027,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1092,7 +1092,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixImageUri", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixImageUri, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixImageUri, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Uri": "System.String" } @@ -1114,7 +1114,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1129,7 +1129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1144,7 +1144,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1160,7 +1160,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1191,7 +1191,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1206,7 +1206,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1226,7 +1226,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -1276,7 +1276,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1291,7 +1291,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1306,7 +1306,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1322,7 +1322,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1353,7 +1353,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1368,7 +1368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1388,7 +1388,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -1419,7 +1419,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixImageUri", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixImageUri, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixImageUri, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Uri": "System.String" } @@ -1441,7 +1441,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1456,7 +1456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1471,7 +1471,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1487,7 +1487,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1518,7 +1518,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1533,7 +1533,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1557,7 +1557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1572,7 +1572,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1587,7 +1587,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1603,7 +1603,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1634,7 +1634,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1649,7 +1649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1676,7 +1676,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplication", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplication, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplication, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CommandLineSetting": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", "IconContent": "System.Byte[]", @@ -1754,7 +1754,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -1788,7 +1788,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1810,7 +1810,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1819,7 +1819,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1828,7 +1828,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1838,7 +1838,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -1857,7 +1857,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1866,7 +1866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -1945,7 +1945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1979,7 +1979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -1994,7 +1994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2009,7 +2009,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2025,7 +2025,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2056,7 +2056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2071,7 +2071,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2162,7 +2162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2177,7 +2177,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2192,7 +2192,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2208,7 +2208,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2239,7 +2239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2254,7 +2254,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2274,7 +2274,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -2309,7 +2309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2324,7 +2324,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2339,7 +2339,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2355,7 +2355,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2386,7 +2386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2401,7 +2401,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2425,7 +2425,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2440,7 +2440,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2455,7 +2455,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2471,7 +2471,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2502,7 +2502,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2517,7 +2517,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2544,7 +2544,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplicationGroup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplicationGroup, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplicationGroup, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -2604,7 +2604,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -2647,7 +2647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2669,7 +2669,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2678,7 +2678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2687,7 +2687,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2697,7 +2697,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2716,7 +2716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2725,7 +2725,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -2793,7 +2793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2808,7 +2808,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2823,7 +2823,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2839,7 +2839,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -2870,7 +2870,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2885,7 +2885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -2966,7 +2966,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3000,7 +3000,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3015,7 +3015,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3030,7 +3030,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3046,7 +3046,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3077,7 +3077,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3092,7 +3092,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3147,7 +3147,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3162,7 +3162,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3177,7 +3177,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3193,7 +3193,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3224,7 +3224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3239,7 +3239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3259,7 +3259,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -3294,7 +3294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3309,7 +3309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3324,7 +3324,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3340,7 +3340,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3371,7 +3371,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3386,7 +3386,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3410,7 +3410,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3425,7 +3425,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3440,7 +3440,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3456,7 +3456,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3487,7 +3487,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3502,7 +3502,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3529,7 +3529,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IDesktop", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IDesktop, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IDesktop, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IconContent": "System.Byte[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -3595,7 +3595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -3629,7 +3629,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3651,7 +3651,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3660,7 +3660,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3669,7 +3669,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3679,7 +3679,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3698,7 +3698,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3707,7 +3707,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -3783,7 +3783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3817,7 +3817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3832,7 +3832,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3847,7 +3847,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3863,7 +3863,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -3894,7 +3894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3909,7 +3909,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -3997,7 +3997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4012,7 +4012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4027,7 +4027,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4043,7 +4043,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4074,7 +4074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4089,7 +4089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4109,7 +4109,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -4144,7 +4144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4159,7 +4159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4174,7 +4174,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4190,7 +4190,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4221,7 +4221,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4236,7 +4236,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4260,7 +4260,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4275,7 +4275,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4290,7 +4290,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4306,7 +4306,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4337,7 +4337,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4352,7 +4352,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4379,7 +4379,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IHostPool", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IHostPool, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IHostPool, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[]", "AgentUpdateMaintenanceWindow": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[]", @@ -4459,7 +4459,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -4493,7 +4493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4515,7 +4515,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4524,7 +4524,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4533,7 +4533,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4543,7 +4543,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4562,7 +4562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4571,7 +4571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -4639,7 +4639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4654,7 +4654,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4669,7 +4669,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4685,7 +4685,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4716,7 +4716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4731,7 +4731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4797,7 +4797,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4831,7 +4831,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4846,7 +4846,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4861,7 +4861,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4877,7 +4877,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -4908,7 +4908,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4923,7 +4923,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -4974,7 +4974,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5008,7 +5008,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5023,7 +5023,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5038,7 +5038,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5054,7 +5054,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5085,7 +5085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5100,7 +5100,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5120,7 +5120,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -5155,7 +5155,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5170,7 +5170,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5185,7 +5185,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5201,7 +5201,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5232,7 +5232,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5247,7 +5247,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5271,7 +5271,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5286,7 +5286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5301,7 +5301,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5317,7 +5317,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5348,7 +5348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5363,7 +5363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5390,7 +5390,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IRegistrationInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IRegistrationInfo, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IRegistrationInfo, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RegistrationTokenOperation": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation]", "ExpirationTime": "System.Nullable`1[System.DateTime]", @@ -5436,7 +5436,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -5465,7 +5465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5474,7 +5474,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5483,7 +5483,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5493,7 +5493,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5512,7 +5512,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5521,7 +5521,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -5586,7 +5586,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5601,7 +5601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5616,7 +5616,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5632,7 +5632,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5663,7 +5663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5678,7 +5678,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5698,7 +5698,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -5733,7 +5733,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5748,7 +5748,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5763,7 +5763,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5779,7 +5779,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5810,7 +5810,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5825,7 +5825,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5849,7 +5849,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5864,7 +5864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5879,7 +5879,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5895,7 +5895,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -5926,7 +5926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5941,7 +5941,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -5968,7 +5968,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackage", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackage, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackage, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PackageApplication": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[]", "PackageDependency": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[]", @@ -6040,7 +6040,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -6074,7 +6074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6096,7 +6096,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6105,7 +6105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6114,7 +6114,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6124,7 +6124,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6143,7 +6143,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6152,7 +6152,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -6235,7 +6235,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6250,7 +6250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6265,7 +6265,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6281,7 +6281,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6312,7 +6312,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6327,7 +6327,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6408,7 +6408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6442,7 +6442,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6457,7 +6457,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6472,7 +6472,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6488,7 +6488,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6519,7 +6519,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6534,7 +6534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6554,7 +6554,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -6589,7 +6589,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6604,7 +6604,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6619,7 +6619,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6635,7 +6635,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6666,7 +6666,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6681,7 +6681,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6705,7 +6705,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6720,7 +6720,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6735,7 +6735,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6751,7 +6751,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6782,7 +6782,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6797,7 +6797,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6824,7 +6824,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IPrivateEndpointConnectionWithSystemData", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IPrivateEndpointConnectionWithSystemData, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IPrivateEndpointConnectionWithSystemData, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -6894,7 +6894,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -6928,7 +6928,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6950,7 +6950,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6959,7 +6959,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -6968,7 +6968,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6978,7 +6978,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -6997,7 +6997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7006,7 +7006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -7089,7 +7089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7104,7 +7104,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7119,7 +7119,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7135,7 +7135,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7166,7 +7166,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7181,7 +7181,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7269,7 +7269,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7284,7 +7284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7299,7 +7299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7315,7 +7315,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7346,7 +7346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7361,7 +7361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7442,7 +7442,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7476,7 +7476,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7491,7 +7491,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7506,7 +7506,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7522,7 +7522,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7553,7 +7553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7568,7 +7568,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7638,7 +7638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7653,7 +7653,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7668,7 +7668,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7684,7 +7684,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7715,7 +7715,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7730,7 +7730,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7750,7 +7750,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -7785,7 +7785,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7800,7 +7800,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7815,7 +7815,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7831,7 +7831,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7862,7 +7862,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7877,7 +7877,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7897,7 +7897,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -7932,7 +7932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7947,7 +7947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -7962,7 +7962,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -7978,7 +7978,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8009,7 +8009,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8024,7 +8024,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8048,7 +8048,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8063,7 +8063,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8078,7 +8078,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8094,7 +8094,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8125,7 +8125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8140,7 +8140,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8167,7 +8167,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IPrivateLinkResource", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IPrivateLinkResource, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IPrivateLinkResource, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "GroupId": "System.String", "RequiredMember": "System.String[]", @@ -8231,7 +8231,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8253,7 +8253,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8262,7 +8262,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8271,7 +8271,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8281,7 +8281,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8300,7 +8300,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8309,7 +8309,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -8370,7 +8370,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8404,7 +8404,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8419,7 +8419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8434,7 +8434,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8450,7 +8450,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8481,7 +8481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8496,7 +8496,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8577,7 +8577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8611,7 +8611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8626,7 +8626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8641,7 +8641,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8657,7 +8657,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8688,7 +8688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8703,7 +8703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8784,7 +8784,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8818,7 +8818,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8833,7 +8833,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8848,7 +8848,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8864,7 +8864,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -8895,7 +8895,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8910,7 +8910,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -8937,7 +8937,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.RegistrationInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.RegistrationInfo, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.RegistrationInfo, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RegistrationTokenOperation": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation]", "ExpirationTime": "System.Nullable`1[System.DateTime]", @@ -9073,7 +9073,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9082,7 +9082,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9091,7 +9091,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9101,7 +9101,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9120,7 +9120,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9129,7 +9129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9193,7 +9193,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9208,7 +9208,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9223,7 +9223,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9239,7 +9239,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9270,7 +9270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9285,7 +9285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9312,7 +9312,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlan", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlan, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlan, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HostPoolReference": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[]", "Schedule": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[]", @@ -9372,7 +9372,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -9415,7 +9415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9437,7 +9437,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9446,7 +9446,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9455,7 +9455,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9465,7 +9465,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9484,7 +9484,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9493,7 +9493,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -9561,7 +9561,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9576,7 +9576,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9591,7 +9591,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9607,7 +9607,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9638,7 +9638,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9653,7 +9653,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9734,7 +9734,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9768,7 +9768,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9783,7 +9783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9798,7 +9798,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9814,7 +9814,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -9845,7 +9845,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9860,7 +9860,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9926,7 +9926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9960,7 +9960,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9975,7 +9975,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -9990,7 +9990,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10006,7 +10006,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10037,7 +10037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10052,7 +10052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10103,7 +10103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10137,7 +10137,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10152,7 +10152,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10167,7 +10167,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10183,7 +10183,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10214,7 +10214,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10229,7 +10229,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10249,7 +10249,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -10284,7 +10284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10299,7 +10299,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10314,7 +10314,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10330,7 +10330,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10361,7 +10361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10376,7 +10376,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10400,7 +10400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10415,7 +10415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10430,7 +10430,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10446,7 +10446,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10477,7 +10477,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10492,7 +10492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10519,7 +10519,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPersonalSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPersonalSchedule, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPersonalSchedule, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DaysOfWeek": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -10607,7 +10607,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -10641,7 +10641,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10663,7 +10663,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10672,7 +10672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10681,7 +10681,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10691,7 +10691,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10710,7 +10710,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10719,7 +10719,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -10795,7 +10795,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10829,7 +10829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10844,7 +10844,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10859,7 +10859,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10875,7 +10875,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -10906,7 +10906,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -10921,7 +10921,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11006,7 +11006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11021,7 +11021,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11036,7 +11036,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11052,7 +11052,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11083,7 +11083,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11098,7 +11098,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11118,7 +11118,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -11153,7 +11153,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11168,7 +11168,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11183,7 +11183,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11199,7 +11199,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11230,7 +11230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11245,7 +11245,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11269,7 +11269,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11284,7 +11284,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11299,7 +11299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11315,7 +11315,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11346,7 +11346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11361,7 +11361,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11388,7 +11388,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPooledSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPooledSchedule, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPooledSchedule, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DaysOfWeek": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -11467,7 +11467,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -11501,7 +11501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11523,7 +11523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11532,7 +11532,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11541,7 +11541,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11551,7 +11551,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11570,7 +11570,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11579,7 +11579,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -11655,7 +11655,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11689,7 +11689,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11704,7 +11704,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11719,7 +11719,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11735,7 +11735,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11766,7 +11766,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11781,7 +11781,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11866,7 +11866,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11881,7 +11881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11896,7 +11896,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11912,7 +11912,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -11943,7 +11943,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11958,7 +11958,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -11978,7 +11978,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -12013,7 +12013,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12028,7 +12028,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12043,7 +12043,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12059,7 +12059,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12090,7 +12090,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12105,7 +12105,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12129,7 +12129,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12144,7 +12144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12159,7 +12159,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12175,7 +12175,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12206,7 +12206,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12221,7 +12221,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12248,7 +12248,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHost", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHost, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHost, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HealthCheckResult": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHostHealthCheckReport[]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -12326,7 +12326,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -12360,7 +12360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12382,7 +12382,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12391,7 +12391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12400,7 +12400,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12410,7 +12410,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12429,7 +12429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12438,7 +12438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -12514,7 +12514,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12548,7 +12548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12563,7 +12563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12578,7 +12578,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12594,7 +12594,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12625,7 +12625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12640,7 +12640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12728,7 +12728,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12743,7 +12743,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12758,7 +12758,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12774,7 +12774,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12805,7 +12805,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12820,7 +12820,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12840,7 +12840,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -12875,7 +12875,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12890,7 +12890,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12905,7 +12905,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12921,7 +12921,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -12952,7 +12952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12967,7 +12967,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -12991,7 +12991,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13006,7 +13006,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13021,7 +13021,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13037,7 +13037,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13068,7 +13068,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13083,7 +13083,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13110,7 +13110,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IStartMenuItem", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IStartMenuItem, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IStartMenuItem, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IconIndex": "System.Nullable`1[System.Int32]", "AppAlias": "System.String", @@ -13167,7 +13167,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13189,7 +13189,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13198,7 +13198,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13207,7 +13207,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13217,7 +13217,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13236,7 +13236,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13245,7 +13245,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -13321,7 +13321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13355,7 +13355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13370,7 +13370,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13385,7 +13385,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13401,7 +13401,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13432,7 +13432,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13447,7 +13447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13474,7 +13474,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IUserSession", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IUserSession, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IUserSession, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationType]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -13550,7 +13550,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -13593,7 +13593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13615,7 +13615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13624,7 +13624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13633,7 +13633,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13643,7 +13643,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13662,7 +13662,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13671,7 +13671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -13762,7 +13762,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13796,7 +13796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13811,7 +13811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13826,7 +13826,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13842,7 +13842,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -13873,7 +13873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13888,7 +13888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -13984,7 +13984,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14018,7 +14018,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14033,7 +14033,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14048,7 +14048,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14064,7 +14064,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14095,7 +14095,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14110,7 +14110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14213,7 +14213,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14228,7 +14228,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14243,7 +14243,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14259,7 +14259,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14290,7 +14290,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14305,7 +14305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14325,7 +14325,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -14360,7 +14360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14375,7 +14375,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14390,7 +14390,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14406,7 +14406,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14437,7 +14437,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14452,7 +14452,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14476,7 +14476,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14491,7 +14491,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14506,7 +14506,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14522,7 +14522,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14553,7 +14553,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14568,7 +14568,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14595,7 +14595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -14654,7 +14654,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -14688,7 +14688,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14710,7 +14710,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14719,7 +14719,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14728,7 +14728,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14738,7 +14738,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14757,7 +14757,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14766,7 +14766,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -14834,7 +14834,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14849,7 +14849,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14864,7 +14864,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14880,7 +14880,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -14911,7 +14911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14926,7 +14926,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -14992,7 +14992,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15026,7 +15026,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15041,7 +15041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15056,7 +15056,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15072,7 +15072,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15103,7 +15103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15118,7 +15118,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15158,7 +15158,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15173,7 +15173,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15188,7 +15188,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15204,7 +15204,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15235,7 +15235,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15250,7 +15250,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15270,7 +15270,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -15305,7 +15305,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15320,7 +15320,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15335,7 +15335,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15351,7 +15351,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15382,7 +15382,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15397,7 +15397,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15421,7 +15421,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15436,7 +15436,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15451,7 +15451,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15467,7 +15467,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15498,7 +15498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15513,7 +15513,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15540,7 +15540,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplication", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplication, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplication, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CommandLineSetting": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", "IconContent": "System.Byte[]", @@ -15608,7 +15608,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15644,7 +15644,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15662,7 +15662,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15729,7 +15729,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15738,7 +15738,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15747,7 +15747,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15757,7 +15757,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15776,7 +15776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15785,7 +15785,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -15851,7 +15851,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15911,7 +15911,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15930,7 +15930,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15945,7 +15945,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -15960,7 +15960,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -15976,7 +15976,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16007,7 +16007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16022,7 +16022,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16108,7 +16108,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16168,7 +16168,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16187,7 +16187,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16202,7 +16202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16217,7 +16217,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16233,7 +16233,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16264,7 +16264,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16279,7 +16279,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16299,7 +16299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16455,7 +16455,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16515,7 +16515,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16534,7 +16534,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16549,7 +16549,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16564,7 +16564,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16580,7 +16580,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16611,7 +16611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16626,7 +16626,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16653,7 +16653,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplicationGroup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplicationGroup, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplicationGroup, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -16712,7 +16712,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16748,7 +16748,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16829,7 +16829,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16874,7 +16874,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16896,7 +16896,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16905,7 +16905,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16914,7 +16914,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16924,7 +16924,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -16943,7 +16943,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -16952,7 +16952,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -17015,7 +17015,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17075,7 +17075,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17210,7 +17210,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17285,7 +17285,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17319,7 +17319,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17334,7 +17334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17349,7 +17349,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17365,7 +17365,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17396,7 +17396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17411,7 +17411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17438,7 +17438,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IHostPool", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IHostPool, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IHostPool, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[]", "AgentUpdateMaintenanceWindow": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[]", @@ -17508,7 +17508,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17517,7 +17517,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17526,7 +17526,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17571,7 +17571,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties" }, "ValidateNotNullOrEmpty": false @@ -17590,7 +17590,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17599,7 +17599,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17644,7 +17644,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17680,7 +17680,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17734,7 +17734,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17752,7 +17752,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17806,7 +17806,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17833,7 +17833,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17851,7 +17851,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17878,7 +17878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17891,7 +17891,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17900,7 +17900,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17909,7 +17909,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17919,7 +17919,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -17938,7 +17938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -17947,7 +17947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -17995,7 +17995,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18010,7 +18010,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18025,7 +18025,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18074,7 +18074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18089,7 +18089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18104,7 +18104,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18120,7 +18120,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18151,7 +18151,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18166,7 +18166,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18249,7 +18249,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18264,7 +18264,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18279,7 +18279,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18328,7 +18328,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18343,7 +18343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18358,7 +18358,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18374,7 +18374,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -18405,7 +18405,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18420,7 +18420,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18440,7 +18440,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties" }, "ValidateNotNullOrEmpty": false @@ -18471,7 +18471,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18486,7 +18486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18561,7 +18561,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18621,7 +18621,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18711,7 +18711,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18741,7 +18741,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18831,7 +18831,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18876,7 +18876,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18906,7 +18906,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18951,7 +18951,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -18999,7 +18999,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19014,7 +19014,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19029,7 +19029,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19078,7 +19078,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19093,7 +19093,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19108,7 +19108,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19124,7 +19124,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19155,7 +19155,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19170,7 +19170,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19197,7 +19197,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackage", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackage, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackage, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PackageApplication": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[]", "PackageDependency": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[]", @@ -19286,7 +19286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19295,7 +19295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19322,7 +19322,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications" }, "ValidateNotNullOrEmpty": false @@ -19332,7 +19332,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies" }, "ValidateNotNullOrEmpty": false @@ -19382,7 +19382,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19391,7 +19391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19400,7 +19400,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19410,7 +19410,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19429,7 +19429,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19438,7 +19438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -19528,7 +19528,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19543,7 +19543,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19562,7 +19562,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19577,7 +19577,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19592,7 +19592,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19608,7 +19608,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19639,7 +19639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19654,7 +19654,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19707,7 +19707,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications" }, "ValidateNotNullOrEmpty": false @@ -19723,7 +19723,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies" }, "ValidateNotNullOrEmpty": false @@ -19874,7 +19874,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19889,7 +19889,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19908,7 +19908,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19923,7 +19923,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -19938,7 +19938,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19954,7 +19954,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -19985,7 +19985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20000,7 +20000,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20110,7 +20110,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20125,7 +20125,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20144,7 +20144,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20159,7 +20159,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20174,7 +20174,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20190,7 +20190,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20221,7 +20221,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20236,7 +20236,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20263,7 +20263,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IRegistrationInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IRegistrationInfo, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IRegistrationInfo, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RegistrationTokenOperation": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation]", "ExpirationTime": "System.Nullable`1[System.DateTime]", @@ -20321,7 +20321,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20330,7 +20330,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20339,7 +20339,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20349,7 +20349,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20368,7 +20368,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20377,7 +20377,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -20456,7 +20456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20471,7 +20471,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20486,7 +20486,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20502,7 +20502,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20533,7 +20533,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20548,7 +20548,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20575,7 +20575,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlan", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlan, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlan, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HostPoolReference": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[]", "Schedule": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[]", @@ -20670,7 +20670,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference" }, "ValidateNotNullOrEmpty": false @@ -20680,7 +20680,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20689,7 +20689,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20770,7 +20770,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule" }, "ValidateNotNullOrEmpty": false @@ -20816,7 +20816,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20838,7 +20838,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20847,7 +20847,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20856,7 +20856,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20866,7 +20866,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -20885,7 +20885,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -20894,7 +20894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -21017,7 +21017,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference" }, "ValidateNotNullOrEmpty": false @@ -21033,7 +21033,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21048,7 +21048,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21183,7 +21183,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule" }, "ValidateNotNullOrEmpty": false @@ -21259,7 +21259,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21293,7 +21293,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21308,7 +21308,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21323,7 +21323,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21339,7 +21339,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21370,7 +21370,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21385,7 +21385,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21412,7 +21412,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPersonalSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPersonalSchedule, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPersonalSchedule, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DaysOfWeek": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -21499,7 +21499,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -21509,7 +21509,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21518,7 +21518,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21563,7 +21563,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21572,7 +21572,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21581,7 +21581,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21626,7 +21626,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21635,7 +21635,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21644,7 +21644,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21689,7 +21689,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21698,7 +21698,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21707,7 +21707,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21716,7 +21716,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21761,7 +21761,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21774,7 +21774,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21783,7 +21783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21792,7 +21792,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21802,7 +21802,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -21821,7 +21821,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21830,7 +21830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -21905,7 +21905,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -21921,7 +21921,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -21936,7 +21936,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22011,7 +22011,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22026,7 +22026,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22041,7 +22041,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22116,7 +22116,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22131,7 +22131,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22146,7 +22146,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22221,7 +22221,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22236,7 +22236,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22251,7 +22251,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22266,7 +22266,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22341,7 +22341,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22360,7 +22360,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22375,7 +22375,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22390,7 +22390,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22406,7 +22406,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22437,7 +22437,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22452,7 +22452,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22479,7 +22479,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPooledSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPooledSchedule, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPooledSchedule, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DaysOfWeek": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -22557,7 +22557,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -22567,7 +22567,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22594,7 +22594,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22630,7 +22630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22639,7 +22639,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22684,7 +22684,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22711,7 +22711,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22751,7 +22751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22760,7 +22760,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22769,7 +22769,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22779,7 +22779,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -22798,7 +22798,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22807,7 +22807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -22882,7 +22882,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -22898,7 +22898,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -22943,7 +22943,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23003,7 +23003,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23018,7 +23018,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23093,7 +23093,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23138,7 +23138,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23202,7 +23202,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23217,7 +23217,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23232,7 +23232,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23248,7 +23248,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23279,7 +23279,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23294,7 +23294,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23321,7 +23321,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -23407,7 +23407,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23488,7 +23488,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23533,7 +23533,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23555,7 +23555,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23564,7 +23564,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23573,7 +23573,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23583,7 +23583,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -23602,7 +23602,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23611,7 +23611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -23720,7 +23720,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ResourceIdentityType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23855,7 +23855,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23930,7 +23930,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SkuTier, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23964,7 +23964,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23979,7 +23979,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -23994,7 +23994,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24010,7 +24010,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24041,7 +24041,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24056,7 +24056,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24083,7 +24083,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -24151,7 +24151,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24160,7 +24160,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24169,7 +24169,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24179,7 +24179,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24198,7 +24198,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24207,7 +24207,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -24286,7 +24286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24301,7 +24301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24316,7 +24316,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24332,7 +24332,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24363,7 +24363,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24378,7 +24378,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24460,7 +24460,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -24489,7 +24489,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24498,7 +24498,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24507,7 +24507,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24517,7 +24517,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24527,7 +24527,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24545,7 +24545,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24554,7 +24554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -24639,7 +24639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24654,7 +24654,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24669,7 +24669,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24685,7 +24685,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24701,7 +24701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24731,7 +24731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24746,7 +24746,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24766,7 +24766,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -24801,7 +24801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24816,7 +24816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24831,7 +24831,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24847,7 +24847,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24863,7 +24863,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24893,7 +24893,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24908,7 +24908,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24932,7 +24932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24947,7 +24947,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -24962,7 +24962,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24978,7 +24978,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -24994,7 +24994,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25024,7 +25024,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25039,7 +25039,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25109,7 +25109,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -25138,7 +25138,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25147,7 +25147,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25156,7 +25156,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25166,7 +25166,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25176,7 +25176,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25194,7 +25194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25203,7 +25203,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -25270,7 +25270,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25285,7 +25285,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25300,7 +25300,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25316,7 +25316,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25332,7 +25332,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25362,7 +25362,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25377,7 +25377,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25397,7 +25397,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -25432,7 +25432,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25447,7 +25447,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25462,7 +25462,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25478,7 +25478,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25494,7 +25494,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25524,7 +25524,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25539,7 +25539,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25563,7 +25563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25578,7 +25578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25593,7 +25593,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25609,7 +25609,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25625,7 +25625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25655,7 +25655,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25670,7 +25670,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25740,7 +25740,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -25765,7 +25765,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25778,7 +25778,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25787,7 +25787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25796,7 +25796,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25806,7 +25806,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25816,7 +25816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25834,7 +25834,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25843,7 +25843,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -25906,7 +25906,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25925,7 +25925,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25940,7 +25940,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -25955,7 +25955,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25971,7 +25971,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -25987,7 +25987,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26017,7 +26017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26032,7 +26032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26052,7 +26052,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -26083,7 +26083,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26102,7 +26102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26117,7 +26117,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26132,7 +26132,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26148,7 +26148,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26164,7 +26164,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26194,7 +26194,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26209,7 +26209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26229,7 +26229,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26248,7 +26248,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26263,7 +26263,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26278,7 +26278,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26294,7 +26294,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26310,7 +26310,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26340,7 +26340,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26355,7 +26355,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26434,7 +26434,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -26463,7 +26463,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26472,7 +26472,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26481,7 +26481,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26491,7 +26491,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26501,7 +26501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26519,7 +26519,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26528,7 +26528,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -26610,7 +26610,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26625,7 +26625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26640,7 +26640,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26656,7 +26656,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26672,7 +26672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26702,7 +26702,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26717,7 +26717,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26737,7 +26737,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -26772,7 +26772,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26787,7 +26787,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26802,7 +26802,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26818,7 +26818,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26834,7 +26834,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26864,7 +26864,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26879,7 +26879,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26903,7 +26903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26918,7 +26918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26933,7 +26933,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26949,7 +26949,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -26965,7 +26965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -26995,7 +26995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27010,7 +27010,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27098,7 +27098,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -27127,7 +27127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27136,7 +27136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27145,7 +27145,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27155,7 +27155,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27165,7 +27165,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27183,7 +27183,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27192,7 +27192,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -27274,7 +27274,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27289,7 +27289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27304,7 +27304,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27320,7 +27320,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27336,7 +27336,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27366,7 +27366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27381,7 +27381,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27468,7 +27468,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27483,7 +27483,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27498,7 +27498,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27514,7 +27514,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27530,7 +27530,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27560,7 +27560,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27575,7 +27575,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27595,7 +27595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -27630,7 +27630,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27645,7 +27645,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27660,7 +27660,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27676,7 +27676,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27692,7 +27692,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27722,7 +27722,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27737,7 +27737,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27757,7 +27757,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -27792,7 +27792,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27807,7 +27807,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27822,7 +27822,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27838,7 +27838,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27854,7 +27854,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27884,7 +27884,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27899,7 +27899,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27923,7 +27923,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27938,7 +27938,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -27953,7 +27953,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27969,7 +27969,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -27985,7 +27985,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28015,7 +28015,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28030,7 +28030,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28089,7 +28089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28098,7 +28098,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28107,7 +28107,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28117,7 +28117,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28136,7 +28136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28145,7 +28145,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -28209,7 +28209,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28224,7 +28224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28239,7 +28239,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28255,7 +28255,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28286,7 +28286,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28301,7 +28301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28371,7 +28371,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -28400,7 +28400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28409,7 +28409,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28418,7 +28418,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28428,7 +28428,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28438,7 +28438,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28456,7 +28456,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28465,7 +28465,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -28532,7 +28532,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28547,7 +28547,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28562,7 +28562,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28578,7 +28578,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28594,7 +28594,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28624,7 +28624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28639,7 +28639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28659,7 +28659,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -28694,7 +28694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28709,7 +28709,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28724,7 +28724,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28740,7 +28740,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28756,7 +28756,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28786,7 +28786,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28801,7 +28801,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28825,7 +28825,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28840,7 +28840,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28855,7 +28855,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28871,7 +28871,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -28887,7 +28887,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28917,7 +28917,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -28932,7 +28932,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29008,7 +29008,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -29037,7 +29037,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29046,7 +29046,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29055,7 +29055,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29065,7 +29065,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29075,7 +29075,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29093,7 +29093,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29102,7 +29102,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -29181,7 +29181,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29196,7 +29196,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29211,7 +29211,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29227,7 +29227,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29243,7 +29243,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29273,7 +29273,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29288,7 +29288,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29308,7 +29308,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -29343,7 +29343,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29358,7 +29358,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29373,7 +29373,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29389,7 +29389,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29405,7 +29405,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29435,7 +29435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29450,7 +29450,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29474,7 +29474,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29489,7 +29489,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29504,7 +29504,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29520,7 +29520,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29536,7 +29536,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29566,7 +29566,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29581,7 +29581,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29657,7 +29657,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -29686,7 +29686,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29695,7 +29695,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29704,7 +29704,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29714,7 +29714,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29724,7 +29724,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29742,7 +29742,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29751,7 +29751,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -29830,7 +29830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29845,7 +29845,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29860,7 +29860,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29876,7 +29876,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -29892,7 +29892,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29922,7 +29922,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29937,7 +29937,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -29957,7 +29957,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -29992,7 +29992,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30007,7 +30007,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30022,7 +30022,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30038,7 +30038,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30054,7 +30054,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30084,7 +30084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30099,7 +30099,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30123,7 +30123,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30138,7 +30138,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30153,7 +30153,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30169,7 +30169,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30185,7 +30185,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30215,7 +30215,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30230,7 +30230,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30309,7 +30309,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -30334,7 +30334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30347,7 +30347,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30356,7 +30356,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30365,7 +30365,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30375,7 +30375,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30385,7 +30385,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30403,7 +30403,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30412,7 +30412,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -30490,7 +30490,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30509,7 +30509,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30524,7 +30524,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30539,7 +30539,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30555,7 +30555,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30571,7 +30571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30601,7 +30601,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30616,7 +30616,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30636,7 +30636,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -30667,7 +30667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30686,7 +30686,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30701,7 +30701,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30716,7 +30716,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30732,7 +30732,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30748,7 +30748,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30778,7 +30778,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30793,7 +30793,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30813,7 +30813,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30832,7 +30832,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30847,7 +30847,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30862,7 +30862,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30878,7 +30878,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -30894,7 +30894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30924,7 +30924,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -30939,7 +30939,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31027,7 +31027,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -31052,7 +31052,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31065,7 +31065,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31074,7 +31074,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31083,7 +31083,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31093,7 +31093,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31103,7 +31103,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31121,7 +31121,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31130,7 +31130,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -31223,7 +31223,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31242,7 +31242,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31257,7 +31257,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31272,7 +31272,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31288,7 +31288,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31304,7 +31304,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31334,7 +31334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31349,7 +31349,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31369,7 +31369,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -31400,7 +31400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31419,7 +31419,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31434,7 +31434,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31449,7 +31449,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31465,7 +31465,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31481,7 +31481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31511,7 +31511,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31526,7 +31526,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31546,7 +31546,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31565,7 +31565,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31580,7 +31580,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31595,7 +31595,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31611,7 +31611,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31627,7 +31627,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31657,7 +31657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31672,7 +31672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31742,7 +31742,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -31771,7 +31771,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31780,7 +31780,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31789,7 +31789,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31799,7 +31799,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31809,7 +31809,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31827,7 +31827,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31836,7 +31836,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -31903,7 +31903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31918,7 +31918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31933,7 +31933,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31949,7 +31949,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -31965,7 +31965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -31995,7 +31995,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32010,7 +32010,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32030,7 +32030,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -32065,7 +32065,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32080,7 +32080,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32095,7 +32095,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32111,7 +32111,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32127,7 +32127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32157,7 +32157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32172,7 +32172,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32196,7 +32196,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32211,7 +32211,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32226,7 +32226,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32242,7 +32242,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32258,7 +32258,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32288,7 +32288,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32303,7 +32303,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32388,7 +32388,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -32435,7 +32435,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32444,7 +32444,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32453,7 +32453,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32463,7 +32463,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32473,7 +32473,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32491,7 +32491,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32500,7 +32500,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -32624,7 +32624,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32639,7 +32639,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32654,7 +32654,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32670,7 +32670,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32686,7 +32686,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32716,7 +32716,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32731,7 +32731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32751,7 +32751,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -32816,7 +32816,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32831,7 +32831,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32846,7 +32846,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32862,7 +32862,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -32878,7 +32878,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32908,7 +32908,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32923,7 +32923,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32977,7 +32977,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -32992,7 +32992,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33007,7 +33007,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33023,7 +33023,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33039,7 +33039,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33069,7 +33069,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33084,7 +33084,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33111,7 +33111,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -33179,7 +33179,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33188,7 +33188,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33197,7 +33197,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33207,7 +33207,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33226,7 +33226,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33235,7 +33235,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -33314,7 +33314,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33329,7 +33329,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33344,7 +33344,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33360,7 +33360,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33391,7 +33391,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33406,7 +33406,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33433,7 +33433,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplication", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplication, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplication, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "CommandLineSetting": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", "IconContent": "System.Byte[]", @@ -33510,7 +33510,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -33535,7 +33535,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33553,7 +33553,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33625,7 +33625,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33647,7 +33647,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33656,7 +33656,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33665,7 +33665,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33675,7 +33675,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -33694,7 +33694,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33703,7 +33703,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -33784,7 +33784,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33814,7 +33814,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33934,7 +33934,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33968,7 +33968,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33983,7 +33983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -33998,7 +33998,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34014,7 +34014,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34045,7 +34045,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34060,7 +34060,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34080,7 +34080,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -34111,7 +34111,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34141,7 +34141,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34261,7 +34261,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34295,7 +34295,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34310,7 +34310,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34325,7 +34325,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34341,7 +34341,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34372,7 +34372,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34387,7 +34387,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34407,7 +34407,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34437,7 +34437,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34557,7 +34557,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34591,7 +34591,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34606,7 +34606,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34621,7 +34621,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34637,7 +34637,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34668,7 +34668,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34683,7 +34683,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34710,7 +34710,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplicationGroup", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplicationGroup, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IApplicationGroup, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -34769,7 +34769,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -34812,7 +34812,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34834,7 +34834,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34843,7 +34843,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34852,7 +34852,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34862,7 +34862,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -34881,7 +34881,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -34890,7 +34890,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -34983,7 +34983,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35017,7 +35017,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35032,7 +35032,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35047,7 +35047,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -35063,7 +35063,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -35094,7 +35094,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35109,7 +35109,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35129,7 +35129,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -35190,7 +35190,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35224,7 +35224,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35239,7 +35239,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35254,7 +35254,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -35270,7 +35270,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -35301,7 +35301,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35316,7 +35316,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35366,7 +35366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35400,7 +35400,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35415,7 +35415,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35430,7 +35430,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -35446,7 +35446,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -35477,7 +35477,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35492,7 +35492,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35519,7 +35519,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IDesktop", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IDesktop, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IDesktop, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "IconContent": "System.Byte[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -35584,7 +35584,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -35640,7 +35640,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35649,7 +35649,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35658,7 +35658,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -35668,7 +35668,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -35687,7 +35687,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35696,7 +35696,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -35823,7 +35823,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35838,7 +35838,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35853,7 +35853,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -35869,7 +35869,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -35900,7 +35900,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35915,7 +35915,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -35935,7 +35935,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -36015,7 +36015,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36030,7 +36030,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36045,7 +36045,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -36061,7 +36061,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -36092,7 +36092,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36107,7 +36107,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36176,7 +36176,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36191,7 +36191,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36206,7 +36206,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -36222,7 +36222,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -36253,7 +36253,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36268,7 +36268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36295,7 +36295,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IHostPool", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IHostPool, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IHostPool, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[]", "AgentUpdateMaintenanceWindow": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[]", @@ -36374,7 +36374,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -36399,7 +36399,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties" }, "ValidateNotNullOrEmpty": false @@ -36418,7 +36418,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36427,7 +36427,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36463,7 +36463,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36481,7 +36481,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36490,7 +36490,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36499,7 +36499,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36517,7 +36517,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36553,7 +36553,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36571,7 +36571,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36598,7 +36598,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36611,7 +36611,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36620,7 +36620,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36629,7 +36629,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -36639,7 +36639,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -36658,7 +36658,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36667,7 +36667,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -36730,7 +36730,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties" }, "ValidateNotNullOrEmpty": false @@ -36761,7 +36761,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36776,7 +36776,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36836,7 +36836,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36866,7 +36866,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36881,7 +36881,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36896,7 +36896,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36926,7 +36926,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -36986,7 +36986,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37016,7 +37016,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37061,7 +37061,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37080,7 +37080,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37095,7 +37095,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37110,7 +37110,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -37126,7 +37126,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -37157,7 +37157,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37172,7 +37172,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37192,7 +37192,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -37223,7 +37223,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties" }, "ValidateNotNullOrEmpty": false @@ -37254,7 +37254,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37269,7 +37269,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37329,7 +37329,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37359,7 +37359,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37374,7 +37374,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37389,7 +37389,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37419,7 +37419,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37479,7 +37479,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37509,7 +37509,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37554,7 +37554,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37573,7 +37573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37588,7 +37588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37603,7 +37603,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -37619,7 +37619,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -37650,7 +37650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37665,7 +37665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37685,7 +37685,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties" }, "ValidateNotNullOrEmpty": false @@ -37716,7 +37716,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37731,7 +37731,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37791,7 +37791,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37821,7 +37821,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37836,7 +37836,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37851,7 +37851,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37881,7 +37881,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37941,7 +37941,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -37971,7 +37971,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38016,7 +38016,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38035,7 +38035,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38050,7 +38050,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38065,7 +38065,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -38081,7 +38081,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -38112,7 +38112,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38127,7 +38127,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38154,7 +38154,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackage", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackage, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackage, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PackageApplication": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[]", "PackageDependency": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[]", @@ -38225,7 +38225,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -38259,7 +38259,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38268,7 +38268,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38281,7 +38281,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38290,7 +38290,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38299,7 +38299,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -38309,7 +38309,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -38328,7 +38328,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38337,7 +38337,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -38430,7 +38430,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38445,7 +38445,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38464,7 +38464,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38479,7 +38479,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38494,7 +38494,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -38510,7 +38510,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -38541,7 +38541,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38556,7 +38556,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38576,7 +38576,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -38622,7 +38622,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38637,7 +38637,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38656,7 +38656,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38671,7 +38671,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38686,7 +38686,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -38702,7 +38702,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -38733,7 +38733,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38748,7 +38748,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38783,7 +38783,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38798,7 +38798,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38817,7 +38817,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38832,7 +38832,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38847,7 +38847,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -38863,7 +38863,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -38894,7 +38894,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38909,7 +38909,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -38936,7 +38936,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlan", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlan, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlan, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HostPoolReference": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[]", "Schedule": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[]", @@ -38995,7 +38995,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -39047,7 +39047,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference" }, "ValidateNotNullOrEmpty": false @@ -39057,7 +39057,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule" }, "ValidateNotNullOrEmpty": false @@ -39089,7 +39089,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39098,7 +39098,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39107,7 +39107,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -39117,7 +39117,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -39136,7 +39136,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39145,7 +39145,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -39253,7 +39253,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference" }, "ValidateNotNullOrEmpty": false @@ -39269,7 +39269,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule" }, "ValidateNotNullOrEmpty": false @@ -39319,7 +39319,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39334,7 +39334,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39349,7 +39349,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -39365,7 +39365,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -39396,7 +39396,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39411,7 +39411,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39431,7 +39431,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -39507,7 +39507,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference" }, "ValidateNotNullOrEmpty": false @@ -39523,7 +39523,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule" }, "ValidateNotNullOrEmpty": false @@ -39573,7 +39573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39588,7 +39588,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39603,7 +39603,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -39619,7 +39619,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -39650,7 +39650,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39665,7 +39665,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39730,7 +39730,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference" }, "ValidateNotNullOrEmpty": false @@ -39746,7 +39746,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule" }, "ValidateNotNullOrEmpty": false @@ -39796,7 +39796,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39811,7 +39811,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39826,7 +39826,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -39842,7 +39842,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -39873,7 +39873,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39888,7 +39888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -39915,7 +39915,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPersonalSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPersonalSchedule, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPersonalSchedule, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DaysOfWeek": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -40002,7 +40002,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -40027,7 +40027,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -40037,7 +40037,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40046,7 +40046,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40091,7 +40091,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40100,7 +40100,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40109,7 +40109,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40154,7 +40154,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40163,7 +40163,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40172,7 +40172,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40217,7 +40217,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40226,7 +40226,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40235,7 +40235,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40244,7 +40244,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40289,7 +40289,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40302,7 +40302,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40311,7 +40311,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40320,7 +40320,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -40330,7 +40330,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -40349,7 +40349,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40358,7 +40358,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -40433,7 +40433,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -40449,7 +40449,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40464,7 +40464,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40539,7 +40539,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40554,7 +40554,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40569,7 +40569,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40644,7 +40644,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40659,7 +40659,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40674,7 +40674,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40749,7 +40749,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40764,7 +40764,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40779,7 +40779,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40794,7 +40794,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40869,7 +40869,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40888,7 +40888,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40903,7 +40903,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40918,7 +40918,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -40934,7 +40934,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -40965,7 +40965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -40980,7 +40980,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41000,7 +41000,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -41031,7 +41031,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -41047,7 +41047,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41062,7 +41062,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41137,7 +41137,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41152,7 +41152,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41167,7 +41167,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41242,7 +41242,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41257,7 +41257,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41272,7 +41272,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41347,7 +41347,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41362,7 +41362,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41377,7 +41377,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41392,7 +41392,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41467,7 +41467,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41486,7 +41486,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41501,7 +41501,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41516,7 +41516,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -41532,7 +41532,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -41563,7 +41563,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41578,7 +41578,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41598,7 +41598,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -41614,7 +41614,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41629,7 +41629,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41704,7 +41704,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41719,7 +41719,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41734,7 +41734,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41809,7 +41809,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41824,7 +41824,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41839,7 +41839,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41914,7 +41914,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41929,7 +41929,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41944,7 +41944,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -41959,7 +41959,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42034,7 +42034,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42053,7 +42053,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42068,7 +42068,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42083,7 +42083,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -42099,7 +42099,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -42130,7 +42130,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42145,7 +42145,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42172,7 +42172,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPooledSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPooledSchedule, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingPlanPooledSchedule, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DaysOfWeek": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -42250,7 +42250,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -42275,7 +42275,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -42285,7 +42285,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42312,7 +42312,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42348,7 +42348,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42357,7 +42357,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42402,7 +42402,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42429,7 +42429,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42469,7 +42469,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42478,7 +42478,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42487,7 +42487,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -42497,7 +42497,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -42516,7 +42516,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42525,7 +42525,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -42600,7 +42600,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -42616,7 +42616,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42661,7 +42661,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42721,7 +42721,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42736,7 +42736,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42811,7 +42811,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42856,7 +42856,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42920,7 +42920,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42935,7 +42935,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -42950,7 +42950,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -42966,7 +42966,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -42997,7 +42997,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43012,7 +43012,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43032,7 +43032,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -43063,7 +43063,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -43079,7 +43079,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43124,7 +43124,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43184,7 +43184,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43199,7 +43199,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43274,7 +43274,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43319,7 +43319,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43383,7 +43383,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43398,7 +43398,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43413,7 +43413,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -43429,7 +43429,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -43460,7 +43460,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43475,7 +43475,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43495,7 +43495,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "ValidateNotNullOrEmpty": false @@ -43511,7 +43511,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43556,7 +43556,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43616,7 +43616,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43631,7 +43631,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43706,7 +43706,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43751,7 +43751,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43815,7 +43815,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43830,7 +43830,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43845,7 +43845,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -43861,7 +43861,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -43892,7 +43892,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43907,7 +43907,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -43934,7 +43934,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHost", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHost, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHost, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HealthCheckResult": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHostHealthCheckReport[]", "SystemDataLastModifiedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -44011,7 +44011,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -44036,7 +44036,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44045,7 +44045,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44076,7 +44076,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44085,7 +44085,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44094,7 +44094,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -44104,7 +44104,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -44123,7 +44123,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44132,7 +44132,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -44210,7 +44210,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44225,7 +44225,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44274,7 +44274,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44289,7 +44289,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44304,7 +44304,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -44320,7 +44320,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -44351,7 +44351,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44366,7 +44366,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44386,7 +44386,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -44417,7 +44417,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44432,7 +44432,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44481,7 +44481,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44496,7 +44496,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44511,7 +44511,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -44527,7 +44527,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -44558,7 +44558,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44573,7 +44573,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44593,7 +44593,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44608,7 +44608,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44657,7 +44657,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44672,7 +44672,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44687,7 +44687,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -44703,7 +44703,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -44734,7 +44734,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44749,7 +44749,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44776,7 +44776,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IWorkspace, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "PrivateEndpointConnection": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[]", "SystemDataCreatedByType": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", @@ -44834,7 +44834,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -44887,7 +44887,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44909,7 +44909,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44918,7 +44918,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44927,7 +44927,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -44937,7 +44937,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -44956,7 +44956,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -44965,7 +44965,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false } @@ -45074,7 +45074,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45108,7 +45108,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45123,7 +45123,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45138,7 +45138,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -45154,7 +45154,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -45185,7 +45185,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45200,7 +45200,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45220,7 +45220,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.IDesktopVirtualizationIdentity, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ApplicationGroupName": "System.String", "ApplicationName": "System.String", @@ -45297,7 +45297,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45331,7 +45331,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45346,7 +45346,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45361,7 +45361,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -45377,7 +45377,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -45408,7 +45408,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45423,7 +45423,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45489,7 +45489,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45523,7 +45523,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSObject", - "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSObject, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45538,7 +45538,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45553,7 +45553,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -45569,7 +45569,7 @@ "Type": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep" }, "ValidateNotNullOrEmpty": false @@ -45600,7 +45600,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.PSCredential", - "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.PSCredential, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45615,7 +45615,7 @@ "Type": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.SwitchParameter", - "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.SwitchParameter, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "ValidateNotNullOrEmpty": false }, @@ -45675,7 +45675,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.SendAsyncStep, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Target": "System.Object", "Method": "System.Reflection.MethodInfo" @@ -45858,13 +45858,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications" }, "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageApplications, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RawIcon": "System.Byte[]", "RawPng": "System.Byte[]", @@ -45884,13 +45884,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies" }, "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMsixPackageDependencies, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DependencyName": "System.String", "MinVersion": "System.String", @@ -45921,7 +45921,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CommandLineSetting, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -45986,7 +45986,7 @@ "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]": { "Namespace": "System.Collections.Generic", "Name": "System.Collections.Generic.IEnumerable`1[System.Management.Automation.CompletionResult]", - "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Collections.Generic.IEnumerable`1[[System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "System.Management.Automation.CompletionResult" ] @@ -45994,12 +45994,12 @@ "System.Management.Automation.CompletionResult": { "Namespace": "System.Management.Automation", "Name": "System.Management.Automation.CompletionResult", - "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.2.10.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" + "AssemblyQualifiedName": "System.Management.Automation.CompletionResult, System.Management.Automation, Version=7.2.21.500, Culture=neutral, PublicKeyToken=31bf3856ad364e35" }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType" ] @@ -46007,7 +46007,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.CreatedByType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46072,7 +46072,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType" ] @@ -46080,7 +46080,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RemoteApplicationType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46153,7 +46153,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46218,13 +46218,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection" }, "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20.IPrivateEndpointConnection, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ProvisioningState": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointConnectionProvisioningState]", "PrivateLinkServiceConnectionStateStatus": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointServiceConnectionStatus]", @@ -46236,7 +46236,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointConnectionProvisioningState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointConnectionProvisioningState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointConnectionProvisioningState, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointConnectionProvisioningState, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointConnectionProvisioningState" ] @@ -46244,7 +46244,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointConnectionProvisioningState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointConnectionProvisioningState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointConnectionProvisioningState, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointConnectionProvisioningState, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46309,7 +46309,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointServiceConnectionStatus]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointServiceConnectionStatus]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointServiceConnectionStatus, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointServiceConnectionStatus, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointServiceConnectionStatus" ] @@ -46317,7 +46317,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointServiceConnectionStatus": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointServiceConnectionStatus", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointServiceConnectionStatus, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PrivateEndpointServiceConnectionStatus, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46382,13 +46382,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties" }, "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowProperties, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DayOfWeek": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek]", "Hour": "System.Nullable`1[System.Int32]" @@ -46397,7 +46397,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" ] @@ -46405,7 +46405,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46470,7 +46470,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostPoolType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46535,7 +46535,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.LoadBalancerType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46600,7 +46600,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PreferredAppGroupType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46665,7 +46665,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess" ] @@ -46673,7 +46673,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HostpoolPublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46738,7 +46738,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType" ] @@ -46746,7 +46746,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PersonalDesktopAssignmentType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46811,7 +46811,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation" ] @@ -46819,7 +46819,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46884,7 +46884,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType" ] @@ -46892,7 +46892,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostComponentUpdateType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -46957,7 +46957,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType" ] @@ -46965,7 +46965,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SsoSecretType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47036,7 +47036,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IRegistrationInfo": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IRegistrationInfo", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IRegistrationInfo, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IRegistrationInfo, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RegistrationTokenOperation": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.RegistrationTokenOperation]", "ExpirationTime": "System.Nullable`1[System.DateTime]", @@ -47046,7 +47046,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.Json.JsonNode": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.Json", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.Json.JsonNode", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.Json.JsonNode, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.Json.JsonNode, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "Item": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Runtime.Json.JsonNode" }, @@ -47078,13 +47078,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference" }, "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingHostPoolReference, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "ScalingPlanEnabled": "System.Nullable`1[System.Boolean]", "HostPoolArmPath": "System.String" @@ -47093,13 +47093,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule" }, "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IScalingSchedule, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "RampDownLoadBalancingAlgorithm": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm]", "OffPeakLoadBalancingAlgorithm": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm]", @@ -47128,7 +47128,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm" ] @@ -47136,7 +47136,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHostLoadBalancingAlgorithm, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47201,7 +47201,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen" ] @@ -47209,7 +47209,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StopHostsWhen, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47274,7 +47274,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType" ] @@ -47282,7 +47282,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ScalingHostPoolType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47347,13 +47347,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek" }, "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation" ] @@ -47361,7 +47361,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionHandlingOperation, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47426,7 +47426,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect" ] @@ -47434,7 +47434,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SetStartVMOnConnect, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47499,7 +47499,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior" ] @@ -47507,7 +47507,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.StartupBehavior, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47572,13 +47572,13 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHostHealthCheckReport[]": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHostHealthCheckReport[]", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHostHealthCheckReport[], Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHostHealthCheckReport[], Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "ElementType": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHostHealthCheckReport" }, "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHostHealthCheckReport": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHostHealthCheckReport", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHostHealthCheckReport, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.ISessionHostHealthCheckReport, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "HealthCheckName": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckName]", "HealthCheckResult": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckResult]", @@ -47590,7 +47590,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckName]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckName]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckName, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckName, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckName" ] @@ -47598,7 +47598,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckName": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckName", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckName, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckName, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47663,7 +47663,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckResult]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckResult]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckResult, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckResult, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckResult" ] @@ -47671,7 +47671,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckResult": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckResult", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckResult, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckResult, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47736,7 +47736,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.Status]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.Status]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.Status, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.Status, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.Status" ] @@ -47744,7 +47744,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.Status": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.Status", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.Status, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.Status, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47809,7 +47809,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.UpdateState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.UpdateState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.UpdateState, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.UpdateState, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.UpdateState" ] @@ -47817,7 +47817,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.UpdateState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.UpdateState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.UpdateState, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.UpdateState, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47882,7 +47882,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationType]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationType]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationType" ] @@ -47890,7 +47890,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationType": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationType", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationType, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.ApplicationType, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -47955,7 +47955,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionState]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionState]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionState, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionState, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionState" ] @@ -47963,7 +47963,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionState": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionState", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionState, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.SessionState, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -48028,7 +48028,7 @@ "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess]": { "Namespace": "System", "Name": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess]", - "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", + "AssemblyQualifiedName": "System.Nullable`1[[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35]], System.Private.CoreLib, Version=6.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e", "GenericTypeArguments": [ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess" ] @@ -48036,7 +48036,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.PublicNetworkAccess, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Methods": [ { "Name": "CompleteArgument", @@ -48101,7 +48101,7 @@ "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties": { "Namespace": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905", "Name": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties", - "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties, Az.DesktopVirtualization.private, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", + "AssemblyQualifiedName": "Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Models.Api20230905.IMaintenanceWindowPatchProperties, Az.DesktopVirtualization.private, Version=4.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35", "Properties": { "DayOfWeek": "System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.DayOfWeek]", "Hour": "System.Nullable`1[System.Int32]" diff --git a/tools/VersionController/MinimalVersion.csv b/tools/VersionController/MinimalVersion.csv index 08e78ea58eb4..853de8dbe804 100644 --- a/tools/VersionController/MinimalVersion.csv +++ b/tools/VersionController/MinimalVersion.csv @@ -1,2 +1,2 @@ "Module","Minimal Version" -"Az.ConnectedMachine","1.0.0" \ No newline at end of file +"Az.ConnectedMachine","1.0.0"

v-{({`ri4@U8&dtuW@k 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≶qV1=bu`b?i#;&j(#|m4zAp#Tm>!K%QOsYml$C z0OfE_vQi)P;oz4|h?QSr<#%a@hgdws;wiSWyzre@OE}JpxE^c+thsKxz{5I5e(6s= zFW3<0=%7!>z{7VX(sSisN4zF*XYk0L7b5QA*jxA&=){!Sll&+n+LrZ%bxD01G5eNY z;OQFDVi^%@F4qHCI`;zZj=AWhz%QN2qcuoxV3j-NY&sohTEL$`@Ko$W@~lYT3{QVx z*_>GRB$hpClh4pOt+%J?raCqOGI?%f8Ws`*!7now?y+AM@J5)QPXQi*xYC(eIulFhF&X*HJLP;HP0NP4xgt5Sq zPb~Swl0Obu`tut%*?CeXF0tYgEAA9v)yZkVvd;`)t#fAr>s=e^YIme-?K~S;I?#r# zus_3kI|p>hp9?Jc+~?PO|M{RRkHpfGSb8qZ@DPiKSUih?rNcmA*j{+=Y-AhoH-5efdARS2ff?s-WVZSEC-HmIyTPni|IWoO?$>`C%NC_JMoh*Jm2(c?tIcUO_wwbKppkyLUwX`19@> zoP6h%INs$u&%Vc#f^qm4V~+7&6YukoM;hI^T)$~2S=&k0b}q)aKkM!XPyJ>TYcth(*f^Yb@cdrIMX7T^7y2Y(d& zzMm!qi#*>o>E1z2&#hm=?|~5~zm0pLWImIB+WzF=gJA9}n4kB@_$6WA(4Jov<2y~n$(LV)XZJn-7;$dD zjmV>YC(qf6_vd0Ak@?+F3bqaM!+yPNW*(fkPe+`53CnCF9@6{+wl#rs6#IUwBsl^525^tnVeu_i^NhA9dRiJ)Eo8 z!&8j5=`okA<4M-%ZOA&FlW3IgXUIAq$T}Z3U>$$EJ&?br&<)PSzUx`kbqpRIs}taZ z_z}RL5GOCK#XcN-3Vine;CodcAAu*d&UyCj!Sx;HF#XIk!^g=y7HgdMD#=g0;(mY1 zob;UU{Z|ep2TMIy-I*M$@ch9%yf*`!ak_gRBMW29JZ%pp1?v!(wq1eW&w37HPJYgp zZABiwgKIPX@&51*#8Z&xo0uoePo6%QB)>6XetqVO@!w-^^!Pl_9>ueEVCLce^RSQW z_L2iX`@&-una|t&#e4La#WuhG3A{JYxBuQ&_sl=*V%glQT)$qMpAYi{R72TXCKEu8))XPO~WH74MnkeG>a*F!wnn;B(=B2;b@R z9baX>zX%BrKaK4L^M~DV?foy^hxra> z{3;W_2In>$&vj^n?gyH|Urxq-{!ihY5d8L6ao*-R9mg8Zf5vb9VN!6ukN^8|%n8po zUX8z>;+cO#mVV~feG6IlEqo5G0Ov64;pbf9du4A1^IVtr+4#N)JwNAt0J5HgZA2bj zUySQD5#xFere)bjW&Q4h&oAxp^>S|WJq8@-FE4TL)+4|5QOEddT+XAIrv>?StjO9g zvi7Uhcsjrw&jYB7yaxM2jwe~ihkngN);!z6T9(|3^UUN1oQs0BEZg~~C$S$uoMXt} zC9z+_h;weR&F$bt2iv+<`ve@-V*}Jeo)6e*J-1FrAik#l% z&NJ0d&tg=lb#b4d*JUsJoNN!d5gRxCyf^sZkC6`xjO+6ijGy{ma?sv@^H{V^?`M+P zwiYBJ>pf4hUhni9KUw``^^?^lxVYp5~L+;2>p_%RbdVdAGuJO$@Q%*i|%V4nZK>GNwlnNyj0lv!4p=g+VB zbLJeMhrf}02kVIQ|5J^Q`CYI)*N3^s_;rZig0kP;iR(%-*5ePp@8(`H^5}dZ>v4pv z&nLH|?6Fb2x5}5Dk9P^~1aCw9xnbl5-vu7~fII(TSslZB5nr+%^8%hX(9XT>s2fbr zd;4m5hL$GzCl zi=dyzehl#~w_zK`7!)GTJTnm|zw`^78+%@fXPhd)%&EtkQh4}x;?6_-W#rMZVw~r1 z7yGh$&B$$^-xpkt_(I=i_GO9TTEq14y#!x|pK%=@`Yr4FqF*v){JZ0>cH%y z9PbRTGfcm(>t++zcJf%Z(Z|{T7Q?NEI}FpWePLYNzukD4M?H+Ir_*?tUp4QZWS+@0agN~q$V{Hg!kz2SKIkj#PvA16U_4sJ%>*@BXQ0^ z)?+&luhj4EEN${@Z#8~mXn!h3C{dRi# zzk>G)!7~_2cz7<&d*(MHp5yD{`X%dnDF*BKmx1+|RRPvx);f8CX zYIq*Qy(9fiE3XrIjM#{rI))XPCpv}|*#GPC`W>HtXakNTQ=R7kxW$*{IIl%rEL(l8 zi|cx9g-6$22Uy2V{k*rZ-L!#mj^}BZQyi16xaMMCcr1JKCcGC8#|R$BU&8$7v5d#H zf8qE}?nE9PH?oc!S;uXcuZ#C>dOg>D7IOpr)$=Q|&b=twz~5Evgon)g!}o*xeOb=E zml6NTQ9N6V_-3?|*WE9B=9u8)U;ut?8(G^%*0yE%oV>mmG=8%B$?E4hD!;$xyCV6# z+1Qn+<2rZl%J|2?oc|M;|9oal{p*b9(_oJCFX7=hk0SqF7rA%Gk)Ql9-ZhW8E&C9? zHbC5lpMXc#DOuMMS=SNw$!tIWhRZ4AC##>V z{&wHTRJ5NQ{W;FzQ5X4+Gw{6wSg*CkgS;=`o&)=vg8Ngtzar~cWq`GvWUZI1_2z)J zELqDI8!iLuev+)`BwX)$e5o*=g}yB30OPv9C2L(|t!oKb_Z78Z-B;9swf$smKUv$) z_OK0{lRO{z`j>ECihCgBz705LZN@yudaVBe-cJRthhN)Jh&bE8F=Sl#UF*PFFInp) zYrUnu?48Kj?bjWqi14dD_^uhpU&c#u>}DHye$M>Zq=IIXpRD=GnxB4-$ptrJUyZnq z37?(NW6fez*n)d0+-J7Hqt8u|^%)XAYp2|eIiq9V3XdLxI>0*q+re5_Cs^x>Vmx{O zkYmNT9{Uy}e#sx)aff^vnB%_-9Y3X z%zH97y@}t(eh&L96F*@1kY}!oF%zFOd<^_0>>n1iU|aTa`pG&6$Q%=Sz8$P%!Zz#o zxu?K-Oi#gcOzbb)p8?kSL)P_6*7cj?{j8U)<52A5%u{B#0<7zce%&4yg0<`t!?lL% z4A+CTU+ciyuV&+6T>HiR`kl*0Fw0(YGv*tZWqFJstDkL9f2;9#7(ZG4Y^VCS8-J(q zlhx0@sDGF7_ZmN0{msVTZ~OzsPgegRSm!NS_bm%ee2HPUU;S*GGV4|5?}(L0eVps} zfMMq6*z)%ahrk?LzAs`7tlJ=2w>x^Y&1{dBodj#yV_+>y*0S_y*;=rcJptCTr@&g4 ztYzuZvh1&xO~D13mdyZbS+bU;N6R*wvN@(~u_;T|vh--#QEW4;cL6q@GQ>Hy9M1~R zJa&^=_Dy&PQI~$-REK>se;b>HvI|YwC8jJ{%jRHztKVPqeh#OXFwaAH9mK!=!D9s9$M_85rQYT_=Z9E9K}ZLPuGCI>*IIb?f!lo_aV;n zH1g>y@Le9-+-%B{)lXJGS^cLQKUw```jKA##e} z`a;&e41jf?GiZ3!@By&yyU4mfJmfv>7n#pO^Y7w~fqA{z0G-6Y%<1?&Z--;*=q|+dI}Wn`9f5^Y5}wOBK8KQmtI>u& z@Szv*`zG)$;FkyST`>4wa0uUl?f`E9FYxhp@bKHt-wpm7n0YpXKj`CY!OQxwUqYO1 zNJpGG$r<>*fZPba2iITZZ6(m7 zj`K7ykDF(J*P$=`K8x>`jx*qo&2;*D9{BD>0tBc&eg8V1{jwbSb zh;K!|$bZB3!oQ10-rwk+*COj!k@dYy(Skwt>uN$~abJ zZ4ddXU$}Qhk+p4PZ5w$6IbZhmYC9R%c9ON7WPJ}6S=+n|=bU={CF?$rtouN+?gRO5 zDD{)oPgXx!{iD7;avqC*>NYrP@{lzTS@V!J&tjZMY1uJTmaJvTT9&M3PZ>X1{bco% z)qenO*7Zo%^+?wD%#cf0V0*y4B8ThU93yib@!1Kot_$*hynmbLqA3}PF+7C0o}Y|? z_55uTtmiyrJ*FHp{u9Q3%J|9ZPr%e*~P!HDp>rA}a#5aQVSV`9XTZ{3x8h?lJlhvP&{|3_W%7`OwQa3n zZQG>D$+)(y1I&9$f5f2BqjizBF0$6O9e!iQZ4Ykx<<+TR0U?JrsTxDq+Jk6qR2a%vx$U;9Yb zK2~6UYQ1FjlhsdF{}SUTtDmfXvig&7&*YY392d|Y^7JS0T-iPDxoG))1o#lzuj9<$ zLGWIj{(gbK<5=iD97EpU81sIP8=3cfuEzqO@#Ek6yxzxkyNjY;=BJ;0AD*lEJaS%+ zv0_~_5uZdJ%})=HP4x5n^x`o7-YEQxFMj~rDEJusx?WCzb-kPd>w4K`#)@%WM~v&Z zk#*e2I&LXNiToL0&7T9-{QV|Bpw%}>_+WX;dN5vyZP*7?~BkH*Uo*FIK&wG9iw z+6J=LyTtfwjh}xbR{ev>uk(#@Ez7vJnXGLlYn$s${&gmQv&m1^oEwe5#rRu|f55bd zaV^WZwuh|kA!~a&O#baAf2YaM=i9ZvjB9?zH9uMNlQsV~KX2FW#C7ZGiE~==tt)UY zf^%20p1YDifM;)8y8=hxindy(Ix9Mx|?wg z%Q^D`>Sg?_mHv7Stk3SgjO{4)GyImydzM^)-`jZB=Vu1t*RdJ}vkg2x9suh+JOtKx zI0n{v#d`l$hd$hkeF9j=nQ?ticoMA7?lP{=5+4JzF5W9(8+5&pb-j>vy_^8+HqwGI z*EW;2ELqEvwd^UB)$t_jbGGCcm%C@M$s8Z{g{;rzreH^X9nWh2C_aUOx8A#wGCu#Lk?Kajf=rL4rL}@VR)foKA)!ZZHX_-eJq*x0d{@| z=PF=r8(E*HBJ1-}WPOH;tj}4IpI(ON89w9k=rdQ0^IH3N$j|%p{7oP4&okb2n|scR zd<}jpFa}Q@Sm!_EI#O`cJc=YYvW);uh$Z6j;j$lA7cj3=KJnTK*Nju(pS+IS1{Sn=xcu$B?XJ$oZh_i>!03&eU6P>Ro5*C2PIS z#=p_{Ta2Hq{#N7fF#hevPgZ}Y@$WMJUgIaLzn^@Od%laT{UYnOGXU1H9R%yxj)HY; z$(nNvKdyj#2owi`RRz88Ux-F1(Zj*JrkafNAxk}ABiJaQbV_Fl+BO0wwZCQi>!5#wXPI=AEW03WL^v0iivp2)SFV0s5b+w^^&!&9I$RvImn~W zZ16cQ{vK)t_K_Kg>p1Y)-L3b!{T}^#tw)cxnXGLlYnzKvmySspSjVIStZl1km4{?qO-@iu> z??I*fIPrYcG%)?z9%cm;^5SnpdNLi;%o0?JrsTOV<8oV4kyI+^>>#ZnxszvYua& z^}7r*zo+=aUL0G|2ED(^zrn;jJZ{p%Yl?T_A?tS*O9~QgBWv5p+BUMbZ3E^%-%Id? zC$Uc|O!Se*Chj-hM4Pu^3_r6CzuEf7*!BH&CJkFMkvXecNP-6G5LLam||p?1-RkZX5y$mL%j za{byEa`kQs-7dbC(APw_gm#FwhVBt<3w=klBlLji_E4|rpwBzx^N#ww`+VL5KJP)F z_mIzf*ykPddB=U;$xxrfNFMO%EHEj~}H&(r4fboe}5eV*+;&yG|#A3IaseB7Dp=HsqZH*dO9-Mr~db@Ov~ zs+%|csczovNp*ez) z!O)ZsBTr_qZ_4G8@4%EhL=R5+hUlRwouY@Q+zXu+j7|A2G!zs}{U2y1{<8fKMAuLK z5i}dW@MU{4@fX6MmH4Kqe-v$*`nKqnsh2;^&s(SdP_%98^q+FMV`{VL)~Qd4Zl9X> zGsbsJ{j6x`)KSr$Q)dn_zH92|MZ2axC)zu8-Z104r+!tmf9hXE_e@>-bH?{h?G+uI zI(>x8LsK`3j!u1Ebl=nujB@>rP364J492Ja2+Ns4PTG$}3vk3_zl+nJz;Y-Er~O2< zEbVD%c5q!9`<;z9cR1bV^)9dXdhPbw=k+nswBV%IQ)zBJ2I+1+rlh;|n3nFg!;Eyd zePyM)?JFnUZ5IXU+%B^5D+X8pi(dcX^8}1luTigyy;gg@ z+-sxP&0gER-sQF1>my!=MKgng)9;r0pZCj$rr#&+Iy`-kYv1&zM8~JUBEAXlo1Fev zi65Ds`7HZ!Z2EM%phJFZA)^j6y7D2H}h{(Xxz-MCWC!5MR{$Dl$GU z@dX*ziZ0A(7hRO`b@46sz9ktCNW3cJhZ3*$@!E_>CB7o#m!fqUFUsea%jem_TCbbE z-r}|0>s?;&_1fq48LuyTea-9ZUf&hP#&sIUAuUKbjq^V{NcGEUr@8GQ<1{z_vrcpS z|D4mfAI}bQy|3Ujw_hzjjpsu+?>ucB?N199$mcjO@VCRcB**A>40 zm411(*Lokn!Y{A!<=4t`c5s!~tNrI$nJ#ZmrrVwiGF?B4Gu`$a&UF1L%XHiGyiB(} zS7f^Fc|oS@=fX^PoLiLXj&n;g-Epoe(;eq(Gu?4+MW#E>)n&Tl-0DnsoU6}t$GH~Y zo-MvTZGO4KFK_kj+wR-f=|A7;KR@7?5BlXp;?E9V^zp+|E<1SHFOT{Djr;yh`u-j9 z{X6FScii{yg!B*Fl`nr%`k5WPZ<+BO$$OJ8_eHPUygugrduQ~Ce{jZt_@DOip&8Fee00X2 zB>s$#@0;r$^D@_L2WtGr(A^*XONdHtf-uXw%F>pfoY7flJeve@4gyfu&g%nly(@!eVMZ%WXg z#eQZ75BvC@EcQ1g7|6Ou;*a_G-mGs+d@$=?i9hY*Ls|Dpd^GERi9h4x`?4O8_<^i$ zi9hG#2eW!4ekkifiNEOMhqL}i;$vBT5`Wdl$Fm-i2812f4bWr?K$1;j|NWX{s`wur#}jRCVqALYbkdm+m$<(?aCd`cI8fF zyK*P9-G1y;w%d=ToZcg%l2 z?(aWXj^{>ux_1EXH{>)%a&du;;;_lV6q76A; z`W2U(b6yi&pR@S@mpA4d65W(@_H$fr$@#kImYfOE)|~oZGv1c7U$i5q;x}C0niCV< zo-^Yhmv`i(KTqw%6ndPN#3MrRo?Uo#%uFFEV?3Zn`m90Yv<}bH*WQLy%JxOHzK+& zZ_1xot|4!+Xmeh(==!|-L^tOBQglK{|J4P zc^?%$lGi1AEbnR2<9Tn3p2$l-O5e%61)`_&t`H6Kza*NH|Cnf6{&CTa{PMrhpOs%P znv;KzXhHrV(c=8Vzw+~N{-vU2`I|-O<^MpmBL6p{3-bRhx-kF3WArb|zg~1n{{5m= z`LBr9=I6f7&sXHXU$id&GSSufw~E&1KPtK={}s`7`T2jNzaf8xXmfr{bbbD~=*Il1 zf9L0$@-G!_$-hr@Oa3oKTl15S^Yga+OGG>J?-bpde^_*T{>(S{`HuWgh<4`pi0;fE z7u}T~!Odgr*Yekh_U1n#x;uaFTa5STZx-E?e@Jv7|Nlhy=3jb(pAY8$MRX|tz(2S= zn!ogI>c0HA=z;vJ|HlwW_6%ZKxy6CKMB-r@3i{!OBj`QxHT@^Aka3L+_7UQ+NK(W-*D zXl=oDsf@2EIC~1Uu3%VnbwM897nK>*7qs9z6&%+JI;T%V> z7o3K7FyOdW@RaDLg6`9}+)}VAle(qgr=qO|XW;KaVEq@|FWOPC0YBixajoEDyu>0C zPhDS@P2Ev&CBFa0_Fu3|bZ5ab{1ycJ|AI^L`xdPKf-%wFg84JKyt|+U536JS7c87b z-BWN}bfDn)Y%cFDxVw}(SWq{II#e(sI$H3l2$%O2>=Hdt@H^3i1#`+6KUDB%(ZdD5 zF6Z)CLH}IpctPix)X9S9MUNER9Od${g1beJ7bM|(j_lx#0-i5m9u(Y!zafDAK*6Z! zse&^qxf~RJT{NZebJZw(vF46@}9;;c{K! z8qw8-eWLY+ z6h4aIt>QRPc*~{Kw!(*3Q9BA>t)p%&eB?va?S&72n7X5|{W5B2;q=wiorULogu1Kn z4$-c{Z`E_Tw=m^n)ZK;SqWy)};+?;k2Zg^A9VmQs4VU*8=HPi#%!9(VPf&*nXW>1U z*bfwTt)uQMEV+t$pzvK40-9SBAn0+nvRN-$$gQA0<<#I|<=SFH;QT+|njG{f8s98l- zo2fZP^KPUT6qVu2LfjWEYWX}hT-0$hwXA607V5mB@8b(@tpB1{zCc}2RFB^_WBnI> z_si5pMZN9RB}JdOjapUoW{g@})bUm7ilSFV>x!0a!fxR z-F**rYtaw!d=b`v(Vy`BIo5yCocpMqML)fty0d8Scd5IIUKQ;s`j=>LQON_0?=D&* z+Fx{~=xEXHqWg-zDSDvjhoT3Ieg(}A-Ys(5XL#lxB))LwmhUCu{CLSscb;E0)1Bwn z&UEMbbw0k@$LoE3%}jUwv2Lcj{%Dx#u2-68y8ABcXY#%a+CB3LHAfk4wAoJ&Cj@EjS|erUl1*|Bg%l(t;Dk zsSk48P8LrSJykqIG$_dtO(`i9O)Hrtno$xF%_^BEnp1MNXmN=fr*MfI$FdSPPbz$T zfsZfr@kJ&6`n1H|f2%5S<6c|h?k}z=aqX%raqU`Na-P&vU*g)g#sZ&yPJ?|Y=- zDFoNv^}d}OeLFWvJF(rBT!=i_?n*u^+E#K66zfaciS<>|Cd)fYz9QOLa);>7l5dFa zD(MvMD!Es*x8%E`yGwdR`%89zO8tc``#=(%jGGX<<|GSS#G^l%sPqs zv0t3^uIRd1ncwGf+pJR2j#&@>58K!8%k7!v=E+{aJSfXJ4$XR^kL8Zc3VuL6HtRCc zVD>+tp&)B^)kD;r*)^gCvzLh$&t54So?Qn`3+Bys-vd_6zD$;@X4i|>&36557RCN{ z_F9Q|&fX}xYqslG*KF6m-q~&*@1E`Y-9Oun-=y~)@xEi;cij6+!UX3Xgp&6+bPnltA) z(SkXLMT_VBT{Ju=We@8wn{&SCyg8SOR?N9ZbitfkMHkMAi7uM6Q*_CkM@6gV42jmx zc|ml=oJrBTIjN5@@9H^uqV;p$Cps|49nbg9`G_nJ&bdl-XwLPbqjT;O-8aV_=O^dv zmgOUJMnsRzIV^g7&R<1O%$f3I)^l>snWCqBzk|p}WH}}BS<$qJ8>fs&t1M?l+<4?f zzA4KEk?)HZM_fO`k>_N&Eb<4@d6Bn7Dn=`-1@4IJSm^AiR=?y7x`b&hKO5#&5?`&*0(-#uIR?d4$)1Kzlyf_ zc5d+s_Z(^+Ope3SC`!*x~8mObY0nBMH|Y3Ct1F^>&rV)4(IjdeWJzX7eCEBW%4=p=jCh%&gaYBcDbPZWqgkF_wqlBR+YalT3i0M zlv`2m+ErKX&I?wThki5Hk7|8+FYLeGy2w-e@b*?`EJoocita7{yXau~f??(#D*uA$X!&;0$?|T|BjvkAkCp#O z^mzH>q9@9q7Cl)$DtfB?sAw?vP0^IO?~10)&HOp@XUvU=X3c%SXwKYf(So^`iWblP zlxTSFjnK59ZZ6Lorv=+y1sk-MH?Ey8UZs)EyspM%}#L<;SHf>c+h{ zS}S>WM=uxckA6mUPt@(t2cj`q-s{J2(2w6x)EyT`{W$K6c8c#n)NStvqYumSq3EdS z;pp?CV^Mcp7>~N|aVDdGkob|P`+ntE^gptEJnHUupNf89Kj&}8e7E1rn(y{|IrH6q zuVB90?-kGIelIf!&%YXe?1$$cmU6Ye+zMZ=&X-&5%hgM{v|!DA?w7EB=D#lG8|H_9 z$vn;Tt3}t(zgBeP{QE_>%>T7$>-^V6+vex|ivF(o7mN1JuNCc|f0O7QpJ%|A-|O@3 zo8K#+ADI8B=)w6v6+JZn8R)d2_N-q+(}ERe{Z6#&EcO@I@^DU@wzJ(QT{1#QX@vHKm*ZR*__|NO)bKFO%aNAFFgm)q?Q|Z=ETBTb*8I^AR zWL3KPom1Hbe_9Z(yOnM~zM%3E$+xg_ujr!6r$m=j4vAJ(J|kLNxleRO<*!8R zDqj&@UFpWDzA`S$YbyUDx~}qd(T2(sqRo~66kT8WFVT&a?}~1!3=XnAEtRRFTPpqW zqtYEu+A1?7-cea1y0x-QbbIBQqB|<*i*|b5S$U2u@2b2&w7>FV(LI%yhz?XP72R8T zspz0@-;i(LXyu0_zOS-g^g!j6qLY=Mfu;qgD&6)Foa4qjw5o&W4y;I8v`EpX2}buDoBTY49` z`%SwSxa;Bm1@3vLJqvgr0ME;v%X+ed60c8sea36)dG7PGz3zXXTYk~&`RBXkYOf_1 zxaF(8ZuWYM*RP1;x$q0=!+o3!UH{f!==!(uLf5}d7rOqnT$uSM@9-j*Z)}mvH@?W_n_R?vIIb=JoUE^{i)TL1d9{7<>A$7!SUmd$YUkn$4{<#n ze!tK2exK+4KF|AIyBaR??Y_vj`yzgx96bC1UWcXy>#N-78>`&so2p#-mMT|%OO@+a zYnAI)Tb1iqN0sZ>)+*PpE}y4Y^5DL04fAFPNww7EU~w($!(UhMdb!uDyl(J%lh-eL zz0>PEUT;~-Jh)G`l+Sl&247r?$8w=kCyh}F9P__yQE#|LGN;oPkOL>ImahC z=<}cVFX#Q*^kC0&UeBcm1Iu5M&mZ%j?_K_Ti4QIx7ady8=lqj{VgLE)az5{$9_(Ar z=lzp|{XTwRIiLGa4-PKpeaPhCc^^NtocANsgTu>tKQcWSTh8bI(}VHleEvT@m|V{1 z|I>pb%X!}~Jvg?U_mR_s^Ji zt#aivR-Bk-NZ#z=V!vFqit{czsP@aXt2ke>gQb3X#j20V_Eopa-Je~(>PlIzU&ZfP zGJ~6ZJv+R=b5(Pw<~R>edIR&5pCyXsES z!BuyQ4z2pO=;*3lqWe~LL$ibZzTN|?zAy2Es~!?Pv}%uh{-Xc<@T$ioKDO#75`R_V z*}>~x@2cbaz%L0e<9f$@_Z4?)7}H)uNffhs2i_w66V`w6AULsA$L9{i0jf{#tbV+83bHf_p!4SeEbq1n=Wd z3!aqa%;4!yxcmA0y*?*8EqGBr&kjnjWIOPem#=jFd0m$AyzV;JzDBRZqWDW%pX7Fc z=XF2nK7Zcpi(X&$`kL3HUSIe6$fsO=S2VJ|*`@BBv^%1X+d41CB(_V+YKI8Q{(d6LVCfClzUN3KU%U3kJaah~z+S}*# zVXu#Pz5Hr^o))|&ir;zo<;B;y?fGI+Y-iWFJWEBBgJ;&e^^v-Pahw-yaLY^m^8J2! zSeCPcyRLQR@9}!C*V8`h;;9>*ri}8{GKbBZ}?#2Ij$W z#K&`SBah3aUeERVpeUZR-{k6j+3Rawk9vLG>l7sY;H zvs>>;H@bG6exqB?m1R6X@AYE;`BgW%_BM**car||FM55<`=0T6_WR|R{qn2c_lDQh z&$)U_KIg~bbFTh!iD%<4QMh(Ddf#UM`At5)&FlUC^N0QCkND*$C2wZ%&ga~9Y-$S? ze@U~&)w8mN`7?vdC64dcKkw@Mkk`w-Ug34E*Q>lXdcE4~2CvbZU7oYOuJwAAXlBrO zv)gZ8Ez5ZG{LQZai*Ir3Yxq`I{*gB7nK)+OhkrbVlF!4xubfH_=0oS;--b7mgG%Uh z{G*3_2L5gOl#9;<-{Ls}-s$-)aJT38f!{fvBxNrGKjGsw;HM3r*XVLG{{2rUI1ewg zXT6MX#ovcj{x{w~qx?m@i$M8b_}ekcn?IZ2F}y@y<4dnk@FO=QxN>uXe{f@h7qle! zj++uZ`S}Dd-;&^mZ*jZ|ZJzN3#~%eR^L!<^(Q^~{de5H)f6w#hz<>XuEBgiTyPjj< z^YFI`*q5*2-x|*x^P9mOryl&{`XW#B++^ZpjW>gf@b49@qidnM-rK>NC-z^gWf^}6 z{~mq|XL!cLa$1(Eelq=s;2$v_vUS%Ua9u*SpS9{AYz zi1&O9o*K^^!7IVq$0i@Y4e@Oz-UZe?lO`TX#=CNT{*_?O!}p6T$H8p>PUM_4@leRc ze~fqvSp5<3eE2#3WcG#I3t98<{rc)}Hr(Sq2at2WiN}4MZNQIA-s?*`So4HUJOXB2 ze}=!x#A{5v7OZ6(jHlVe+e|zLX3pRr$w8Ni4;elL)^#^-;&HH!30cR4%$!BYi7&a| z>sQ!tso`qFHDK*yqlvd0?gncg$vvoxbEyZc?ICM>hKy&}@VMccDR>7Q@_eBaXA@w} zzYVN?=R3DFPS$##@$qrYhu1tG10Mxz+0?17EaT~5jfcT(Gv`tjSaa5Zbq+U}_%K-8 zKvw^Lu;!dF@il zPj`9tAx{{rW%)iBt+xlP?TLfA%`e3KNtu@LRDrc@4Osn4y@zAiZ2TRDM-7*upw?Rr z)-kCy@kX$YGg&>&#?x-%-NsK=f3NXB=$Y*t0%OX`yd5_FQSgY5j~mYv1lGQg zwLM|5u9s31kAijEuQqZ14NuL}_+P9!`7U|&@V$e&9rc=cpJ&d!aj>r6N#hA-B;sMi zdBduPIBK}oaJ%6? z!=r}dU~L0g>qy*0LSOGh#es^^Ajcolb&B{PvZENv?IJc;>iO zgLPe#-z#hVXC%s&8Lk4WzXtpe>iPio{|zSIZ2WB|-eq{ycv5l_eTjf|`y#)E{5;l2 zy@&h88WXSearUdp#5Wj!%*4BmzsJOTO?x-=Y?J)ix6CW`=4%RsnH}OfZ))mT2x)n_w=G|1Z|Mg4v0j zq5op_L`Lkckh2HU9`$=k|W@=e9Xv zJd-~DE!+!Y2esZ1SdRr|VEh-*Q)N6Gz&eKQp4rZACf;r0ePH}2_dJJ9oUCo$Z#+RH z(Vi4A%d!n&6JP1$GX7-=f0yC?V2;D*|BbTciMpx`H-NS8(dI6&#`{cs z$izp$pTj+rD;~i8H}Ge{pSd6Rj*NdCtaXt!XB@0$$y)X(n0@DdICN&hLsn1B#K{`( z1MB?RZ#WLtW7bg<59TG>6E<89W*c}9qzbIxkEJ z4JO_U);t}C`@Em`HzrNI5e-v+=~)RbGh7X3U$`yQfOV|M9RCR%3mT1o#CXW`l)s%E zj2chec*yj0!!v0-p^8LZWO{!1NL#Q&bP9xxlFm6x56F2eLIf=Ox2R{lAx1HJriMpB% zw}J7oc)ARa8=e5`b`hML@F#&a9yakRu+B-c=C1*3dm49s#Sr%ETKC zH-oi3y@rR3XB4b+c-+K;3lnV!8?FXx&PFiH^0?3h*7j^Lo;I+KVY~6ijK9lxy1|-% z$i&ADA2puPqC~wBFt_((7+bP#Us15;tO9e+a6B6fH-UAXl69SK18dnn!%2%>-*=$z z)nN5B`Z%v~Iy`e9*lj$$CLRatxFx+mF;=BujxF<$bquRboUHLi6DMnY1GorzW0Qji!2Oo5GW!;_}q=Pk2 z*vCJHc$McKa5eb7^=teM-tz`LjbN@vo_CSezrpz1y#Io);=3o~C#!#(@ppOuE%0}H zziflXKjb|>g=g5r$9;UtR$R|kCHk0dI1J{Pe;A$y&))*Kc^(4~d9K`+j6bO7{5ONs z!8&eLKK?A?ZJsmlzg6V%8<6H&S z<0e_ha3xsV)?hqj^|YDzHt<`>`6Hb3cbRxEcn;#+Hv7Pua{{b+;$YqH9W|b$nuI3> zJjdrLHSq{o$A_%_tu~%U!|jG+U@c45vfW^9C%Fgp^8Bh7tZkSyoK)-LqZrS0u$C!8%r>a#)qtJNC$I&e(ry8yfE=L4K?*{7_4jUc^vkfn!4HG7wv?k#XgXx*|4V))~ak(e^nJ&ZQhJ&>UPc>NUZ8Y2l zX3i$$Y&Y>Pu;%YJ@gWl*Ht`9=NuNm66$Uf^50Ssr#H$TA8g2#`!O!dTb`y^o?lwGZ zcpS{S-bP&$CLTAObY-G#A;YDHBZjNM^L=}&O}xf%gYh()c$49F!!g6%hI7;Z8gGu#E%xzuCgBZlLKgHI*=A+T=0VH1y- zc#YvE!)@S;Fo$_g5;O50!$Zb1V&ZYbp@u{oB8F=WHyMr@?gDEYdQ5!8aNKavnDB?d z+V_az8pBP7+rT=`F%$1GJYqO*IP~d6U16~1iI{kmiPxBTli>|u9?SUM99fSGG2`hr z++%py@Py&G;iRTSJ0pf`3^y2VGTaO<3jDoL6OS40Hr!))*zkzq3Bz&2NzI9Nh76Y) zju@^sTw}P=aFgM7!!g6%hKCJL7>*lGy4ti8oQ?6}`F5#^M+}#NbquRbywPy8@wA(G z%y75i9>c?iM+}dGwch<;&av}@P(ao>Hevj6!%3epeKcHZIAS;o)|_OmtJ-*K3^y8X zG8{A9V|c{ygyFd1q-#u@4VN0OHe6%4(QuRDcEd5l-G+M%_kndB$T5uhI*d7)V{$ck z*!V{bht?*kbZ7_8it})zXIA*xVa3A=+{(|4@FPQz^ zjsA`p|9;~q({lozxbYk{9x^?*B!z9XK&Jl>@JEcN46Nf5 z^`5oKp@6JqYm9%T_vD8{0a-mw#?uVeoG}w0F`V?-geL^nHm8_)#KfyjyvD?9O}x=? zlkv2hc+AARO}xj%drf@A#N&oT8xw7g7_J6u-^tpq8p91>o@0L*>#NcD$?9)195cKP ztYc2rc}3QF)n`0p#;?Qr+Hc}y#^>ROR}@J)`i1u1mBn9jt92)ARXM z%q!!G8V{Ks&Y2qHX)+u$+y&GyZMHPgXyf{xheBf*#}VGk&uA$@FudKVtlG!%3UW`U1bV zzDzt~;?*WzW8yKxJ%&dN#|;OY%{enzpScQ~cm%BNsWIGSxX18_;c>8@!^chhC|K7u znd8Ifk%Ai&{t#H}O$V!=tp2d^M~pve{ABf48GnuOuQYzL`Zt(3nQ=Z7)dtpn#lYIm zZN}eaJUzzKXFMY&zTd>-CVte!L!V33l@8W1iI{lQ#A{4^rHMC!b-&$YJR6KBX5!mS zyvxLU4EGri`7P|z9>6v-WIW@BgO)^JLWU!TV}^Uck0K|}u}4gN!f@Ph=}n3J5yRDn zYYaCUZZg~s*0GA2c#q)`!*RpG=M&e1Nno8PA;V$giI{ke;U>c|!###a495+JZcfx2 zFwW8x!*%1lFHq{8$x|)oKOwa$~o^1@QW7uPO z2s|HigZBVOOng6>Wp7BsaUZPt=$1tOh~XN;jbP2wWa2TyJ%&dN#|?*W zHFX&-18e>o6K^uyZags)?=bNm6CW`=VLWjYPx?Zl-Vj*FIbyg9tm9l`;teL=Wa4cm z9y9SC!$aVUu_ZS{AJPy`A#!Wo*r9>OTVD&^y zyvA^o;h5nLu&$%-|6=Xq5aODD*p!_xob+YW989ptlPp-6A#)F@pQ134V!qC;dZe0rQ2|WLZd0_#|j)zfXb$MCS>5yNrA zp;#hM#Bhz_TCmQaMiY-2?gCH8SaJRKnD`J_+e}u^i1Cb@c-+K;j)Xr6+~f0y42O-U z)Wjo(tBj}G#2ZY!(Zt(KyxqiOhC9GICSAtgZ9F}Ohm2>~#77Lr4Trvx=x@Yujo~K4 zF~dEEM+}dHIiKIe9ILrKk-rwKeQ7fBnBft_`@uXGd=vZ9xQQS2@m+|AzM9CN4yOM> z#KT~n0}f)vpv5;*&*ZE z@8iEmeB8w2V4ZtMz2|j!f~|@CNnrJa45x!xS1=8IH~v!Ni5QN0|8)4PjKA7=Y7DRR z{$ltWjK9%%nhbC7{`v5?8GpO+#0+oq{`bS*ZQ?zK`@HAF@C=*yh~fR-^GSFnOgwJ* zsQ0XgCuy4*Ps8b8j_2p$DK+tk;cCM*h8qnx8E!WmGu&;s$MCS>5yKOP(8BPb&vxEII@rdE5_k0(gY7?(9ywZCfgQwBNn+$L8o@e1{H}RO^ZQk<=Jl!VV zV|du`h~Wvtal=VpGkrH)YB*xJ+Hj5GM#D{p+YQGIcN^|8JZyNx@Py&G;iT=R{f0{o zM+{dRt})zbxXEz4;h5oVV9t#{V_kHac(>sm!+qZW7W_jdK5Tfz@P6;-{G2fHxZ$JT z!?_o_GcgVk!!?GR495&_1G6vO$M%?bpN~(Oj{AEizTe055RaSqQ6J|%JoNQMd(y$o zUj~1~#G^j`KE$g{yvFcK@3{n?MiXx`yuo`egQwlZV}`eR5683H#Cr_)dC#YjXV}C? z4Da`z>)@F%@wnlm-g6T?N#96}L&$Kc;fUdC!!?E*4L2EXHyktEZMes9ADHXni|nI` zj~L$XJ-4%uCLT9@)O&WYk2_2s4X1-y*8}jBns~%;)O+^8Q*GikhF5yev+y*Uc$47` z-os;PyNSmPZ}Xlpaa!!|i(5#77K|gQxrR-U$fFhGT}i4fhxxHauc@!f@PhQm1LZ;Znm9!_|gs3^y8X zGTd%BX1LpMkKtj%BZemo#|c?iM+{FGjvG$8H_?WW z;S{j;x75TVhN}(N7;ZG&WVqdM%y75i9>XJs5yKOPTxvLCxY}@y z;YPzvhT9Ft40jvuF+6N|#PEJF&x_>T-o)dEk9yBvaITVczv-9ZQo|9$)rM;fHyUm- z+-^8#xZ7}#;bFrQhU12lzH8cSI1JWvr&1G-7>aa!GasH26W{OSA3!{A;zxb_6NrZ%NQ^@|nEl#}c*Mk` zK7KpmH735&$G?eqlZkKe@gF1JZsIY+-G+M%4;vmaJPIztzM9`NPMCPya8g&IFCoKa zU@cp1;*Eye4R?X(2d=Je6CXA_VK}KfQE&MFS-a0TDXOk*^t-CN31YYvbF9HO=bW_$ zM@7Y)5w%9!oG@pt(H0d0DyW#ST1GKpMiCIJp)p~`fVoE6gaH&IqMmD4_3Cv!{&+q2 zbI$wWlD}(K?b;Q)x@Q>3Eo7hEN)E{FMTK<404eJ!f{ zR1e4@`TkBF=OyyjWOI+6V?E*Kda1q^)mve#BK=;;u2ess9Kmwlc2U1`uP)m{_TlLm zbL(OFyJl1m8uj~7Z>M?(IcoI$jGhYBtK=@SGn(c=ZY8&qJIEDs9hPg^xsS#qSIAXz z7r72M$GKm}X(hM8($h}$64g7XULjY>HR|u8dY$U|2XtKlEXUCr|D2*3gx_mgqMnd? z%2dxksN-1o#qqWO?n4VKKl@=l7xm%z9&7xNZhJyDW3=v(eR4pK$T9n2eLYRc-XpY) zkEx4~>-=kE=ZS32Ph-y3vMp_}9HSaJfqONsm*mN8eETy1-dJ@=j@VD>vN1U!o2PZo z9xUrB!ZIJ9>H#@~*T&q^-)}?pi0qBiF}-KhJ~<%Q;pTeBYkxov$q_jwCuB20$MMKM zIUtARh};P;-`L)m>IvCQq;-*fazM^Mt7DeP-XuM5eR4n!$z@pP7EwJWC*(Tyo9A?0 z9@!@cs#GTzr)a(Oy#Bt^@(cR@H-cpj2`uX} zFRF`h9~?*femSCgOisw=B^}dR#`LIeEp?w9kVA3=%RH@R*_d2^Ih&{b`@CkF_LpJV z|JHJEjNs-t?0jl56nt*hc#dW^JzpyS)kZcpvM2D8kZjE&V?ASbvC@9D6?u zU^(|fat*fEpuI;WR5zb!e-W0Rfa)cxhg6TqozxRkJt5br$9$^m^~gRsAcy3HY!V$O zAcy3L9FuGC6qD^YYrF0C_pl|f>_gL~&co8qVzcx0d42KT|X+w(1;dPpu)PXx=gA5%|_ zdJ?Le&uI?i7P3!ngPZfAdPpu)Peks6U~)`C8ZIk$rMNF2l0k zi0U!9Mm-7Dy;-`hkX-pjk9!@K@vZw}+wEr#P$llE6(>F*-9|DyE{a)n$acafc6b=ekj5w^$L9=kFubFNZP7r9P7 z`QNm^1(rFtl1tQ6CU=r+4cj@?$@$;2@zXji*JB;F_aFQE63)}(Qh{X-G1aS7?;<;Y zXn#AogIpnZ%-4SJPd%?XU|Da4TqSproxil-Be#%!ax1x=+(E98tK@`i{-*VkeR4n! z$u)R+?DOE#y{mJGnxxl54O%x9#g!7uD-jH{EG_VcFh1 zEX%e~y-4*|s<%#1Y5!!l+ExkB!QWk1BQ+#9RZQ=^_1{6n)cW&}%rh3Z}}t(Rcg z7Jp%_2jm#;)i}qjaXU@_?XZOE)>1c%Xuq}8J*rzv-G^n)0XZZ`#*Gx`+8&+ z)iLw1>_d<0J~<$lU>PT*dKs2+BC5yaTBFC_OB1Shk8;~fB z5=y9Ume-yVEIl#R6LN6{JqOy@D`j>2`*2F+5SBSa-f%=8!$IPY%c>Sgz}k>Jd36*Qh_C zy76=l9=Qn1_&(JGayz+1{UOym$Pu|hj>!qRi)>nGo@AdKkVA4rj>!qx^r7*|J~<$V zneCqejmd+p})AtbGnFliSwQdM7!*zScch-n+HJvd`Pe9pnnR zO70>%8|XMi*lt()j0)TB`T}#VQ{8Ns)z`e)H9jo!3CR(;2FsW&8|k`Q$?fD0a)n$a zcaiI`jPGo$sZV`YIqEs-$ci$k=r)adIv1~yh4s)*$-8!CsgmEy0e*% zQ-o#yC2|Pc^YdprPgurJ$n{3Q{anawu046!j%n*Hu*|tgb)WiMsi&PBQcnlf%dpJ3 zLiH*+fo0BJRCl(}`Q%|4r-kZ8st2%)6OvDlGfCPWAi_I!*^HJ!Ps_s9vMG?`PNSmbc*k3Cny!Smt2e9Fuw?>amudPU?xN z$69(4s#{CFtySmH4okg6^$w~>u*|bU^_c2as&|pw`s%uBkuc2f0FS zZ_{NP4!zkxLER z*R=??_tn#JE){pt`2?_RV@Qt43Ax-)myKZin(`RNw3cJhNj*uUCpQAGo4aQHec=$E zfMxCXIwP{To6e^Q%l2B!vyD$ZAvq$)*RcYt(VEQe^};Fr+R4*T9({N zu953|X}`0#?zcQFb8Dfx58M5GvE6U59IrC*Qh6< zdY$TKKV3Et%eIus5p1{RX>3b{`a7woM)vmC?X{M3rUjOH`qa|~%X&-XGP&Ncy)MiF zG(OoUx5Bcnfa)Q+2FrRAs&~P%Y@K?{fx6y2EXxM)6PVUd_EH#?h7h52@Zk z^$Izr9&1@wm3nHhJ(ukK6Y95?{x0fw2I{u7kbPM8VH+%C2C$41k~?78ClM^mR;XSj z*I+s46YB4x9`7(6$0xVKvaU8*#%ZT|2f0i=6{=UsUF7`XI;IE9_WI-!EZ0Z}Ec2<5 zJE^Bi^%^X5?xMPLgpQMk?fB>7GfxkeIkZrZPxV%+x4|-gJJmbLW$LL=y-Kc8PZ!ml zfaVFyx;(f!PwMfh-b(d=>g`kysop{LGA!$=QoW08+I0>dxehm%JyPf2MJ^wO-$jdk zZl6i4?f$nv@6k#2OL|V$VHq=jwAzE^{4Y_xvtfH}hR0<0`FriXz2VQTkJV+9k6)IZ?;=U>T={>aFB< zatFCWu9CaR&PlqiR&oH#x!O+k4st|26{=UsU1aBET~`a)hh<%@RPP{1)Kj5)mE1*c zIYrmiN^U22kRw?3bA{?va?{-A6QcKnbWle=KK zm-?q^e=98Ykm~;F+7ppuvVVs5w4O!doUM+?F>If~`rL+REvh@`Xuk*Bp3~9eQ@xcO zklV>2xq}>$E997*kj=T-9A3s80@xnkbl*1WE8LFHcpE+jPGH%GU1aAxt+$X{$?fD0 za)n$acafd*X?$`kxt$!svMn7{uaK+cF0yk0t&7}BZYOt;E95FUfn`2jR5urD-GOD_ zwvb!N?c@$}M6Qrya+Tagb}pjzl3U5`dsY}?dy0Ep3-ef<^$T7JF%eu^v?B~#CV;>e_sn=jxZ=LGS)w(Thu=H1`p1(%xt+4E$7?$}b{$*Qlos%XazKXZ^OP4VHRH^@!X_ zJ$15w1C0aAINpsqAD>)@WxLEU?J2^2aX#4Z_qD+?PBL7_H#ezEu=Ipf@1%MH%Q@3| zv-an2QJ2UeEc>vN>UDB{M7FHmZzXbP!}c{RhGm?D9NkLwhV3}!Hrg(@xm{F`$lmSR z@3ZgF@x42>rwGfKKGkEg8L9nwSk6z6>Sb8QDcz+#5iHvqlM}Luv?ut7$R41K7Wta z16Z~-iS-wuWs_iRyJ&=4M9g9NJ*1m+#YU$=|Q8 z!_pHysLRIW8Z12t)y+fN-v-OMSB9m(M)l$ttw*rzt4^wi4{JRl$7J(}_ITug9Fik) zO!gktaeQ(>F2S-b)^hAZ>gjx3x4lj-;Xy@~jbM47l92OHYEK9^d&s4++EXLf$;GGi zT=HSrw*fgMmti?x5!GXIje6>^Y>RoCel`P^b@}9g?2mH{PMh@iz$d+8&Z$8^mI^9L_OBhQ=y)idaR|VN<9hnSW8bA^~B?KZqWp_ zH&LCC&9hn$C#i$y)HPW4e_N~$;O2g)sykunuaWbUweG?4yJ)QKzj@ScB#s5ut)<=u z%a}1N>#bA0ZHo4k$q_95Z8hp4*BiF4t>IL?7CK>BulKx;Q-r17Ms9r}yA~?;@8QC- z-tZ-L@Ul84n^&~%k$rMN4#^QYCRbsZXBXLdRqHKeAC@@>+qDuGr4(9m-Wak zuzjtu`=qsD`}ZkGn>`&Kq1>_Pea}KE>SMd zx=%cE3oJcFSmxkUPe5*`{*dYsIVRU&88e}}`GDp_Zh>V!KGg$qNRG&zuw6F&`F5&T z8}+yB&)HJl{^eY`#yzr64#*+71D5TIs9vFZCpo5`gxp0v<|CR9xd_X;e5wcJkX)wz zi0YkmQBO=x z$fk?tK=#S4u*@f*dPpu)Pek>YoRIUM>6jiY*QQS{QBOqmn4FO7)Nf|$m>$_D2jmhg z+Za+kB6m_xO!b6p>a<>R5ti|Nst4qdT&Dhr>M=PXo6l*zWS<<6Lvlop$qCtfLF1E) zaC5t;9*|4a6H+}Q$K)FICsa3I(j3S>IUtu{nOjKph}=m%G1U{Y`AXNDhhOMIj zhvYIW%SKd>$u;URU+a23auJqse5wcJkQ|Z2SvqDJmT@Ag$K)FIBvdbcqsz9!@;cs0 z_2ReMQzlo)#qYGIM6QwZ-)m0<%e|sFTk9oqjanf8Y>WRs9>M8xG%OgEsHw`Bhxw)^%~?Ari!>t`zX-8Hc6{{)uLl#27UUM8DAb>9Z$2)6I7j=vkv zu2eUFX@4G;b$L`TQr)L|8`T4Zw!RIJ&Gy_Q?S`BuC_!oRE!6D=aA}Usz+4s zqkGnZ1Os$NA}5Wuxw*M^^hEqV{$^S!!nL3 z(0a)}xeb>7fa)PRA;;a^^!!|L6t10ykB3e7tUea@8+JNz{WiQS95y@>jvD^i_Vm#6 z)7oC|d*6e8s$1Lo^QcF#9HUNH<{wi%A)B7s?~#3SKn}?ef<^ z7s~d-3F!BG>3Rcl2-|D?P4q;t9e?A|nVaLF&X%5p>ejY?JC-#IYrnPBJ*rzv-KV;> z)Z1X$p8@q)+n!&ru8`{1wm#rK%%AGkQtyOi%$Rztr6-}fwbacbv|X^RKZ$jDRJXSE z-uGjlQ{7tX0W9Z?HGU;p_V**G9+MNYSyY$x$UZqBhvW#Bzgt>^Wk1wm`}%1Ao~*x^ zZlkqqV-0ThlcWD=zqReR*Go)wYg@P1OL1{sR}9DX7+a*iecuMJ~edji!>?`&P^`3XzEM|Eqd`;EFi$E>9u{KIx`_IwMeZY}jPEc?y6 zFXo*7y$sQ6F_oPRM3e z?eWMyIUtARh#Zp>vMJK|WS<<6LvjSm_FCJ0G6(x1rn8aYpF+6x0ZTLb!(|7RJWG8SzYIBEp?CT)>8MWZY}kI>elvk zYQM*E&Qsl5`lE*JJ;7S`Tl^2(etV54RJWG8Swok#mbyoEYpMHGx3+crJQGme+Scv8 zBBZ*t)FY}}+qyk}qBY&-`(kgctZrXltYsUcf7mW-Ur%GITT4Bmy0z5J+B&AS)I(UF zwIXs%PRQOmI*zp+=V5#7sBSIwi0al-kEw1gb+fLHACMz*vYz&M>u1aE{RH+KEc?x; zy0z2;s#{Av{)g>+uE3ZH)vcv&Hqd3QrS4JPTIxR4t!;h7Cvh%O-CF7))vcu-QQcbV zG1aZ5o>1Ld>SjYd?jG4E2jqn8ZnUt|!*|0`!^=F4bGzXy;W~T)_Eq}3pf}5w{SEb?VSgOXy@p?gqlWuE18=U|7?TsS z*+P3fvQG}kAvq$)y-YpWI3g z$Pp~pyS07oUUCAiS*lx0J%Q~xe=d5gWm#+6GXr(Aht{oay)+T`5UN|-`ef7t*pB%d z95;OUv-r$;FTGd9`{?%O_j8*+Ka<~I9UP!NA=w8naJ?DK`#tg_IIU>j8 zgltMWjz{*%0XZZ`%Z!L9?>ef;ZsctRxi0al-kEw3m zte=_fpVcR0+Z(3w2DN9FRkDM2^V`*<3_p!uEc$ zXbs2f65VeRIfiB5CSpnRkhvb-?kjglx*%?~wy? zNcJw*exDqWLvlop$!4&QL&-} zkQ|X?azZwpG$z?62jq|(kt^hwTqP%Da}TYT?2`j>NRG%cIU$>SX?(Iz4#*)nBFE%} zY(~@gWS<<6Lvlop$=(CmJ#Es`NA)AME9FOdi19C`?$o`mYZZk2r zu;Gnfz_s&mRv!%eu-tFMN63$=yra=NRG%cIU$?pbWD$IpYLT|0XZZ`!qxyrg4#WS<<6Lvlop$qCuKOyiS%a!8KY({$P3HFZdi z$T2w~o7ZVs*xtvwV~$b7gW$N~58$h|qpB#`wazu{F3E527F+H+R z_TJVWpB#`AvUx}QJ+e;@$RRl*d++KvJ~<-Cb&9L`D*7G+UHhjdZIPMLPg}o26o@H^q1Pz}DhYf#g>mOx3 z`{TR_8-5Uu8eaSjoIeep4x5j&{tsZU;jM5U`3>I%2MsTWbHRL)^UtlygQC< z(D0*h*zn3Yh6yZVdUbUG+hf;(o~Yq2IBs}X9M7cTiLm)R>t74UFlcxL95?&}oHTqW zj-mM?>wgK3VVOfhHeYJpBm3m|EA2_h=4-8cWS<;=krOpX_zZ=G^Nu*8~lp1cwcOXx&|xjmV})w(K6b zXCw{Z0Gpm!{e9SLcqQB${DzN%lZCRLv9Q-m$M?x0IU>j8glrbpaXfOgNUr&rWK2%T zW>M|&$o@Yp-@gc`9{$796QSNb*5rh27SkS&?2`j>NRG%c+5CsbB>Uum9Fik)0yjU) zT|7Hp1>Ca@EOmbgT~|O3$q_jwd%bm8pB$1Sa!gLhW=S2#BM0P=oRG~@x@<&_$qCsk zt^FR^XD_2Y0XZZ`WV5XHdt{#+kVA4rj>!qxEJx#$eR4n!$r0IKUdIW@Avq$4D`|g3 zj$wPxEZcKw<;*i+ui;j_=KBrb1_urQ0*4Lv$7_Dna0QMV{t-@Kx$eBxa{B#ZSn592 zt)(7N-CF7))vcu-lM}L8U3)yTPY%c-IU>j8glyK(@niT2{56sT@VsN)oZFh}glyK* zx<~fO0XZZ`wNU9HFDglyK+9*^vk19C`?$T2w~ zoAqgYvQG}kAvq$)WPd{)Ga!fLh#ZrXjdWSFvDzd1}{rXpX_Z;b#g%Vx74119Fik)LN;6JvN1Wob*}kyM@4vA<7be9ZL~ijn{BloZl?}* zP>1A*Y+AL)Bm3ll9I^ZAvN1U!n;o^sBm3ll9Fik)OiswAjm9VYc-Pe2aI5jiF&WYbT_@yI?oAcy3L9Fr5W*_Fm8`{aNek|T0V zPRM3A8lUWwLvlnmyVJ5{pB#{5azZx!X&kao4#*)nBFE%}Z1$k>$v!zChvbB8_M~yh zJ~<$V9P@QpCPOEnWy2^@L5i{e^$Q=jvAf?#|`g33(toQKLneDvi?QzxsKoPiEz;H z^KjU33qIG08om%V2j`mKQ}f9oIVPJ!v_B-rWHUf}d~!&R$>vb%Cx_&iYz9(4IV8tq za~SoLLvl^^-$#Og8P*PY%g3*&Ipz-cq8#tcr-IY;D#?477R0l5UroXfC`8BtF{_D-U4*e7c}hMT|J z_AK4rglx{%x<~fO0XaHH$4|)Kxmph|%H9vYXYWyE8lQco_WR_B9Fr5Wxk{Jy$UZqB zn<3Os_Q?S`B*$cPwT|PHLvlop$^JFEY(Ngl5jiHCYjs(lY_8LKNRG&6sP=edpB$1S z*uIzVkM9*kH|Vkn*}GBe0XZbc9QW#CkNz^9Fr5W8BSx8eR4n!$uT)0o117% zvQG}kAvq=|WOFl(N%qMBIV8vAglul1G08qTB%2Y`PmahjIU$={X<4#Q4#)}F+(yfi zeR4n!$r0JyPUDb$azGBr5jiINcj%Y_IV4BqnC#z4%aRka8L2%U*(V3&kQ|Y{yL23% z9FRkDM2^V`If!)3kQ|X?azZv0UDhLqs}iO30T zpW$!Ay)L*Xv%&X5!-fxoz0ta?xlipss1C_7**v5@J~<@EWPgnIhwLY^xlP1;%42h8 z3g&G8{!!^EbuwO;^(LqTazswZ-bCsrN92U;Jxl%Mh@6nUN!o8>wNDP&HSIA|)jsv5x?-}KruBdvl4Ej0Hm~Ti;j7s>&>!D> zk74=QNb{Q7Cx_&iY+l#?glyi`y8oU!B**0N1MP`EQhT3}6Lmn2$O$>@%C>R5-9}ip zG5Aa!%~U63udelg9FY^U_c`^GBXUBHztDd3rP?QlF2m9vQN5GuHF82db*ksT({YOAHgW*Vu`5x%Opd6hlj=2c zLOpe==fBrEc(AOi2+O@Opn60u&emny;6AvQ+J9THME2+Cm?1ePn;*2N2+KG=)!V3E zf@S}AQoTm?{Es?L5tjZExkgT4+4lTg?e}1*7h#!O8}$U#6OlWqC;CapNyy>PT90A5 zuO{TuFFKzxZ09f#KX()Vrpub&)kWC$*xw!PQ#~ZdWHV2f^~oVQCI^3Le+`y>n@~MJ zU+WPp`_TVW-3H6DA=P7Y+h5tX*xyO%n|yPekQ|dcoqTgl>%Q0z_ID5^uzfzc5!ZXs z)gEi<31FFLL{7+FPJ04!LXPs<6Zgp0`#sicdTQM#hvb-S7NUM~NRG)tFYOP>3E3>H zJs#O72jpl`?N7+wVpw8tlVOKUwKN92U;Eu;OLu6h-I^L^Xu*WkY&t~=xarqM{Y&#LS97H z#}xNO&O}~Ax{xoCxyXEEk?zJUg?Px0$RWtF$hF8A?3SgF6_BHlLCA&3rO0q(H1Y)U95N001et~Wg8Ys2>V+R; zLDoh#NBSarA_I_PkkgTiks-*P$o8+XypMd2{DAz4^jsM8L0XV4kv3#+yk*|=SkR=zxaYi;qwnz3wjzG>v&PO_sE0Iyi zAvhI}K#oSvLCVPQ$i<7}jKwc{SOwV|ITbk{xdgcq8IFuZ9zdodZz3NfUn7V0Hs(5H zI5H9$hdhV8fV_shi+qNBkIX{`<1$!$DPz_{c0~?E?m@;QFCcS~dB`$L8?!F5DRMM& zIdV5L5lN6$mch0n=OULNA0Y|S3zyeY$STO?$V0zHCXCfi;F7hMt7qVyz&IM!;@(}U~vUVSwV@NBq2XY8VuT9Dy8-oQPbDj6g;r_aF}vN4EJed zDP(V?gnWj~MwZ?juPMmR$YIDS$SufdWHz$U7RD@r9EMzi+=)DbyoG#+EU_i-amWDV zBxK>OaIGTSBD*2SY;DY0$WY{Vi4In2Y*CNA_`;iIAtH^ZZBV>{7FfOt&vORJbG8%aTc@Fsq`332@ zJ&qf42y!%XA`&8lk%y6|kQjL#`2?AZxI5sUfUJgWj_ib7kKBbkj693Hf_#X4j{Jo5 z@^K6iAK4c<9615G2)P0ofmD!(kqO9TWE%1@G86e4>Dh|=AF>9r4YDKB4>=4u7C8&K z7#W3(MczjC?ThU~PDHLp?n3TI#v#uk(-5;Gu6d+4vI(*qvM+KNavpLiavO3V@(D5v zS)>hfL0XVCkoA$i$nMAy$T`RjNQ^v>I6I*q>5rU@bRgFtHzM~U&mylPi|%a9s>l|| ze#nu?amcyIO~~!Yy~yjx-n(GikPsP+j6g;rPa*S=?)`B8Lk>ZXK(0paL&hOh{BBR?an?uGLi*#kKlISaV}xf!_w zxf>aayo`K`tg$z)ab)>@@Opvx$N@+@ax!urayfDX@)j}!`2?ATEVeK1_sAZ|e#l|S zQONPgG~^p(-~BL8WE}D;@-Z?KnT7m~EVn=AfNX;FL-s@lAjcq2AhVFd0hk}MIOK z6|yd}1F|zR0C@vRkUx-x55~Na0mw1PNysh8UC5Kj7swyTvWMU`0a*vx9XSpegj|T+ zfZU5bj=X}rg?xqVH~@1*ZbRNjK1Jpt%N&YhjI4+F$XUn`voQmmr@Z`D1XLkWG=(kn@nC$X&=7WHRy^@*(mA zvh=Yy&yaPIt&r=GCy)uqG~`F5`*GMGNC`O+ITN`UxfSU|9z&i+UO?VP669;-7vyiG z*YViDNDS+YAg>{xB6Ejr@Tub~?sK1|c6IE1ZG#Baa|ck&lpV&cv9=4aiia`&oE> zMpi*KMSP?`axhXt1|c)-pJ(HINA5cZ=Qi>ZviZ5Vzn+KJA!Hw9AaXWxA#y2l1u_yD zjf_X8A@3m{BVQvwBhLAF{X&*QRzo&IwnKJB4nW$GiAaKUy8v@ULSz=Q=7m@3pkQqpyi*dh2E=Q`!!k6GajU0tsfjodLAL5w~IR|+hc?bC&*`)*L zDYE0GxE3$Nb|Xh3HzO}1bCFHUc-BNlA&($mB8Od$eTbZo^cjq8LpqRKk!O&Z$ZW*B z0?Q&NB9|k>kXw<@km8k?6S6CEKJp+^Lq108$d8D*3eVTblF0IihpdilGz7;R*#|iY zIRP1jT#8(Y+>P9aJcUd|UPj(Px{xoCpOHV1?pNa&A?qQ1kv)+BS@IfeBQh50c`aW5 zk*AQKk&)M79}mU-0J#bI6!`}E0a@pIe3pRBKz6?Y*EX`qjW|z`Uc;~suYbtn$Z8|850RsgPGtGJaPA|IAsa?`?nd56Hm%@3 ziX3t`u480}Q8-tSXOVBLJF$MGj`Y0;^FyW~_uq^ChJ>T>%!X`mAI=qI95Ns2cR#Kz z>HZXsH_{t978!@MJ&iGtpAdf>UJH?K&!7+45IGVlBO{SFkUx+u#^anY zj@j6_W|+yDr%m2GW4hylcw=oh{hZbQs}8ZN|3460jc=})SD$eW{!+DB0{{Oz{(KXE zw&bwoWyh?R>wz(QVa%m5<}#*WmNVV(y@@5v3Z}PN$t-1BP%Wam2L5kNvz}SYY>ST_ zcEDWv;{O7(z6s5Sri^(FF`Jm1@rmsyvy!eUGLM*j%tUjDdDa|m zUNj~1k~!MEVvaShnd8ix=5+IpIoo_<&M}{wbIs@GBJ-uW#C(O3e=vj1ujUGqbFMTC zJ44K(&NXH+=UTI(bDdeqx!!E+3^Us~HD^%wq0m=0EOCv$*@E zS<;?oVc0_h0IkBhoDr_)-0HSCx4C_sJKR;B$Spc| zyQ?{)+|`}?-L;&D+_jy$yN)x*UDuiGZs7doZs`2&ZsfSRO`LpgQ>S}w3upP3?VQzf+dFIIc5v3t`ObQ|R%iR%j!wT^o3meTC+EQ2F3#b(-JJH^?#>ChJ)IMC zdpW1(_H_p34sy=S9qgQy8{nLmJJh)-H_*8@cZ4%E7dXRm?auJrklbvz7Q=DgVr#jk9=^B*}I z;GZkpFh9%LDF3aqdHy?RtNa{i+x%Q-ul!%m0eRydn0MTR@;Ue5eBM1IUvLl0FXSGc zU&Jlt7j=)zFXo<<@9mzJU)nu4znptfent0^{3`C?yysq@U(LNWzm_{Pzm7XPznNRj zZ|>IeTe?&8+qy62cW__L`|ex$R(E>7ulqs1&HX69llyUgXZO?mE^d~Y?w|Q{UAGXrxk88AqfmBx6$ZPD6|Qu97p`)bEL`m_U%19?DO~HWRv7B8 zTNv)HU%1KLuyCilap5j^^FriqU8uNz;cj=2!YKEkLZ>^haF2UL;a>O1!f5xH!hPq|&vl!fFLYa^(7oGYg`VB;G;x+=`W}cIv|0Te(eJ-HX6Ljv^%K#M z0r*#I(%MRRJ=`r-pN*V``h70CVPD7WnSS-8L9W>^)wlzsw#XS$+h8%r9Grf2k;P@b zzx_uveTZWYPrv&5<&G((>fFaQC#2dJGsx!B;{;jarsjGFHP?Fyo+z`vTSC#s_}8+} zOh-BAYR8mJ1*}w z_VeZwWWC?^l|8wjeV}{j@#7qGOFHu5W97*7tB8KZzvp;o`qhuI-b$*MuW-!0sdl*1 zF%PC%beOE|wmTj3Xjtp!O`f;&W*QjlVz_v#4(f8z6G5* z+V}tR)fU&hn2u7yet9j`tvT1cooc7$U3?N`=d$9`_?d-Nx=&XvyXK3ucGb0x`8L(A z*Er_KRC+x0m@nwK>CyTSNAS0F+46Oc`7_lEXSybLkexxdRbA5~)$ik6vuLUdZo>DO zQ;o%XmrM2U`@T13x^mjLFOJNrsq}d0KGh>*|HaAdd|uEN>FgJ@ZFcr+rR&iBqWe#` zazT4i_l9n{9);hV$L%-#OOczT>(HaMpkryD9k)ySbpPp=>-PS)`&9R&p4qxjbx-R4 zdwgxj^h;+j_*<2QI*Si*H;(`C@yB|MukX-?Km0g5?8#TM$mfceBNP6`w=$g@G z^?K8*Y|K`!8JMp3vZlVo`{!fR+UNL}Mo&&PvN`ADns@5Qn)idT?J}1~evmouh5N=C z>9Q|1uV1}F|9y|^KGi+0$4&RMj(61uat9f5pWN%_PLs2E-i0#1@lQMEymVHFR^?9p z$^CBQ?xUkDe~{dVW-sHIi_<0gy)Jzpyo#S(PHUfaxaRs)7w+kr+fwzK=$Ot_3!2Le z%;3TFtE*fjvw9+Q&7*1U!TzEJ%};00h1aO3(k1rA>)W%bzI+kCYdF=O(;V|ss=an~ z8=5pvYDeOzW?ywTmajg9`|k8~iIcYxZPFp~wvj%&wvW@k5BHHhbeD(UCzaNE;0m3Y zYQXxg`7V`noNInbwfCoTZp^`N+RE-Podwsp2itp{-D}-b%{@kH{hpO$`Q#n4tewHa zY2V=Kvj4W<8^7^AtqnR>M&7KKe08alMC&!b`dU*PVy|V-2S2Ugnq|{b>^tvle)bNs za$5WPDmnUnewA}g&%YwxA7@K^Ger8PJdK}oOPAG=H{DD2+M9SYn=R2YSv0S=Xpc)| z&aba4dvb~OM6aNhEj!~O>6>}EYt~NJHm#|%R(8#XY0bW#Zl9r>I-vW~r*`|p1~n_ZIj*(b8AQrV}p zVX1VKJMgTRji*OJ=hB5ebZ5H6xzMOor#H95Z_Z#qUpa1iSDDh>N_`@GzxfnopWL#i zr4HQhv!~%-{&dX!={nAb9!ZsN-mmm%bz4P_+aY-B%l3Gmb>w`RwVvpuQ$<70l`~tP z69asTlr5`ggnix5_K`Yf<!3bK>+9fxo;()x+Ne)A`ZQwim>;HlZRm6OzE`Th-gFyxbiGSWz^htz%)h{OlxeG- zME~tmhCY|*^TvXnBNp^N&z^tT-6#Kw+t3|Vxg!m{S!()z(7s}Snr_kXujNX4_I7!% zF}taQo^#FDY2U<2PD6h+^#qiy_vfZ2;T>sq4cdQ=CX@a5XMRXW`TR|}dXByUj-$|I@Hny$X4X){(*3Q~S zX3)1ROB{u{WcP^P_#8UZGPv_++CG*md1~_s@891kt&UfS<&;|mbx>NfGdMDpok6D4wvwZDQQg5$0obFePY)Lq)7mN>C-3aYnnBErq<`(1wFmqK2%2e<{8lz7s@f8HBru{9v?a8x^&y-ee9ayscw8- z`VPbA`q`Xk4j27z_S$XfcpHSSsifKsPuvfrI{hV?mF^+kllE?wU3t1sXYMc0DtZ+3 zmAJ61JhR&QW$U%?7qa!*_Y2v26TCkko6cYWUO6XZv%)K9HPwpvT;PRN)9`7^tEr}b zg(ve=U*NdCpK9XGvN!CjpS|zkyNkEsUYBa82jr;g?Dgn>h<9??woSQMq-Up|bqhL6 zR=`=3ov{nLx1aEW?6n1bRo9_?)q|qTy376k-8rHFpGVA2 z_d#2`Yv!fWPxDkGa7`C*z2avGFO~bLzSAr|CFh2|UzoFp)Hc2azj;4hR^QqD`l?)m z2VN$c*-xbB)ulK$vitKrcrMQL$F(wp51UVYH?APhX267-^J(;a-WF*q<_`frI-5dWtXPxQ4&yV&2o@CZcw?jw%zcXju zr{~^^*OYV}3);K7ugW+#HvPvw)$Oof-TMFd)lEKjjGum0*Q-Znxh3%a_y0HpT?g%# ze?2$;+x;Az?wJ1nn6u7L&ljCRe_R3krc3BLbUPNbtezXkZ71j7U8l)CY~`!vjQ#Qi z(P4NRIk-71`}&Qa*LhdI`eRk3efGX#UxTwd;qj^7xlr!P`qc$V?=XoM6YHCJPpEOlZb;^d0nU(6vQ(ZGB)f_zA{*p?+w{zGC*{6?RB*#*} z`lKt{Yv(dQUH05_r1r|{qNh=F@hpa)!CXspFJAq!qjfBPmZV4eRbAU&&9xniYc<=G z>o?EI>COB2{PSG1bh_-=EARwd`~*d|j-&DO6Pf-#$~7ycOYDLrR!y}h zJ_p$%)qt&J*&MF(*0eV8QoLhM)vJeV_DHqTr}$o0D!=5KLsIqlz%@st8i=zboAafk zWV~T`#mQ!H!lRBkI_*0NKk1Rx7N3saiJ#VL_=%9Lw)8!YIW4Un*vmENr0RQ{?2RF3 z$XWO1-7@m@=Jw)S{N|!`i9^qp@jh?vgZ5_M+RfSlXUXyS0Y3vXI9+z&hf@1=xM)~Y zr#^u1d8K{tG+!IXALW=E(^`I-Y`Ib~rMv4O|qT(WbJW zCuaNa_!+X^-Vfv1EdA>0kKoxNRTZ^NN2B&sTD!ZsMS2u;2D&y~hptzT)`HG8-KV-I z7j(WPQynugoy$Y#$a&D~9yxB?KPmbR+m`Kv>9}7_PM278l6+OSyeB>v$j*rGCy6d= zKA9i)tkiaEDtTY_+F3YvUra~Vvrf-MJ^#Ks65n-8`yO9S&L%yodMroHkgw|A)$#N! z*0t$6bnoi%&~seRXT53{bQJVzT+rFBM@DC_=cL{ve7q*Voo??n&3EPA`;Pe_t?85C zI6O~&p4Q&Mdy?6y+VL*o_f(_t)g0av8uRbtJ-D-6je6g`N+_#0gF59-n$Yz89E&b^K%* zW$G?6zdU|MZiDoz_B&JAcn{z`Q>Gl|oNe!2WAK?w+BfTN*KCu@{%mGzs{YHkW|veC zV>|XprB}e^Tj1WA)(&dw;4P)*Va^AoUk&k&sy)@0k2vPoR0|#Cnv+vaeOs=S-|;<> zGt%0wYvMaesor@I?={k6Wbew^>`$BRm`l>HR`L9Dc`Ci1u5*&~>6NEvte)*_HP`V| z^IkWhxwh|@lYMo?GNP}>iuA}_^03p`2l_dKuEQRW>$92eD9bMB8Dv3QuG{;6XDhdD zesZ@9&W&tO>e+PEQ!>AA){!&uoP!;6YdZU3IG?k7_6O^@=B~6h2m3F(o9SMwU4WlX zOuxGH8csuf7IPbV1!qb2)dQR7xL%-iU#+Q0i@?-t8q24hp{UfUY4 z_7l?DY&;)SQ`u#+PlP|jlR~B~@!4xOt6lNz^FrFEXX2W88qSW9txZe6I_L}8L%-u# zW>?-N&8LFbo3FKBT`SA#e$nHmcdohkE>w0@b)VMPmgC#fJmzaOkMu=N{eh?d?A)lG zjqetu^ZWLAr=hLRk=i5p>U-%|S3@n+4D@9>XMH(`YRk*E*&~x}`O?_W*uE<6`EH9yrEujBdUFncUt zI#*^eco%#&oYro|r?A;N{$5kYdlTQ=&T4w~=v{QLVRBUUXl=fajQs5g(RlIJihU1a-ZLpIpvHZWjrmT+Vy6kLPb+TL)3(`ByPx$n!->oF;xb-o|ESm0vH6L`% zlBpISho6&4H4S&il~U?<2tUlCuy6`JiU{d85|JKKLl zFuOu~-Y5IC>qfllrsFNToxIYm($oX{OYPskdKt#c&f?p*ZQc_vbMUvw?3sAQCHTxE z)mk{)vpL)Em1kP@bE)-gK7lTQSH$eAFB~UY|7m$TVFk!el0d^nO4Q<7}u^pGnd8)4(dRO@hKXG|YIs?5@^htHk zsWM7sSCO87`YieuK846$qh4-m2s9!cc`DwUW^>V}Qhf%|JL`g;TDEO2t52mJhdU-p zN7gGvUjy`-(N_a~ozc7PCadG8E7MU_b-boLl-5qcyVR#s+3z!DuO!#(EYIiaaoy z(f5A(1f}mK^{e_>kUn!wT3FW6a}m+MKbfCaks0Xux1eWq{ao*kt7T+8>jpNT*7fa&2pXYba$Tj(cGOZUW2cBOk#KZ7dazVUuq8_-=o2gyO7 zrnMun#OK+*Z@#FbeRzxEla z+u`;#R6i~IVU#SP@0jhUzuB=|b8*)!oG!6f^P0&$Ca+-MzT=qX)2}X$XKydnaWxt5 z5{$fhT6^m>yke(%ubXU#9*^r5!z=NB(f7ZXZdt4W1)jm=~s2HUE2ISOr`g~Spi;?(`EJgRq45=wN3G< zT6QMtIjLV=knYC2{Oo*rI27r9W0wP5b6PqBeF|#F9X(s3`+c&+m#c|x*j3(>tb@CJ z)^|N#u`f(VS-klfioTz@`gOUZ+jl_Ov-jS3($AJP&G)*xtiG?%R}H;VbSw2evA!;B zh^Nx*wYwXXy<+c*r=`o%`3;&R>%FDcuTRDloMQd^>c78#$;bWv z>p7CAjpRLd$y=}gb&uq=OY%LEr|ef%lAbsDk&~B`$?vIuOZrLRul%p)h<}vyD9NuS z`BPB)CvAcL*M0xDbMk+Umpq>*f6|G;CEU2+`4;~*?0@@s|21Cnvn9WRRxFiY2Hv4I z%mMEL^Dm0-CI6oJ?M_;*O$hF5_64_hlb3%VLz12?dHX7P zJ^hgH;@|i4KX4^&wInb3lee3am;A}wT*+HY$=g23TRh2IMpuAzmoa8eq9?nl1w)=;q z=k1UusR{&#`S%Na|BYwzZ<2I#HKlyukyFMeJ<5L#%g1=%&uL2@?>wJ=mH%*@{|1#_`>&x%Uq2#@n$!E$gWBpM- z@IJTSnzU_k{y*NebSINO^AqeZ{=U!cIPYZB|M3|$=Dw}|$FTqRoir-NRE=x#7RQ=m z;))MOB~nO+L}8WyT>rtSOf~2kG7WPilq*aamFXrULuO!>1KiK3%ru2CWER%AT12R# za=nO9hR^0wvQ}jd)|Avdo~oq5Mn#5%GhBx?C9Ps%cr@m^!68~sdKan%VYoeA@67p_L3a{UQ6ot4+3at#VE9n15pN_NaII=E7Ws^r8PSEWcr=f-@u z{6DkrGF*z?!m|=iyvd%$@jQs zqV!IsIK2yNTr;C2y$3V*a9s^m*@wB#hfpI}XSsx+gYVNH3iG^bx+P5G0neXy3toZZA#KUA*k(VBj(w4vW%O?j)d zqu*hE4X1R#ACyk`Z>00RNy4!uix8 zxP&^4@k?S&DW#5}OJkPd>L|J_)|7JU7`i-W%be?rs7ghwDV5X-bY;wPQJq9r#hOx$ z>yD^Obsg3!ysyd6VgZcfOI)|=@HKo29PdC7ExEhM8^uV0y#1&Cg zr5EP+UFshCSF9<0xH^ie^u>I)R1@i0m^pUnwufv>$q+X>r zU`^SmUZXc*=05cXy#+J(ski8Dn7L2AL+`-Med;}W7iR8LAJBU+bD#Q%-iMj{)F*Tz zX6{p;(FZYepZbD6jG6n?m-JE0+^4>xk7MRO^$mRzGxw?Q=u?=vPyIlj#>{={NBS&g z?o&V0=P|#(SHI8~v8G&7ztNX5zwG47Fq}n>Im*Y?VN}J5nW8iuZo>6p*dxgmV))&@ z7Rs&Hu%=ws!sr`VQ*LS&`WDud+gvk7RqkL-xy!XCa1kpWi{nQ >kQ+&T|){6%D^7hp|UD7cmk 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%0Dea)W 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%0DHpvrAPqmbY&>-ZZnG02*6?2 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